File: test_node_list.py

package info (click to toggle)
senlin-tempest-plugin 1.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 888 kB
  • sloc: python: 7,478; sh: 34; makefile: 21
file content (63 lines) | stat: -rw-r--r-- 2,548 bytes parent folder | download | duplicates (3)
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
# 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.lib import decorators

from senlin_tempest_plugin.common import utils
from senlin_tempest_plugin.tests.api import base


class TestNodeList(base.BaseSenlinAPITest):

    def setUp(self):
        super(TestNodeList, self).setUp()
        profile_id = utils.create_a_profile(self)
        self.addCleanup(utils.delete_a_profile, self, profile_id)

        self.node_id = utils.create_a_node(self, profile_id)
        self.addCleanup(utils.delete_a_node, self, self.node_id)

    @utils.api_microversion('1.0')
    @decorators.idempotent_id('cd086dcb-7509-4125-adfc-6beb63b10d0a')
    def test_node_list(self):
        expected_keys = ['cluster_id', 'created_at', 'data', 'domain',
                         'id', 'index', 'init_at', 'metadata', 'name',
                         'physical_id', 'profile_id', 'profile_name',
                         'project', 'role', 'status', 'status_reason',
                         'updated_at', 'user']
        self._list_node(expected_keys)

    @decorators.idempotent_id('f7cc5f8a-8aed-468f-ad03-883071371c5d')
    @utils.api_microversion('1.13')
    def test_node_list_v1_13(self):
        expected_keys = ['cluster_id', 'created_at', 'data', 'domain',
                         'id', 'index', 'init_at', 'metadata', 'name',
                         'physical_id', 'profile_id', 'profile_name',
                         'project', 'role', 'status', 'status_reason',
                         'updated_at', 'user']
        self._list_node(expected_keys)

    def _list_node(self, expected_keys):
        res = self.client.list_objs('nodes')

        # Verify resp of node list API
        self.assertEqual(200, res['status'])
        self.assertIsNone(res['location'])
        self.assertIsNotNone(res['body'])
        nodes = res['body']
        node_ids = []
        for node in nodes:
            for key in expected_keys:
                self.assertIn(key, node)
            node_ids.append(node['id'])

        self.assertIn(self.node_id, node_ids)