This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalidate.py
executable file
·155 lines (119 loc) · 5.85 KB
/
validate.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
#! /usr/bin/env python3
import os
import sys
import unittest
import click
try:
from enjoliver import configs, gunicorn_conf
from enjoliver.model import Base
except ModuleNotFoundError:
click.echo('please install enjoliver first: cd enjoliver-api && pip install -e .')
sys.exit(255)
PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
APP_PATH = os.path.join(PROJECT_PATH, "app")
sys.path.append(APP_PATH)
class TestValidateMatchboxAssets(unittest.TestCase):
"""
These tests are NOT unit tests. Instead, they are used to validate the previous 'make' steps
"""
cwd = os.path.dirname(os.path.abspath(__file__))
matchbox = os.getenv("CHECK_MATCHBOX_PATH", "%s/matchbox" % cwd)
assets = "%s/assets" % matchbox
def test_discoveryC(self):
rule = "%s/%s/serve" % (self.assets, self.test_discoveryC.__name__.replace("test_", ""))
list_dir = os.listdir(rule)
self.assertIn("discoveryC", list_dir)
def test_enjoliver_agent(self):
rule = "%s/%s/serve" % (self.assets, self.test_enjoliver_agent.__name__.replace("test_", "").replace("_", "-"))
list_dir = os.listdir(rule)
self.assertIn("enjoliver-agent", list_dir)
def test_coreos(self):
rule = "%s/%s/serve" % (self.assets, self.test_coreos.__name__.replace("test_", ""))
list_dir = os.listdir(rule)
self.assertIn("coreos_production_image.bin.bz2", list_dir)
self.assertIn("coreos_production_image.bin.bz2.sig", list_dir)
self.assertIn("coreos_production_image_verity.txt", list_dir)
self.assertIn("coreos_production_pxe.vmlinuz", list_dir)
self.assertIn("coreos_production_pxe.vmlinuz.sig", list_dir)
self.assertIn("coreos_production_pxe_image.cpio.gz", list_dir)
self.assertIn("coreos_production_pxe_image.cpio.gz.sig", list_dir)
self.assertIn("version.txt", list_dir)
@unittest.skipIf(os.getenv("SKIP_ACSERVER"), "skip acserver storage")
class TestValidateAcserverStorage(unittest.TestCase):
cwd = os.path.dirname(os.path.abspath(__file__))
acserver_d = os.path.join(cwd, "runtime/acserver.d/enjoliver.local")
ec = configs.EnjoliverConfig(importer=__file__)
@staticmethod
def format_image_url(image_url: str):
image_url = image_url.replace("enjoliver.local/", "")
image_url = image_url.replace(":", "-")
return "%s-linux-amd64.aci" % image_url
def test_cni(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "cni"))
self.assertEqual(1, len(list_dir))
def test_etcd(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "etcd"))
self.assertEqual(1, len(list_dir))
def test_fleet(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "fleet"))
self.assertEqual(1, len(list_dir))
def test_hyperkube(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "hyperkube"))
self.assertIn(self.format_image_url(self.ec.hyperkube_image_url), list_dir)
self.assertEqual(1, len(list_dir))
def test_lldp(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "lldp"))
self.assertIn(self.format_image_url(self.ec.lldp_image_url), list_dir)
self.assertEqual(1, len(list_dir))
def test_iproute2(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "iproute2"))
self.assertEqual(1, len(list_dir))
def test_rkt(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "rkt"))
self.assertEqual(1, len(list_dir))
def test_vault(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "vault"))
self.assertEqual(1, len(list_dir))
def test_ceph_tools(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "ceph-tools"))
self.assertIn(self.format_image_url(self.ec.cephtools_image_url), list_dir)
self.assertEqual(1, len(list_dir))
def test_dnsmasq(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "dnsmasq"))
self.assertEqual(1, len(list_dir))
def test_tiller(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "tiller"))
self.assertEqual(1, len(list_dir))
def test_heapster(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "heapster"))
self.assertEqual(1, len(list_dir))
def test_node_exporter(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "node-exporter"))
self.assertEqual(1, len(list_dir))
def test_kube_state_metrics(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "kube-state-metrics"))
self.assertEqual(1, len(list_dir))
def test_prometheus(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "prometheus"))
self.assertEqual(1, len(list_dir))
def test_haproxy(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "haproxy"))
self.assertEqual(1, len(list_dir))
def test_socat(self):
list_dir = os.listdir(os.path.join(self.acserver_d, "socat"))
self.assertEqual(1, len(list_dir))
class TestValidateRuntime(unittest.TestCase):
cwd = os.path.dirname(os.path.abspath(__file__))
runtime_d = os.path.join(cwd, "runtime")
def test_rkt(self):
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "rkt", "rkt")))
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "stage1.d", "coreos.json")))
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "paths.d", "paths.json")))
def test_helm(self):
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "helm", "helm")))
def test_acserver(self):
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "acserver", "acserver")))
def test_matchbox(self):
self.assertTrue(os.path.isfile(os.path.join(self.runtime_d, "matchbox", "matchbox")))
if __name__ == '__main__':
unittest.main()