forked from bitcoin-dev-project/warnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnamespace_admin_test.py
executable file
·196 lines (162 loc) · 7.29 KB
/
namespace_admin_test.py
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
#!/usr/bin/env python3
import os
from pathlib import Path
from typing import Callable, Optional
from scenarios_test import ScenariosTest
from test_base import TestBase
from warnet.constants import KUBECONFIG, WARGAMES_NAMESPACE_PREFIX
from warnet.k8s import (
K8sError,
get_kubeconfig_value,
get_static_client,
open_kubeconfig,
write_kubeconfig,
)
from warnet.process import run_command
class NamespaceAdminTest(ScenariosTest, TestBase):
def __init__(self):
super().__init__()
self.namespace_dir = (
Path(os.path.dirname(__file__))
/ "data"
/ "admin"
/ "namespaces"
/ "two_namespaces_two_users"
)
self.initial_context = None
self.current_context = None
self.bob_user = "bob-warnettest"
self.bob_auth_file = "bob-warnettest-wargames-red-team-warnettest-kubeconfig"
self.bob_context = "bob-warnettest-wargames-red-team-warnettest"
self.blue_namespace = "wargames-blue-team-warnettest"
self.red_namespace = "wargames-red-team-warnettest"
self.blue_users = ["carol-warnettest", "default", "mallory-warnettest"]
self.red_users = ["alice-warnettest", self.bob_user, "default"]
def run_test(self):
try:
os.chdir(self.tmpdir)
self.log.info(f"Running test in: {self.tmpdir}")
self.establish_initial_context()
self.setup_namespaces()
self.setup_service_accounts()
self.setup_network()
self.authenticate_and_become_bob()
self.bob_runs_scenario_tests()
finally:
self.return_to_initial_context()
try:
self.cleanup_kubeconfig()
except K8sError as e:
self.log.info(f"KUBECONFIG cleanup error: {e}")
self.cleanup()
def establish_initial_context(self):
self.initial_context = get_kubeconfig_value("{.current-context}")
self.log.info(f"Initial context: {self.initial_context}")
self.current_context = self.initial_context
self.log.info(f"Current context: {self.current_context}")
def setup_namespaces(self):
self.log.info("Setting up the namespaces")
self.log.info(self.warnet(f"deploy {self.namespace_dir}"))
self.wait_for_predicate(self.two_namespaces_are_validated)
self.log.info("Namespace setup complete")
def setup_service_accounts(self):
self.log.info("Creating service accounts...")
self.log.info(self.warnet("admin create-kubeconfigs"))
self.wait_for_predicate(self.service_accounts_are_validated)
self.log.info("Service accounts have been set up and validated")
def setup_network(self):
if self.current_context == self.bob_context:
self.log.info(f"Allowing {self.current_context} to update the network...")
assert self.this_is_the_current_context(self.bob_context)
self.warnet(f"deploy {self.network_dir}")
else:
self.log.info("Deploy networks to team namespaces")
assert self.this_is_the_current_context(self.initial_context)
self.log.info(self.warnet(f"deploy {self.network_dir} --to-all-users"))
self.wait_for_all_tanks_status()
self.log.info("Waiting for all edges")
self.wait_for_all_edges()
def authenticate_and_become_bob(self):
self.log.info("Authenticating and becoming bob...")
self.log.info(f"Current context: {self.current_context}")
assert self.initial_context == self.current_context
assert get_kubeconfig_value("{.current-context}") == self.initial_context
self.warnet(f"auth kubeconfigs/{self.bob_auth_file}")
self.current_context = self.bob_context
assert get_kubeconfig_value("{.current-context}") == self.current_context
self.log.info(f"Current context: {self.current_context}")
def service_accounts_are_validated(self) -> bool:
self.log.info("Checking service accounts")
sclient = get_static_client()
namespaces = sclient.list_namespace().items
filtered_namespaces = [
ns.metadata.name
for ns in namespaces
if ns.metadata.name.startswith(WARGAMES_NAMESPACE_PREFIX)
]
assert len(filtered_namespaces) != 0
maybe_service_accounts = {}
for namespace in filtered_namespaces:
service_accounts = sclient.list_namespaced_service_account(namespace=namespace).items
for sa in service_accounts:
maybe_service_accounts.setdefault(namespace, []).append(sa.metadata.name)
expected = {
self.blue_namespace: self.blue_users,
self.red_namespace: self.red_users,
}
return maybe_service_accounts == expected
def get_namespaces(self) -> Optional[list[str]]:
self.log.info("Querying the namespaces...")
resp = self.warnet("admin namespaces list")
if resp == "No warnet namespaces found.":
return None
namespaces = []
for line in resp.splitlines():
if line.startswith("- "):
namespaces.append(line.lstrip("- "))
self.log.info(f"Namespaces: {namespaces}")
return namespaces
def two_namespaces_are_validated(self) -> bool:
maybe_namespaces = self.get_namespaces()
if maybe_namespaces is None:
return False
if self.blue_namespace not in maybe_namespaces:
return False
return self.red_namespace in maybe_namespaces
def return_to_initial_context(self):
cmd = f"kubectl config use-context {self.initial_context}"
self.log.info(run_command(cmd))
self.wait_for_predicate(self.this_is_the_current_context(self.initial_context))
def this_is_the_current_context(self, context: str) -> Callable[[], bool]:
cmd = "kubectl config current-context"
current_context = run_command(cmd).strip()
self.log.info(f"Current context: {current_context} {context == current_context}")
return lambda: current_context == context
def cleanup_kubeconfig(self):
try:
kubeconfig_data = open_kubeconfig(KUBECONFIG)
except K8sError as e:
raise K8sError(f"Could not open KUBECONFIG: {KUBECONFIG}") from e
kubeconfig_data = remove_user(kubeconfig_data, self.bob_user)
kubeconfig_data = remove_context(kubeconfig_data, self.bob_context)
try:
write_kubeconfig(kubeconfig_data, KUBECONFIG)
except Exception as e:
raise K8sError(f"Could not write to KUBECONFIG: {KUBECONFIG}") from e
def bob_runs_scenario_tests(self):
assert self.this_is_the_current_context(self.bob_context)
super().run_test()
assert self.this_is_the_current_context(self.bob_context)
def remove_user(kubeconfig_data: dict, username: str) -> dict:
kubeconfig_data["users"] = [
user for user in kubeconfig_data["users"] if user["name"] != username
]
return kubeconfig_data
def remove_context(kubeconfig_data: dict, context_name: str) -> dict:
kubeconfig_data["contexts"] = [
context for context in kubeconfig_data["contexts"] if context["name"] != context_name
]
return kubeconfig_data
if __name__ == "__main__":
test = NamespaceAdminTest()
test.run_test()