~ubuntu-branches/ubuntu/saucy/nova/saucy-proposed

« back to all changes in this revision

Viewing changes to nova/tests/api/openstack/compute/test_server_actions.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandelman
  • Date: 2013-02-22 09:27:29 UTC
  • mfrom: (1.1.68)
  • Revision ID: package-import@ubuntu.com-20130222092729-nn3gt8rf97uvts77
Tags: 2013.1.g3-0ubuntu1
[ Chuck Short ]
* New usptream release. 
* debian/patches/debian/patches/fix-ubuntu-tests.patch: Refreshed.
* debian/nova-baremetal.logrotate: Fix logfile path.
* debian/control, debian/nova-spiceproxy.{install, logrotate, upstart}:
  Add spice html5 proxy support.
* debian/nova-novncproxy.upstart: Start on runlevel [2345]
* debian/rules: Call testr directly since run_tests.sh -N gives weird return
  value when tests pass.
* debian/pyddist-overrides: Add websockify.
* debian/nova-common.postinst: Removed config file conversion, since
  the option is no longer available. (LP: #1110567)
* debian/control: Add python-pyasn1 as a dependency.
* debian/control: Add python-oslo-config as a dependency.
* debian/control: Suggest sysfsutils, sg3-utils, multipath-tools for fibre
  channel support.

[ Adam Gandelman ]
* debian/control: Fix typo (websocikfy -> websockify).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import uuid
18
18
 
19
19
import mox
 
20
from oslo.config import cfg
20
21
import webob
21
22
 
22
23
from nova.api.openstack.compute import servers
26
27
from nova import db
27
28
from nova import exception
28
29
from nova.image import glance
29
 
from nova.openstack.common import cfg
30
30
from nova.openstack.common import importutils
31
31
from nova import test
32
32
from nova.tests.api.openstack import fakes
33
33
from nova.tests.image import fake
34
34
from nova.tests import matchers
35
35
 
36
 
 
37
36
CONF = cfg.CONF
38
37
CONF.import_opt('password_length', 'nova.utils')
39
38
FAKE_UUID = fakes.FAKE_UUID
796
795
                                       delete_on_termination=False)
797
796
 
798
797
                def __getattr__(self, name):
799
 
                    """Properly delegate dotted lookups"""
 
798
                    """Properly delegate dotted lookups."""
800
799
                    if name in self.__dict__['values']:
801
800
                        return self.values.get(name)
802
801
                    try: