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

« back to all changes in this revision

Viewing changes to nova/tests/test_netapp.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-24 13:12:53 UTC
  • mfrom: (1.1.55)
  • Revision ID: package-import@ubuntu.com-20120524131253-ommql08fg1en06ut
Tags: 2012.2~f1-0ubuntu1
* New upstream release.
* Prepare for quantal:
  - Dropped debian/patches/upstream/0006-Use-project_id-in-ec2.cloud._format_image.patch
  - Dropped debian/patches/upstream/0005-Populate-image-properties-with-project_id-again.patch
  - Dropped debian/patches/upstream/0004-Fixed-bug-962840-added-a-test-case.patch
  - Dropped debian/patches/upstream/0003-Allow-unprivileged-RADOS-users-to-access-rbd-volumes.patch
  - Dropped debian/patches/upstream/0002-Stop-libvirt-test-from-deleting-instances-dir.patch
  - Dropped debian/patches/upstream/0001-fix-bug-where-nova-ignores-glance-host-in-imageref.patch 
  - Dropped debian/patches/0001-fix-useexisting-deprecation-warnings.patch
* debian/control: Add python-keystone as a dependency. (LP: #907197)
* debian/patches/kombu_tests_timeout.patch: Refreshed.
* debian/nova.conf, debian/nova-common.postinst: Convert to new ini
  file configuration
* debian/patches/nova-manage_flagfile_location.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
from nova import test
30
30
from nova.volume import netapp
31
31
 
32
 
LOG = logging.getLogger("nova.volume.driver")
 
32
LOG = logging.getLogger(__name__)
33
33
 
34
34
 
35
35
WSDL_HEADER = """<?xml version="1.0" encoding="UTF-8" standalone="no"?>
617
617
            out.write('</operation>')
618
618
        out.write('</binding>')
619
619
        out.write(WSDL_TRAILER)
620
 
        return
621
620
 
622
621
    def do_POST(s):
623
622
        """Respond to a POST request."""
825
824
        s.wfile.write(RESPONSE_PREFIX)
826
825
        s.wfile.write(body)
827
826
        s.wfile.write(RESPONSE_SUFFIX)
828
 
        return
829
827
 
830
828
 
831
829
class FakeHttplibSocket(object):