norad_cli 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/norad_cli/templates/tool/manifest.yml.erb +18 -1
- data/lib/norad_cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bee3ee9bdac3c8085081dff219d3140a9997863c
|
|
4
|
+
data.tar.gz: 5940350f98bd7fcf5a4c3ca90a43faea66a8569f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf126637083ca0da75e0d4f820e215d5fb9c1995cc200a69871af92ded5afc08f6499d7cd0ee1272362d78c4c6d57c3c833b0f0885ab7ccb6b4551540a2d0cb3
|
|
7
|
+
data.tar.gz: 3f6192b73394053b2eed6d5d1700a8ad20580c2a86dd4c7cdace6cc4ee1fcb59c4aa43603f5658be24bbbcd5667fc26d9fc3f3af4db920adc301704811984ecd
|
|
@@ -8,7 +8,13 @@ default_config:
|
|
|
8
8
|
test_types:
|
|
9
9
|
- <%= options[:test_type] %>
|
|
10
10
|
category: whitebox
|
|
11
|
+
# Does the test require additional configuration beyond the Norad service in the API?
|
|
11
12
|
configurable: true
|
|
13
|
+
# Specify whether the test will modify any aspect of the device under test
|
|
14
|
+
modifies_target_data: true
|
|
15
|
+
modifies_target_config: true
|
|
16
|
+
modifies_service_data: true
|
|
17
|
+
modifies_service_config: true
|
|
12
18
|
<% elsif options[:configurable] -%>
|
|
13
19
|
prog_args: '%{target} %{fixme_custom_option}'
|
|
14
20
|
default_config:
|
|
@@ -16,12 +22,23 @@ default_config:
|
|
|
16
22
|
test_types:
|
|
17
23
|
- <%= options[:test_type] %>
|
|
18
24
|
category: blackbox
|
|
25
|
+
# Does the test require additional configuration beyond the Norad service in the API?
|
|
19
26
|
configurable: true
|
|
27
|
+
# Specify whether the test will modify any aspect of the device under test
|
|
28
|
+
modifies_target_data: true
|
|
29
|
+
modifies_target_config: true
|
|
30
|
+
modifies_service_data: true
|
|
31
|
+
modifies_service_config: true
|
|
20
32
|
<% else -%>
|
|
21
33
|
prog_args: '%{target}'
|
|
22
34
|
test_types:
|
|
23
35
|
- <%= options[:test_type] %>
|
|
24
36
|
category: blackbox
|
|
37
|
+
# Does the test require additional configuration beyond the Norad service in the API?
|
|
25
38
|
configurable: false
|
|
39
|
+
# Specify whether the test will modify any aspect of the device under test
|
|
40
|
+
modifies_target_data: true
|
|
41
|
+
modifies_target_config: true
|
|
42
|
+
modifies_service_data: true
|
|
43
|
+
modifies_service_config: true
|
|
26
44
|
<% end -%>
|
|
27
|
-
|
data/lib/norad_cli/version.rb
CHANGED