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

« back to all changes in this revision

Viewing changes to nova/tests/api/openstack/compute/contrib/test_createserverext.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, James Page, Chuck Short
  • Date: 2013-07-19 09:15:03 UTC
  • mfrom: (1.1.73)
  • Revision ID: package-import@ubuntu.com-20130719091503-3khzpejd61moi5pf
Tags: 1:2013.2~b2-0ubuntu1
[ Adam Gandelman ]
* d/patches/requirements_drop_requests_vers_cap.patch: Remove
  upper version limit  on requests dependency, which was capped upstream
  to fix centos-related gating issues.
* debian/control:
  - Set version requirement python-kombu (>= 2.5.12).
  - Set version requirement python-pyparsing (>= 1.5.6).
  - Add websockify to nova-spiceproxy Depends.
  - Add spice-html5 to nova-spiceproxy Depends (LP: #1197119)
* Add nova-xvpvncproxy upstart (LP: #1197163)

[ James Page ]
* d/control: Update VCS fields for new branch locations. 

[ Chuck Short ]
* New upstream release.
* debian/patches/fix-requirements.patch: Combined several 
  patches into one.
* debian/control: Replace python-quantumclient with python-neutronclient.
* debian/patches/fix-sqlalchemy-0.7.9-usage.patch: Temporary patch to address a FTBFS
  with sqlalchemy 0.7.9.
* debian/patches/avoid-failing-test.patch: Skip failing test on buildds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
363
363
 
364
364
    def test_get_server_by_id_verify_security_groups_json(self):
365
365
        self.stubs.Set(db, 'instance_get', fakes.fake_instance_get())
 
366
        self.stubs.Set(db, 'instance_get_by_uuid', fakes.fake_instance_get())
366
367
        req = webob.Request.blank('/v2/fake/os-create-server-ext/1')
367
368
        req.headers['Content-Type'] = 'application/json'
368
369
        response = req.get_response(fakes.wsgi_app(
375
376
 
376
377
    def test_get_server_by_id_verify_security_groups_xml(self):
377
378
        self.stubs.Set(db, 'instance_get', fakes.fake_instance_get())
 
379
        self.stubs.Set(db, 'instance_get_by_uuid', fakes.fake_instance_get())
378
380
        req = webob.Request.blank('/v2/fake/os-create-server-ext/1')
379
381
        req.headers['Accept'] = 'application/xml'
380
382
        response = req.get_response(fakes.wsgi_app(