forked from Azure/iotedgedev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_iotedgedev.py
494 lines (356 loc) · 20.2 KB
/
test_iotedgedev.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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
import json
import os
import platform
import pytest
import shutil
import time
from iotedgedev.compat import PY35
from iotedgedev.connectionstring import (DeviceConnectionString,
IoTHubConnectionString)
from iotedgedev.envvars import EnvVars
from iotedgedev.output import Output
from .utility import (assert_json_file_equal,
get_platform_type,
get_file_content,
get_all_docker_images,
get_all_docker_containers,
remove_docker_container,
remove_docker_image,
get_docker_os_type,
runner_invoke,
update_file_content)
pytestmark = pytest.mark.e2e
output = Output()
envvars = EnvVars(output)
root_dir = os.getcwd()
tests_dir = os.path.join(root_dir, "tests")
env_file_name = envvars.get_dotenv_file()
env_file_path = envvars.get_dotenv_path(env_file_name)
launch_json_file = os.path.join(tests_dir, "assets", "launch.json")
launch_json_file_without_nodejs = os.path.join(tests_dir, "assets", "launch_without_nodejs.json")
test_solution = "test_solution"
test_solution_dir = os.path.join(tests_dir, test_solution)
test_solution_shared_lib = "test_solution_shared_lib"
test_solution_shared_lib_dir = os.path.join(tests_dir, "assets", test_solution_shared_lib)
templates = ["c", "csharp", "java", "nodejs", "python", "csharpfunction"]
def create_solution(template, custom_module_name=None):
if custom_module_name is None:
module_name = template + "module"
else:
module_name = custom_module_name
result = runner_invoke(['new', test_solution, '-m', module_name, '-t', template])
return result
def add_module(template):
module_name = template + "module"
result = runner_invoke(["solution", "add", module_name, '--template', template])
return result
def clean_folder(folder_path):
os.chdir(tests_dir)
time.sleep(5)
shutil.rmtree(folder_path, ignore_errors=True)
@pytest.fixture
def prepare_solution_with_env():
os.chdir(tests_dir)
template = "csharp"
module_name = "filtermodule"
result = create_solution(template, module_name)
if 'AZURE IOT EDGE SOLUTION CREATED' not in result.output:
raise Exception(result.stdout)
shutil.copyfile(env_file_path, os.path.join(test_solution_dir, env_file_name))
os.chdir(test_solution_dir)
yield prepare_solution_with_env
clean_folder(test_solution_dir)
return
def assert_solution_folder_structure(template):
module_name = template + "module"
expected_files = [".env", "deployment.template.json", "deployment.debug.template.json",
os.path.join(".vscode", "launch.json"),
os.path.join("modules", module_name, "Dockerfile.amd64"),
os.path.join("modules", module_name, "Dockerfile.amd64.debug"),
os.path.join("modules", module_name, "Dockerfile.arm32v7"),
os.path.join("modules", module_name, "module.json")]
for expected_file in expected_files:
assert os.path.exists(os.path.join(test_solution_dir, expected_file))
expected_template_files = [os.environ["DEPLOYMENT_CONFIG_TEMPLATE_FILE"], os.environ["DEPLOYMENT_CONFIG_DEBUG_TEMPLATE_FILE"]]
for expected_template_file in expected_template_files:
with open(os.path.join(test_solution_dir, expected_template_file)) as f:
content = json.load(f)
assert module_name in content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"]
assert module_name in content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["image"]
assert module_name in content["modulesContent"]["$edgeHub"]["properties.desired"]["routes"]["sensorTo" + module_name]
assert module_name in content["modulesContent"]["$edgeHub"]["properties.desired"]["routes"][module_name + "ToIoTHub"]
def assert_module_folder_structure(template):
module_name = template + "module"
expected_template_files = [os.environ["DEPLOYMENT_CONFIG_TEMPLATE_FILE"], os.environ["DEPLOYMENT_CONFIG_DEBUG_TEMPLATE_FILE"]]
for expected_template_file in expected_template_files:
with open(expected_template_file) as f:
content = json.load(f)
assert module_name in content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"]
assert module_name in content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["image"]
assert module_name in content["modulesContent"]["$edgeHub"]["properties.desired"]["routes"][module_name + "ToIoTHub"]
if expected_template_file == os.environ["DEPLOYMENT_CONFIG_DEBUG_TEMPLATE_FILE"]:
if module_name in ["cmodule", "pythonmodule", "nodejsmodule", "javamodule"]:
assert "HostConfig" in content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["createOptions"]
def test_solution_create_in_non_empty_current_path(prepare_solution_with_env):
result = runner_invoke(['solution', 'new', '.'], True)
assert "Directory is not empty" in result.output
def test_solution_create_in_empty_current_path(prepare_solution_with_env):
dirname = "emptydir_current"
os.makedirs(dirname)
os.chdir(os.path.join(test_solution_dir, dirname))
result = runner_invoke(['solution', 'new', '.'])
assert 'AZURE IOT EDGE SOLUTION CREATED' in result.output
def test_solution_create_in_non_empty_dir(prepare_solution_with_env):
os.chdir(tests_dir)
result = runner_invoke(['solution', 'new', test_solution], True)
assert "Directory is not empty" in result.output
def test_solution_create_in_empty_child_dir(prepare_solution_with_env):
dirname = "emptydir"
os.makedirs(dirname)
result = runner_invoke(['solution', 'new', dirname])
assert 'AZURE IOT EDGE SOLUTION CREATED' in result.output
def test_module_add(prepare_solution_with_env):
launch_file = launch_json_file
for template in templates:
# Node.js modules is skipped on non-Windows for below known issue.
# https://github.com/Azure/iotedgedev/issues/312
# https://github.com/Azure/iotedgedev/issues/346
if (template == "nodejs") and (platform.system().lower() != 'windows'):
launch_file = launch_json_file_without_nodejs
else:
result = add_module(template)
module_name = template + "module"
assert 'ADD COMPLETE' in result.output
assert os.path.exists(os.path.join(os.environ["MODULES_PATH"], module_name))
assert_module_folder_structure(template)
assert_json_file_equal(os.path.join(test_solution_dir, ".vscode", "launch.json"), launch_file)
def test_module_add_invalid_name(prepare_solution_with_env):
"""Test the addmodule command with invalid module name"""
result = runner_invoke(["solution", "add", "_csharpmodule", "--template", "csharp"], True)
assert "Module name cannot start or end with the symbol _" in result.output
result = runner_invoke(["solution", "add", "csharpmodule_", "--template", "csharp"], True)
assert "Module name cannot start or end with the symbol _" in result.output
result = runner_invoke(["solution", "add", "csharp-module", "--template", "csharp"], True)
assert "Module name can only contain alphanumeric characters and the symbol _" in result.output
result = runner_invoke(["solution", "add", "filtermodule", "--template", "csharp"], True)
assert "already exists under" in result.output
@pytest.fixture
def test_push_modules():
result = runner_invoke(['push', '-P', get_platform_type()])
assert 'BUILD COMPLETE' in result.output
assert 'PUSH COMPLETE' in result.output
assert 'ERROR' not in result.output
@pytest.fixture
def test_deploy_modules():
if get_docker_os_type() == "windows":
result = runner_invoke(['deploy', '-f', os.path.join('config', 'deployment.' + get_platform_type() + '.json')])
else:
result = runner_invoke(['deploy'])
assert 'DEPLOYMENT COMPLETE' in result.output
assert 'ERROR' not in result.output
@pytest.fixture
def test_monitor(capfd):
runner_invoke(['monitor', '--timeout', '5'])
out, err = capfd.readouterr()
if not PY35:
assert 'Monitoring events from device' in out
else:
assert not err
def test_e2e(prepare_solution_with_env, test_push_modules, test_deploy_modules, test_monitor):
print("Testing e2e with env file")
def test_valid_env_iothub_connectionstring():
"""Test for loading data of env file"""
env_iothub_connectionstring = os.getenv("IOTHUB_CONNECTION_STRING")
connectionstring = IoTHubConnectionString(env_iothub_connectionstring)
assert connectionstring.iothub_host.name
assert connectionstring.iothub_host.hub_name
assert connectionstring.shared_access_key
assert connectionstring.shared_access_key_name
def test_valid_env_device_connectionstring():
"""Test for loading data of env file"""
env_device_connectionstring = os.getenv("DEVICE_CONNECTION_STRING")
connectionstring = DeviceConnectionString(env_device_connectionstring)
assert connectionstring.iothub_host.name
assert connectionstring.iothub_host.hub_name
assert connectionstring.shared_access_key
assert connectionstring.device_id
def test_solution_build_and_push_with_platform():
os.chdir(test_solution_shared_lib_dir)
result = runner_invoke(['build', '-P', get_platform_type()])
assert 'BUILD COMPLETE' in result.output
assert 'sample_module:0.0.1-RC' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
result = runner_invoke(['push', '--no-build', '-P', get_platform_type()])
assert 'PUSH COMPLET' in result.output
assert 'sample_module:0.0.1-RC' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
def test_solution_build_and_push_with_different_cwd():
cwd = os.path.join(test_solution_shared_lib_dir, 'config')
if not os.path.exists(cwd):
os.makedirs(cwd)
os.chdir(cwd)
result = runner_invoke(['build', '-f', '../deployment.template.json', '-P', get_platform_type()])
assert 'BUILD COMPLETE' in result.output
assert 'sample_module:0.0.1-RC' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
result = runner_invoke(['push', '-f', '../deployment.template.json', '--no-build', '-P', get_platform_type()])
assert 'PUSH COMPLET' in result.output
assert 'sample_module:0.0.1-RC' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
@pytest.mark.skipif(platform.system().lower() != 'windows', reason='The path is not valid in non windows platform')
def test_solution_build_and_push_with_escapedpath():
os.chdir(test_solution_shared_lib_dir)
result = runner_invoke(['build', '-f', 'deployment.escapedpath.template.json', '-P', get_platform_type()])
assert 'BUILD COMPLETE' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
result = runner_invoke(['push', '--no-build', '-P', get_platform_type()])
assert 'PUSH COMPLET' in result.output
assert 'sample_module_2:0.0.1-RC' in result.output
assert 'ERROR' not in result.output
def test_solution_build_with_version_and_build_options():
os.chdir(test_solution_shared_lib_dir)
module_json_file_path = os.path.join(test_solution_shared_lib_dir, "modules", "sample_module", "module.json")
module_2_json_file_path = os.path.join(test_solution_shared_lib_dir, "sample_module_2", "module.json")
try:
envvars.set_envvar("VERSION", "0.0.2")
update_file_content(module_json_file_path, '"version": "0.0.1-RC"', '"version": "${VERSION}"')
update_file_content(module_json_file_path, '"buildOptions": (.*),', '"buildOptions": [ "--add-host=github.com:192.30.255.112", "--build-arg a=b" ],')
update_file_content(module_2_json_file_path, '"version": "0.0.1-RC"', '"version": "${VERSION}"')
update_file_content(module_2_json_file_path, '"buildOptions": (.*),', '"buildOptions": [ "--add-host=github.com:192.30.255.112", "--build-arg a=b" ],')
result = runner_invoke(['build', '-P', get_platform_type()])
assert 'BUILD COMPLETE' in result.output
assert 'sample_module:0.0.2' in result.output
assert 'sample_module_2:0.0.2' in result.output
assert 'ERROR' not in result.output
assert '0.0.2' in get_all_docker_images()
finally:
update_file_content(module_json_file_path, '"version": "(.*)"', '"version": "0.0.1-RC"')
update_file_content(module_json_file_path, '"buildOptions": (.*),', '"buildOptions": [],')
update_file_content(module_2_json_file_path, '"version": "(.*)"', '"version": "0.0.1-RC"')
update_file_content(module_2_json_file_path, '"buildOptions": (.*),', '"buildOptions": [],')
del os.environ["VERSION"]
def test_solution_build_without_schema_template():
try:
os.chdir(test_solution_shared_lib_dir)
os.rename('deployment.template.json', 'deployment.template.backup.json')
template_without_schema_version = os.path.join(tests_dir, "assets", "deployment.template_without_schema_template.json")
shutil.copyfile(template_without_schema_version, 'deployment.template.json')
update_file_content('deployment.template.json', '"image": "(.*)MODULES.sample_module}",', '"image": "${MODULES.sample_module.' + get_platform_type() + '}",')
result = runner_invoke(['build'])
assert 'BUILD COMPLETE' in result.output
assert 'ERROR' not in result.output
config_file_path = os.path.join(test_solution_shared_lib_dir, "config", "deployment.json")
assert os.path.exists(config_file_path)
content = get_file_content(config_file_path)
assert "sample_module:0.0.1-RC-" + get_platform_type() in content
finally:
os.remove('deployment.template.json')
os.rename('deployment.template.backup.json', 'deployment.template.json')
def test_create_new_solution():
os.chdir(tests_dir)
clean_folder(test_solution_dir)
for template in templates:
# Node.js modules is skipped on non-Windows for below known issue.
# https://github.com/Azure/iotedgedev/issues/312
# https://github.com/Azure/iotedgedev/issues/346
if (template == "nodejs") and (platform.system().lower() != 'windows'):
continue
else:
result = create_solution(template)
assert_solution_folder_structure(template)
assert 'AZURE IOT EDGE SOLUTION CREATED' in result.output
clean_folder(test_solution_dir)
def test_solution_build_with_default_platform(prepare_solution_with_env):
result = runner_invoke(['build'])
module_name = "filtermodule"
test_solution_config_dir = os.path.join('config', 'deployment.' + get_platform_type() + '.json')
env_container_registry_server = os.getenv("CONTAINER_REGISTRY_SERVER")
with open(test_solution_config_dir) as f:
content = json.load(f)
assert 'BUILD COMPLETE' in result.output
assert 'ERROR' not in result.output
assert env_container_registry_server + "/" + module_name + ":0.0.1-" + get_platform_type() in content[
"modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["image"]
assert module_name in get_all_docker_images()
@pytest.mark.skipif(get_docker_os_type() == 'windows', reason='Debugger does not support C# in windows container')
def test_solution_build_with_debug_template():
os.chdir(test_solution_shared_lib_dir)
result = runner_invoke(['build', '-f', os.environ["DEPLOYMENT_CONFIG_DEBUG_TEMPLATE_FILE"], '-P', get_platform_type()])
module_name = "sample_module"
module_2_name = "sample_module_2"
test_solution_shared_debug_config = os.path.join('config', 'deployment.debug.' + get_platform_type() + '.json')
env_container_registry_server = os.getenv("CONTAINER_REGISTRY_SERVER")
with open(test_solution_shared_debug_config) as f:
content = json.load(f)
assert 'BUILD COMPLETE' in result.output
assert 'ERROR' not in result.output
assert env_container_registry_server + "/" + module_name + ":0.0.1-RC-" + get_platform_type() + ".debug" in content[
"modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["image"]
assert env_container_registry_server + "/" + module_2_name + ":0.0.1-RC-" + get_platform_type() + ".debug" in content[
"modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_2_name]["settings"]["image"]
all_docker_images = get_all_docker_images()
assert module_name in all_docker_images
assert module_2_name in all_docker_images
def test_solution_push_with_default_platform(prepare_solution_with_env):
result = runner_invoke(['push'])
module_name = "filtermodule"
test_solution_config_dir = os.path.join('config', 'deployment.' + get_platform_type() + '.json')
env_container_registry_server = os.getenv("CONTAINER_REGISTRY_SERVER")
with open(test_solution_config_dir) as f:
content = json.load(f)
assert 'BUILD COMPLETE' in result.output
assert 'PUSH COMPLETE' in result.output
assert 'ERROR' not in result.output
assert env_container_registry_server + "/" + module_name + ":0.0.1-" + get_platform_type() in content[
"modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][module_name]["settings"]["image"]
assert module_name in get_all_docker_images()
def test_generate_deployment_manifest():
try:
os.chdir(test_solution_shared_lib_dir)
shutil.copyfile(env_file_path, os.path.join(test_solution_shared_lib_dir, env_file_name))
new_config_deployment_name = 'deployment.' + get_platform_type() + '.json'
new_config_deployment_path = os.path.join(test_solution_shared_lib_dir, 'config', new_config_deployment_name)
if get_docker_os_type() == "windows":
result = runner_invoke(['genconfig', '-P', get_platform_type()])
else:
result = runner_invoke(['genconfig'])
assert 'ERROR' not in result.output
with open(new_config_deployment_path, "r") as f:
content = json.load(f)
module_image_name = content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][
"sample_module"]["settings"]["image"]
module_2_image_name = content["modulesContent"]["$edgeAgent"]["properties.desired"]["modules"][
"sample_module_2"]["settings"]["image"]
env_container_registry_server = os.getenv("CONTAINER_REGISTRY_SERVER")
assert env_container_registry_server + "/sample_module:0.0.1-RC-" + get_platform_type() == module_image_name
assert env_container_registry_server + "/sample_module_2:0.0.1-RC-" + get_platform_type() == module_2_image_name
finally:
os.remove(os.path.join(test_solution_shared_lib_dir, env_file_name))
@pytest.mark.skipif(get_docker_os_type() == 'windows', reason='windows container does not support local registry image')
def test_push_modules_to_local_registry(prepare_solution_with_env):
env_container_registry_server = os.getenv("CONTAINER_REGISTRY_SERVER")
try:
module_name = "filtermodule"
if module_name in get_all_docker_images():
remove_docker_image(module_name)
local_registry = "localhost:5000"
envvars.set_envvar("CONTAINER_REGISTRY_SERVER", local_registry)
result = runner_invoke(['push', '-P', get_platform_type()])
if result.exit_code == 0:
assert 'BUILD COMPLETE' in result.output
assert 'PUSH COMPLETE' in result.output
assert 'ERROR' not in result.output
assert local_registry + "/" + module_name in get_all_docker_images()
else:
raise Exception(result.stdout)
finally:
envvars.set_envvar("CONTAINER_REGISTRY_SERVER", env_container_registry_server)
if "registry" in get_all_docker_containers():
remove_docker_container("registry")
if "registry" in get_all_docker_images():
remove_docker_image("registry:2")