summaryrefslogtreecommitdiff
path: root/tempest/api/network/test_versions.py
blob: 020cb5cca2c1dde9873b74825ac192702e3fa922 (plain)
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
# Copyright 2016 VMware, Inc.
#
# 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.

from tempest.api.network import base
from tempest.lib import decorators


class NetworksApiDiscovery(base.BaseNetworkTest):
    @decorators.attr(type='smoke')
    @decorators.idempotent_id('cac8a836-c2e0-4304-b556-cd299c7281d1')
    def test_api_version_resources(self):
        """Test that GET / returns expected resources.

        The versions document returned by Neutron returns a few other
        resources other than just available API versions: it also
        states the status of each API version and provides links to
        schema.
        """

        result = self.network_versions_client.list_versions()
        expected_versions = ('v2.0',)
        expected_resources = ('id', 'links', 'status')
        received_list = result.values()

        for item in received_list:
            for version in item:
                for resource in expected_resources:
                    self.assertIn(resource, version)
                self.assertIn(version['id'], expected_versions)

    @decorators.attr(type='smoke')
    @decorators.idempotent_id('e64b7216-3178-4263-967c-d389290988bf')
    def test_show_api_v2_details(self):
        """Test that GET /v2.0/ returns expected resources."""
        current_version = 'v2.0'
        expected_resources = ('subnet', 'network', 'port')
        result = self.network_versions_client.show_version(current_version)
        actual_resources = [r['name'] for r in result['resources']]
        for resource in expected_resources:
            self.assertIn(resource, actual_resources)