File: test_clientlib.py

package info (click to toggle)
python-neutronclient 1%3A6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,856 kB
  • ctags: 3,289
  • sloc: python: 19,731; sh: 274; makefile: 21
file content (121 lines) | stat: -rw-r--r-- 4,226 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

import uuid

from keystoneauth1 import plugin as ksa_plugin
from keystoneauth1 import session
from tempest.lib import base
import testtools

from neutronclient.common import exceptions
from neutronclient.tests.functional import base as func_base
from neutronclient.v2_0 import client as v2_client

# This module tests client library functionalities with
# Keystone client. Neutron client supports two types of
# HTTP clients (HTTPClient and SessionClient),
# so it is better to test both clients.


class LibraryTestBase(base.BaseTestCase):

    def setUp(self):
        super(LibraryTestBase, self).setUp()
        self.client = self._get_client()


class Libv2HTTPClientTestBase(LibraryTestBase):

    def _setup_creds(self):
        creds = func_base.credentials()
        cloud_config = func_base.get_cloud_config()

        # We're getting a session so we can find the v2 url via KSA
        keystone_auth = cloud_config.get_auth()
        (verify, cert) = cloud_config.get_requests_verify_args()

        ks_session = session.Session(
            auth=keystone_auth, verify=verify, cert=cert)

        # for the old HTTPClient, we use keystone v2 API, regardless of
        # whether v3 also exists or is configured
        v2_auth_url = keystone_auth.get_endpoint(
            ks_session, interface=ksa_plugin.AUTH_INTERFACE, version=(2, 0))
        return v2_auth_url, creds


class Libv2HTTPClientTenantTestBase(Libv2HTTPClientTestBase):

    def _get_client(self):
        v2_auth_url, creds = self._setup_creds()
        return v2_client.Client(username=creds['username'],
                                password=creds['password'],
                                tenant_name=creds['project_name'],
                                auth_url=v2_auth_url)


class Libv2HTTPClientProjectTestBase(Libv2HTTPClientTestBase):

    def _get_client(self):
        v2_auth_url, creds = self._setup_creds()
        return v2_client.Client(username=creds['username'],
                                password=creds['password'],
                                project_name=creds['project_name'],
                                auth_url=v2_auth_url)


class Libv2SessionClientTestBase(LibraryTestBase):

    def _get_client(self):
        cloud_config = func_base.get_cloud_config()
        keystone_auth = cloud_config.get_auth()
        (verify, cert) = cloud_config.get_requests_verify_args()

        ks_session = session.Session(
            auth=keystone_auth,
            verify=verify,
            cert=cert)
        return v2_client.Client(session=ks_session)


class LibraryTestCase(object):

    def test_list_network(self):
        nets = self.client.list_networks()
        self.assertIsInstance(nets['networks'], list)

    def test_post_put_delele_network(self):
        name = str(uuid.uuid4())
        net = self.client.create_network({'network': {'name': name}})
        net_id = net['network']['id']
        self.assertEqual(name, net['network']['name'])
        name2 = str(uuid.uuid4())
        net = self.client.update_network(net_id, {'network': {'name': name2}})
        self.assertEqual(name2, net['network']['name'])
        self.client.delete_network(net_id)
        with testtools.ExpectedException(exceptions.NetworkNotFoundClient):
            self.client.show_network(net_id)


class LibraryHTTPClientTenantTest(LibraryTestCase,
                                  Libv2HTTPClientTenantTestBase):
    pass


class LibraryHTTPClientProjectTest(LibraryTestCase,
                                   Libv2HTTPClientProjectTestBase):
    pass


class LibrarySessionClientTest(LibraryTestCase, Libv2SessionClientTestBase):
    pass