File: test_resource_lock.py

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (96 lines) | stat: -rw-r--r-- 3,502 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
# 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 openstack.shared_file_system.v2 import resource_locks as _resource_locks
from openstack.tests.functional.shared_file_system import base


class ResourceLocksTest(base.BaseSharedFileSystemTest):
    def setUp(self):
        super().setUp()

        self.SHARE_NAME = self.getUniqueString()
        share = self.user_cloud.shared_file_system.create_share(
            name=self.SHARE_NAME,
            size=2,
            share_type="dhss_false",
            share_protocol='NFS',
            description=None,
        )
        self.SHARE_ID = share.id
        self.user_cloud.shared_file_system.wait_for_status(
            share,
            status='available',
            failures=['error'],
            interval=5,
            wait=self._wait_for_timeout,
        )
        access_rule = self.user_cloud.share.create_access_rule(
            self.SHARE_ID,
            access_level="rw",
            access_type="ip",
            access_to="0.0.0.0/0",
        )
        self.user_cloud.shared_file_system.wait_for_status(
            access_rule,
            status='active',
            failures=['error'],
            interval=5,
            wait=self._wait_for_timeout,
            status_attr_name='state',
        )
        self.assertIsNotNone(share)
        self.assertIsNotNone(share.id)
        self.ACCESS_ID = access_rule.id
        share_lock = self.create_resource_lock(
            resource_action='delete',
            resource_type='share',
            resource_id=self.SHARE_ID,
            lock_reason='openstacksdk testing',
        )
        access_lock = self.create_resource_lock(
            resource_action='show',
            resource_type='access_rule',
            resource_id=self.ACCESS_ID,
            lock_reason='openstacksdk testing',
        )
        self.SHARE_LOCK_ID = share_lock.id
        self.ACCESS_LOCK_ID = access_lock.id

    def test_get(self):
        share_lock = self.user_cloud.shared_file_system.get_resource_lock(
            self.SHARE_LOCK_ID
        )
        access_lock = self.user_cloud.shared_file_system.get_resource_lock(
            self.ACCESS_LOCK_ID
        )
        assert isinstance(share_lock, _resource_locks.ResourceLock)
        assert isinstance(access_lock, _resource_locks.ResourceLock)
        self.assertEqual(self.SHARE_LOCK_ID, share_lock.id)
        self.assertEqual(self.ACCESS_LOCK_ID, access_lock.id)
        self.assertEqual('show', access_lock.resource_action)

    def test_list(self):
        resource_locks = self.user_cloud.share.resource_locks()
        self.assertGreater(len(list(resource_locks)), 0)
        lock_attrs = (
            'id',
            'lock_reason',
            'resource_type',
            'resource_action',
            'lock_context',
            'created_at',
            'updated_at',
        )
        for lock in resource_locks:
            for attribute in lock_attrs:
                self.assertTrue(hasattr(lock, attribute))