File: test_raft.py

package info (click to toggle)
python-hvac 2.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,800 kB
  • sloc: python: 29,360; makefile: 42; sh: 14
file content (230 lines) | stat: -rw-r--r-- 8,965 bytes parent folder | download | duplicates (2)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
from unittest import TestCase, skipIf

from tests import utils
from tests.utils.hvac_integration_test_case import HvacIntegrationTestCase


class TestRaft(HvacIntegrationTestCase, TestCase):
    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_create_raft_auto_config(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        self.assertEqual(
            first=raft_configs_dict,
            second=self.client.sys.read_raft_auto_snapshot_config(
                raft_configs_dict["name"]
            )["data"],
        )

    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_update_raft_auto_config(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        # Create initial configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        raft_configs_dict["path_prefix"] = "/opt/vault/backups2"

        # Update configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        self.assertEqual(
            first=raft_configs_dict,
            second=self.client.sys.read_raft_auto_snapshot_config(
                raft_configs_dict["name"]
            )["data"],
        )

    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_read_raft_auto_config(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        # Create initial configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        self.assertEqual(
            first=raft_configs_dict,
            second=self.client.sys.read_raft_auto_snapshot_config(
                raft_configs_dict["name"]
            )["data"],
        )

    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_list_raft_auto_configs(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        # Create initial configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        self.assertIn(
            member=raft_configs_dict["name"],
            container=self.client.sys.list_raft_auto_snapshot_configs()["data"]["keys"],
        )

    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_delete_raft_auto_config(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        # Create initial configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        # Path and file prefix can't be shared between configs
        raft_configs_dict["file_prefix"] = "vault-raft-auto-snapshot2"
        raft_configs_dict["path_prefix"] = "/opt/vault/backups2"

        # Create a second config because list endpoint raises a 404 if no configs exist
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name="my-local-auto-snapshot2",
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        self.client.sys.delete_raft_auto_snapshot_config(name=raft_configs_dict["name"])

        self.assertNotIn(
            member=raft_configs_dict,
            container=self.client.sys.list_raft_auto_snapshot_configs()["data"]["keys"],
        )

    @skipIf(
        not utils.is_enterprise() or utils.vault_version_lt("1.8.0"),
        "Raft automated snapshots only supported in Enterprise Vault",
    )
    def test_read_auto_snapshot_status(self):
        raft_configs_dict = {
            "name": "my-local-auto-snapshot",
            "interval": "86400",
            "storage_type": "local",
            "retain": 5,
            "local_max_space": "100000",
            "path_prefix": "/opt/vault/backups",
            "file_prefix": "vault-raft-auto-snapshot",
        }

        # Create initial configuration
        self.client.sys.create_or_update_raft_auto_snapshot_config(
            name=raft_configs_dict["name"],
            interval=raft_configs_dict["interval"],
            storage_type=raft_configs_dict["storage_type"],
            retain=raft_configs_dict["retain"],
            local_max_space=raft_configs_dict["local_max_space"],
            path_prefix=raft_configs_dict["path_prefix"],
            file_prefix=raft_configs_dict["file_prefix"],
        )

        # Confirm that key "data" exists within the response
        self.assertIn(
            member="data",
            container=self.client.sys.read_raft_auto_snapshot_status(
                raft_configs_dict["name"]
            ),
        )