hammer_cli_foreman 0.1.0 → 0.1.1
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.
Potentially problematic release.
This version of hammer_cli_foreman might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +12 -1
- data/doc/configuration.md +13 -0
- data/lib/hammer_cli_foreman.rb +3 -0
- data/lib/hammer_cli_foreman/architecture.rb +9 -9
- data/lib/hammer_cli_foreman/associating_commands.rb +57 -34
- data/lib/hammer_cli_foreman/commands.rb +188 -101
- data/lib/hammer_cli_foreman/common_parameter.rb +7 -10
- data/lib/hammer_cli_foreman/compute_resource.rb +8 -11
- data/lib/hammer_cli_foreman/domain.rb +14 -40
- data/lib/hammer_cli_foreman/environment.rb +10 -15
- data/lib/hammer_cli_foreman/exceptions.rb +4 -0
- data/lib/hammer_cli_foreman/fact.rb +5 -5
- data/lib/hammer_cli_foreman/host.rb +76 -132
- data/lib/hammer_cli_foreman/hostgroup.rb +26 -61
- data/lib/hammer_cli_foreman/id_resolver.rb +163 -0
- data/lib/hammer_cli_foreman/image.rb +14 -50
- data/lib/hammer_cli_foreman/location.rb +35 -17
- data/lib/hammer_cli_foreman/media.rb +9 -16
- data/lib/hammer_cli_foreman/model.rb +6 -8
- data/lib/hammer_cli_foreman/operating_system.rb +129 -63
- data/lib/hammer_cli_foreman/organization.rb +36 -16
- data/lib/hammer_cli_foreman/output/fields.rb +10 -2
- data/lib/hammer_cli_foreman/output/formatters.rb +44 -18
- data/lib/hammer_cli_foreman/parameter.rb +45 -41
- data/lib/hammer_cli_foreman/partition_table.rb +9 -12
- data/lib/hammer_cli_foreman/puppet_class.rb +14 -14
- data/lib/hammer_cli_foreman/references.rb +122 -0
- data/lib/hammer_cli_foreman/report.rb +3 -6
- data/lib/hammer_cli_foreman/searchables_option_builder.rb +99 -0
- data/lib/hammer_cli_foreman/smart_class_parameter.rb +17 -13
- data/lib/hammer_cli_foreman/smart_proxy.rb +18 -28
- data/lib/hammer_cli_foreman/subnet.rb +12 -13
- data/lib/hammer_cli_foreman/template.rb +10 -19
- data/lib/hammer_cli_foreman/user.rb +9 -28
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/hammer-cli-foreman.pot +828 -817
- data/test/unit/apipie_resource_mock.rb +33 -11
- data/test/unit/architecture_test.rb +7 -10
- data/test/unit/commands_test.rb +8 -9
- data/test/unit/common_parameter_test.rb +6 -8
- data/test/unit/compute_resource_test.rb +9 -12
- data/test/unit/data/1.5/foreman_api.json +14130 -0
- data/test/unit/domain_test.rb +19 -22
- data/test/unit/environment_test.rb +9 -11
- data/test/unit/fact_test.rb +5 -6
- data/test/unit/helpers/command.rb +115 -59
- data/test/unit/helpers/fake_searchables.rb +19 -0
- data/test/unit/host_test.rb +44 -33
- data/test/unit/hostgroup_test.rb +19 -26
- data/test/unit/id_resolver_test.rb +225 -0
- data/test/unit/image_test.rb +16 -18
- data/test/unit/location_test.rb +8 -10
- data/test/unit/media_test.rb +11 -13
- data/test/unit/model_test.rb +8 -10
- data/test/unit/operating_system_test.rb +23 -23
- data/test/unit/organization_test.rb +9 -10
- data/test/unit/output/formatters_test.rb +133 -20
- data/test/unit/partition_table_test.rb +12 -9
- data/test/unit/puppet_class_test.rb +3 -7
- data/test/unit/report_test.rb +3 -7
- data/test/unit/searchables_option_builder_test.rb +172 -0
- data/test/unit/smart_class_parameter_test.rb +5 -7
- data/test/unit/smart_proxy_test.rb +11 -12
- data/test/unit/subnet_test.rb +15 -16
- data/test/unit/template_test.rb +15 -12
- data/test/unit/test_helper.rb +1 -1
- data/test/unit/user_test.rb +9 -12
- metadata +536 -509
data/test/unit/template_test.rb
CHANGED
@@ -4,7 +4,7 @@ require File.join(File.dirname(__FILE__), 'apipie_resource_mock')
|
|
4
4
|
|
5
5
|
describe HammerCLIForeman::Template do
|
6
6
|
|
7
|
-
|
7
|
+
include CommandTestHelper
|
8
8
|
|
9
9
|
let(:template_hash) {
|
10
10
|
{
|
@@ -15,7 +15,7 @@ describe HammerCLIForeman::Template do
|
|
15
15
|
}
|
16
16
|
|
17
17
|
before :each do
|
18
|
-
cmd.stubs(:
|
18
|
+
cmd.stubs(:get_identifier).returns(1)
|
19
19
|
File.stubs(:read).returns("")
|
20
20
|
end
|
21
21
|
|
@@ -40,6 +40,7 @@ describe HammerCLIForeman::Template do
|
|
40
40
|
:id => 1, :name => "PXE"
|
41
41
|
}
|
42
42
|
}
|
43
|
+
ResourceMocks.mock_action_call(:templates, :show, template_wo_kind)
|
43
44
|
cmd.run([]).must_equal 0
|
44
45
|
end
|
45
46
|
end
|
@@ -59,11 +60,11 @@ describe HammerCLIForeman::Template do
|
|
59
60
|
'operatingsystems' => [ { 'id' => 1 }, { 'id' => 3 }, { 'id' =>4 } ]
|
60
61
|
}
|
61
62
|
}
|
62
|
-
ResourceMocks.mock_action_call(:templates, :show,
|
63
|
+
ResourceMocks.mock_action_call(:templates, :show, template)
|
63
64
|
end
|
64
65
|
|
65
66
|
it_should_accept "id", ["--id=1"]
|
66
|
-
it_should_fail_with "no arguments"
|
67
|
+
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
67
68
|
end
|
68
69
|
|
69
70
|
context "output" do
|
@@ -75,11 +76,11 @@ describe HammerCLIForeman::Template do
|
|
75
76
|
'operatingsystems' => [ { 'id' => 1 }, { 'id' => 3 }, { 'id' =>4 } ]
|
76
77
|
}
|
77
78
|
}
|
78
|
-
ResourceMocks.mock_action_call(:templates, :show,
|
79
|
+
ResourceMocks.mock_action_call(:templates, :show, template)
|
79
80
|
end
|
80
81
|
|
81
82
|
it_should_print_n_records 1
|
82
|
-
it_should_print_columns ["Id", "Name", "Type", "
|
83
|
+
it_should_print_columns ["Id", "Name", "Type", "Operating systems"]
|
83
84
|
end
|
84
85
|
end
|
85
86
|
|
@@ -103,7 +104,7 @@ describe HammerCLIForeman::Template do
|
|
103
104
|
|
104
105
|
context "parameters" do
|
105
106
|
it_should_accept "id", ["--id=1"]
|
106
|
-
it_should_fail_with "
|
107
|
+
# it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
107
108
|
end
|
108
109
|
|
109
110
|
end
|
@@ -119,9 +120,10 @@ describe HammerCLIForeman::Template do
|
|
119
120
|
|
120
121
|
context "parameters" do
|
121
122
|
it_should_accept "name, file, type, audit comment, os ids", ["--name=tpl", "--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
122
|
-
it_should_fail_with "name missing", ["--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
123
|
-
it_should_fail_with "type missing", ["--name=tpl", "--file=~/tpl.sh", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
124
|
-
it_should_fail_with "file missing", ["--name=tpl", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
123
|
+
# it_should_fail_with "name missing", ["--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
124
|
+
# it_should_fail_with "type missing", ["--name=tpl", "--file=~/tpl.sh", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
125
|
+
# it_should_fail_with "file missing", ["--name=tpl", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
126
|
+
# TODO: temporarily disabled, parameters are checked in the api
|
125
127
|
end
|
126
128
|
|
127
129
|
end
|
@@ -137,7 +139,8 @@ describe HammerCLIForeman::Template do
|
|
137
139
|
|
138
140
|
context "parameters" do
|
139
141
|
it_should_accept "id, name, file, type, audit comment, os ids", ["--id=83", "--name=tpl", "--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
140
|
-
it_should_fail_with "id missing", ["--name=tpl", "--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
142
|
+
# it_should_fail_with "id missing", ["--name=tpl", "--file=~/tpl.sh", "--type=snippet", "--audit-comment=fix", "--operatingsystem-ids=1,2,3"]
|
143
|
+
# TODO: temporarily disabled, parameters are checked in the id resolver
|
141
144
|
end
|
142
145
|
|
143
146
|
end
|
@@ -149,7 +152,7 @@ describe HammerCLIForeman::Template do
|
|
149
152
|
|
150
153
|
context "parameters" do
|
151
154
|
it_should_accept "id", ["--id=1"]
|
152
|
-
it_should_fail_with "
|
155
|
+
# it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
153
156
|
end
|
154
157
|
|
155
158
|
end
|
data/test/unit/test_helper.rb
CHANGED
@@ -19,7 +19,7 @@ require 'hammer_cli'
|
|
19
19
|
require 'hammer_cli_foreman/commands'
|
20
20
|
|
21
21
|
HammerCLIForeman.stubs(:resource_config).returns({
|
22
|
-
:apidoc_cache_dir => 'test/unit/data/' + (ENV['TEST_API_VERSION'] || '1.
|
22
|
+
:apidoc_cache_dir => 'test/unit/data/' + (ENV['TEST_API_VERSION'] || '1.5'),
|
23
23
|
:apidoc_cache_name => 'foreman_api',
|
24
24
|
:dry_run => true})
|
25
25
|
|
data/test/unit/user_test.rb
CHANGED
@@ -4,11 +4,7 @@ require File.join(File.dirname(__FILE__), 'apipie_resource_mock')
|
|
4
4
|
|
5
5
|
describe HammerCLIForeman::User do
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
before :each do
|
10
|
-
cmd.stubs(:name_to_id).returns(1)
|
11
|
-
end
|
7
|
+
include CommandTestHelper
|
12
8
|
|
13
9
|
let(:cmd_module) { HammerCLIForeman::User }
|
14
10
|
|
@@ -38,7 +34,7 @@ describe HammerCLIForeman::User do
|
|
38
34
|
context "parameters" do
|
39
35
|
it_should_accept "id", ["--id=1"]
|
40
36
|
it_should_accept "login", ["--login=admin"]
|
41
|
-
it_should_fail_with "no arguments"
|
37
|
+
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
42
38
|
end
|
43
39
|
|
44
40
|
context "output" do
|
@@ -59,10 +55,11 @@ describe HammerCLIForeman::User do
|
|
59
55
|
context "parameters" do
|
60
56
|
it_should_accept "all required", ["--login=login", "--mail=mail", "--password=paswd", "--auth-source-id=1"]
|
61
57
|
it_should_accept "all required plus names", ["--login=login", "--firstname=fname", "--lastname=lname", "--mail=mail", "--password=paswd", "--auth-source-id=1"]
|
62
|
-
it_should_fail_with "login missing", ["--firstname=fname", "--lastname=lname", "--mail=mail", "--password=paswd", "--auth-source-id=1"]
|
63
|
-
it_should_fail_with "mail missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--password=paswd", "--auth-source-id=1"]
|
64
|
-
it_should_fail_with "password missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--mail=mail", "--auth-source-id=1"]
|
65
|
-
it_should_fail_with "auth source missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--mail=mail", "--password=paswd"]
|
58
|
+
# it_should_fail_with "login missing", ["--firstname=fname", "--lastname=lname", "--mail=mail", "--password=paswd", "--auth-source-id=1"]
|
59
|
+
# it_should_fail_with "mail missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--password=paswd", "--auth-source-id=1"]
|
60
|
+
# it_should_fail_with "password missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--mail=mail", "--auth-source-id=1"]
|
61
|
+
# it_should_fail_with "auth source missing", ["--login=login", "--firstname=fname", "--lastname=lname", "--mail=mail", "--password=paswd"]
|
62
|
+
# TODO: temporarily disabled, parameters are checked in the api
|
66
63
|
end
|
67
64
|
|
68
65
|
end
|
@@ -75,7 +72,7 @@ describe HammerCLIForeman::User do
|
|
75
72
|
context "parameters" do
|
76
73
|
it_should_accept "id", ["--id=1"]
|
77
74
|
it_should_accept "login", ["--login=admin"]
|
78
|
-
it_should_fail_with "id missing", []
|
75
|
+
# it_should_fail_with "id and login missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
79
76
|
end
|
80
77
|
|
81
78
|
end
|
@@ -88,7 +85,7 @@ describe HammerCLIForeman::User do
|
|
88
85
|
context "parameters" do
|
89
86
|
it_should_accept "id", ["--id=1"]
|
90
87
|
it_should_accept "login", ["--login=admin"]
|
91
|
-
it_should_fail_with "no params", []
|
88
|
+
# it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
92
89
|
end
|
93
90
|
|
94
91
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hammer_cli_foreman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomáš Strachota
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-05-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hammer_cli
|
@@ -17,350 +17,373 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '>='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.1.
|
20
|
+
version: 0.1.1
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '>='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.1.
|
27
|
+
version: 0.1.1
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: apipie-bindings
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - '>='
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 0.0.
|
34
|
+
version: 0.0.8
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - '>='
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.0.
|
41
|
+
version: 0.0.8
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rest-client
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 1.6.5
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.6.5
|
42
56
|
description: |
|
43
57
|
Foreman commands for Hammer CLI
|
44
58
|
email: tstracho@redhat.com
|
45
59
|
executables: []
|
46
60
|
extensions: []
|
47
61
|
extra_rdoc_files:
|
62
|
+
- doc/configuration.md
|
48
63
|
- doc/host_create.md
|
49
64
|
- README.md
|
50
65
|
files:
|
51
66
|
- lib/hammer_cli_foreman/report.rb
|
52
|
-
- lib/hammer_cli_foreman/i18n.rb
|
53
|
-
- lib/hammer_cli_foreman/media.rb
|
54
|
-
- lib/hammer_cli_foreman/domain.rb
|
55
|
-
- lib/hammer_cli_foreman/partition_table.rb
|
56
|
-
- lib/hammer_cli_foreman/resource_supported_test.rb
|
57
|
-
- lib/hammer_cli_foreman/exceptions.rb
|
58
|
-
- lib/hammer_cli_foreman/smart_class_parameter.rb
|
59
|
-
- lib/hammer_cli_foreman/host.rb
|
60
|
-
- lib/hammer_cli_foreman/auth.rb
|
61
|
-
- lib/hammer_cli_foreman/hostgroup.rb
|
62
67
|
- lib/hammer_cli_foreman/organization.rb
|
63
|
-
- lib/hammer_cli_foreman/
|
64
|
-
- lib/hammer_cli_foreman/environment.rb
|
65
|
-
- lib/hammer_cli_foreman/puppet_class.rb
|
66
|
-
- lib/hammer_cli_foreman/user.rb
|
67
|
-
- lib/hammer_cli_foreman/version.rb
|
68
|
-
- lib/hammer_cli_foreman/associating_commands.rb
|
69
|
-
- lib/hammer_cli_foreman/fact.rb
|
68
|
+
- lib/hammer_cli_foreman/common_parameter.rb
|
70
69
|
- lib/hammer_cli_foreman/subnet.rb
|
70
|
+
- lib/hammer_cli_foreman/model.rb
|
71
|
+
- lib/hammer_cli_foreman/fact.rb
|
72
|
+
- lib/hammer_cli_foreman/media.rb
|
71
73
|
- lib/hammer_cli_foreman/exception_handler.rb
|
72
|
-
- lib/hammer_cli_foreman/output.rb
|
73
74
|
- lib/hammer_cli_foreman/compute_resource.rb
|
74
|
-
- lib/hammer_cli_foreman/
|
75
|
-
- lib/hammer_cli_foreman/
|
75
|
+
- lib/hammer_cli_foreman/i18n.rb
|
76
|
+
- lib/hammer_cli_foreman/associating_commands.rb
|
77
|
+
- lib/hammer_cli_foreman/hostgroup.rb
|
78
|
+
- lib/hammer_cli_foreman/template.rb
|
79
|
+
- lib/hammer_cli_foreman/version.rb
|
80
|
+
- lib/hammer_cli_foreman/parameter.rb
|
81
|
+
- lib/hammer_cli_foreman/exceptions.rb
|
82
|
+
- lib/hammer_cli_foreman/host.rb
|
76
83
|
- lib/hammer_cli_foreman/commands.rb
|
77
|
-
- lib/hammer_cli_foreman/
|
78
|
-
- lib/hammer_cli_foreman/
|
84
|
+
- lib/hammer_cli_foreman/references.rb
|
85
|
+
- lib/hammer_cli_foreman/resource_supported_test.rb
|
86
|
+
- lib/hammer_cli_foreman/operating_system.rb
|
87
|
+
- lib/hammer_cli_foreman/smart_proxy.rb
|
88
|
+
- lib/hammer_cli_foreman/environment.rb
|
89
|
+
- lib/hammer_cli_foreman/puppet_class.rb
|
79
90
|
- lib/hammer_cli_foreman/output/formatters.rb
|
80
91
|
- lib/hammer_cli_foreman/output/fields.rb
|
81
|
-
- lib/hammer_cli_foreman/
|
92
|
+
- lib/hammer_cli_foreman/domain.rb
|
93
|
+
- lib/hammer_cli_foreman/smart_class_parameter.rb
|
94
|
+
- lib/hammer_cli_foreman/auth.rb
|
95
|
+
- lib/hammer_cli_foreman/searchables_option_builder.rb
|
82
96
|
- lib/hammer_cli_foreman/image.rb
|
83
|
-
- lib/hammer_cli_foreman/
|
84
|
-
- lib/hammer_cli_foreman/
|
85
|
-
- lib/hammer_cli_foreman/
|
97
|
+
- lib/hammer_cli_foreman/output.rb
|
98
|
+
- lib/hammer_cli_foreman/partition_table.rb
|
99
|
+
- lib/hammer_cli_foreman/credentials.rb
|
100
|
+
- lib/hammer_cli_foreman/id_resolver.rb
|
101
|
+
- lib/hammer_cli_foreman/user.rb
|
102
|
+
- lib/hammer_cli_foreman/location.rb
|
103
|
+
- lib/hammer_cli_foreman/architecture.rb
|
86
104
|
- lib/hammer_cli_foreman.rb
|
105
|
+
- doc/configuration.md
|
87
106
|
- doc/host_create.md
|
88
|
-
- test/reports/TEST-HammerCLIForeman-
|
89
|
-
- test/reports/TEST-HammerCLIForeman-
|
90
|
-
- test/reports/TEST-HammerCLIForeman-
|
91
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
|
92
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
93
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
|
94
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
95
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
107
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
|
108
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
|
109
|
+
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml
|
96
110
|
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml
|
97
|
-
- test/reports/TEST-HammerCLIForeman-
|
98
|
-
- test/reports/TEST-HammerCLIForeman-
|
111
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
|
112
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
|
113
|
+
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
|
114
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
|
115
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
|
116
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
|
117
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
|
118
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
|
119
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml
|
120
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml
|
121
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml
|
122
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml
|
123
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
|
124
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
|
125
|
+
- test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml
|
126
|
+
- test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
|
127
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
|
128
|
+
- test/reports/TEST-HammerCLIForeman-Subnet.xml
|
99
129
|
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml
|
100
|
-
- test/reports/TEST-HammerCLIForeman-
|
101
|
-
- test/reports/TEST-HammerCLIForeman-
|
102
|
-
- test/reports/TEST-HammerCLIForeman-
|
103
|
-
- test/reports/TEST-HammerCLIForeman-
|
104
|
-
- test/reports/TEST-HammerCLIForeman-
|
105
|
-
- test/reports/TEST-HammerCLIForeman-
|
130
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml
|
131
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
|
132
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
|
133
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml
|
134
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
135
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
|
136
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
|
137
|
+
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
106
138
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
|
107
|
-
- test/reports/TEST-HammerCLIForeman-
|
108
|
-
- test/reports/TEST-HammerCLIForeman-
|
109
|
-
- test/reports/TEST-HammerCLIForeman-
|
110
|
-
- test/reports/TEST-HammerCLIForeman-
|
111
|
-
- test/reports/TEST-HammerCLIForeman-
|
112
|
-
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
|
113
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
|
114
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
115
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
|
139
|
+
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
140
|
+
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
141
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
|
142
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
|
143
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
|
116
144
|
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
|
117
|
-
- test/reports/TEST-HammerCLIForeman-
|
118
|
-
- test/reports/TEST-HammerCLIForeman-
|
119
|
-
- test/reports/TEST-HammerCLIForeman-
|
145
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
|
146
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
|
147
|
+
- test/reports/TEST-HammerCLIForeman-Location.xml
|
148
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
|
149
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
|
150
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
|
151
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
|
152
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
|
153
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
|
154
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
155
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
120
156
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
|
121
|
-
- test/reports/TEST-HammerCLIForeman-
|
122
|
-
- test/reports/TEST-HammerCLIForeman-
|
123
|
-
- test/reports/TEST-HammerCLIForeman-
|
124
|
-
- test/reports/TEST-HammerCLIForeman-
|
125
|
-
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
|
126
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
|
127
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
|
128
|
-
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
|
129
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
130
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
131
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
|
132
|
-
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
133
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
134
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
135
|
-
- test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
|
136
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
|
137
|
-
- test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
|
138
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
|
139
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
|
140
|
-
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
|
141
|
-
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
|
142
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
|
143
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
|
144
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
|
145
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
|
146
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
|
147
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
|
148
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
|
149
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
|
150
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
151
|
-
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
|
152
|
-
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
|
153
|
-
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
|
157
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml
|
158
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
|
159
|
+
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml
|
160
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
|
154
161
|
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
|
155
|
-
- test/reports/TEST-HammerCLIForeman-
|
156
|
-
- test/reports/TEST-HammerCLIForeman-
|
157
|
-
- test/reports/TEST-HammerCLIForeman-
|
158
|
-
- test/reports/TEST-HammerCLIForeman-
|
159
|
-
- test/reports/TEST-HammerCLIForeman-
|
160
|
-
- test/reports/TEST-HammerCLIForeman-
|
161
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
162
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
163
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
|
164
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
|
165
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
|
166
|
-
- test/reports/TEST-HammerCLIForeman-Host.xml
|
167
|
-
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
|
168
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
|
162
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
163
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
|
164
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml
|
165
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable.xml
|
166
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
|
167
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
169
168
|
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
|
170
|
-
- test/reports/TEST-HammerCLIForeman-
|
171
|
-
- test/reports/TEST-HammerCLIForeman-
|
172
|
-
- test/reports/TEST-HammerCLIForeman-
|
173
|
-
- test/reports/TEST-HammerCLIForeman-
|
174
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
|
169
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
|
170
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
171
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
|
172
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
|
175
173
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
|
176
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
|
177
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
|
178
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable.xml
|
179
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
|
180
|
-
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
|
181
|
-
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
|
182
|
-
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
|
183
|
-
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
|
184
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
185
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup.xml
|
186
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
187
|
-
- test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
|
188
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
|
189
|
-
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
190
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
|
191
|
-
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
|
192
174
|
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
|
193
|
-
- test/reports/TEST-HammerCLIForeman-
|
194
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-
|
195
|
-
- test/reports/TEST-HammerCLIForeman-
|
175
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
|
176
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
|
177
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
|
178
|
+
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
|
179
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
180
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
196
181
|
- test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
|
197
|
-
- test/reports/TEST-HammerCLIForeman-
|
198
|
-
- test/reports/TEST-HammerCLIForeman-
|
199
|
-
- test/reports/TEST-MiniTest-Spec.xml
|
200
|
-
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
|
201
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
|
202
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
203
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
204
|
-
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
|
182
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
|
183
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
|
205
184
|
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
|
206
|
-
- test/reports/TEST-HammerCLIForeman-
|
185
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml
|
186
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
|
187
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
|
188
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
|
189
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
|
190
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
|
191
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
|
192
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
|
193
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
|
194
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
|
195
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
207
196
|
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
|
208
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
209
|
-
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
|
210
|
-
- test/reports/TEST-HammerCLIForeman-Domain.xml
|
211
|
-
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
|
212
|
-
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
213
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
|
214
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
|
215
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
|
216
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
217
197
|
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
|
218
|
-
- test/reports/TEST-HammerCLIForeman-
|
219
|
-
- test/reports/TEST-HammerCLIForeman-
|
220
|
-
- test/reports/TEST-HammerCLIForeman-
|
221
|
-
- test/reports/TEST-HammerCLIForeman-
|
222
|
-
- test/reports/TEST-HammerCLIForeman-
|
223
|
-
- test/reports/TEST-HammerCLIForeman-Environment.xml
|
224
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
|
225
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
226
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
227
|
-
- test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
|
228
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
|
229
|
-
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
|
198
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
|
199
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
|
200
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
|
201
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
202
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
|
230
203
|
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
|
204
|
+
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
|
231
205
|
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
|
232
|
-
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
233
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
|
234
|
-
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
|
235
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
|
236
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
|
237
|
-
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
|
238
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
|
239
|
-
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
|
240
|
-
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
|
241
206
|
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
|
242
|
-
- test/reports/TEST-HammerCLIForeman-
|
243
|
-
- test/reports/TEST-HammerCLIForeman-
|
244
|
-
- test/reports/TEST-HammerCLIForeman-
|
245
|
-
- test/reports/TEST-HammerCLIForeman-
|
246
|
-
- test/reports/TEST-HammerCLIForeman-
|
247
|
-
- test/reports/TEST-HammerCLIForeman-Host-
|
248
|
-
- test/reports/TEST-HammerCLIForeman-
|
207
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
|
208
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
|
209
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
|
210
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
211
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
|
212
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
|
213
|
+
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
|
214
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
|
215
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
|
249
216
|
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml
|
250
|
-
- test/reports/TEST-HammerCLIForeman-
|
251
|
-
- test/reports/TEST-HammerCLIForeman-Organization-
|
252
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
253
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
|
254
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
255
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
256
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
|
257
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
258
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
|
259
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
|
217
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml
|
218
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
260
219
|
- test/reports/TEST-HammerCLIForeman-Medium.xml
|
261
|
-
- test/reports/TEST-HammerCLIForeman-
|
262
|
-
- test/reports/TEST-HammerCLIForeman-
|
263
|
-
- test/reports/TEST-HammerCLIForeman-
|
264
|
-
- test/reports/TEST-HammerCLIForeman-
|
265
|
-
- test/reports/TEST-HammerCLIForeman-
|
266
|
-
- test/reports/TEST-HammerCLIForeman-
|
267
|
-
- test/reports/TEST-HammerCLIForeman-
|
268
|
-
- test/reports/TEST-HammerCLIForeman-
|
220
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
|
221
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
|
222
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
223
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
|
224
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
225
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
|
226
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
227
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
228
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
|
229
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
230
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
231
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
|
269
232
|
- test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
|
270
|
-
- test/reports/TEST-HammerCLIForeman-
|
271
|
-
- test/reports/TEST-HammerCLIForeman-
|
272
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-
|
273
|
-
- test/reports/TEST-HammerCLIForeman-
|
233
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
|
234
|
+
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml
|
235
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
|
236
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
|
237
|
+
- test/reports/TEST-HammerCLIForeman-Environment.xml
|
238
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml
|
239
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
|
240
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
241
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
|
242
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
243
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
|
244
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
245
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
|
246
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
|
247
|
+
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
|
248
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
|
274
249
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
|
275
|
-
- test/reports/TEST-HammerCLIForeman-
|
250
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
|
251
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
|
252
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
|
253
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml
|
254
|
+
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml
|
255
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
|
276
256
|
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
|
277
|
-
- test/reports/TEST-HammerCLIForeman-
|
278
|
-
- test/reports/TEST-HammerCLIForeman-
|
279
|
-
- test/reports/TEST-HammerCLIForeman-
|
280
|
-
- test/reports/TEST-HammerCLIForeman-
|
281
|
-
- test/reports/TEST-HammerCLIForeman-
|
282
|
-
- test/reports/TEST-HammerCLIForeman-
|
283
|
-
- test/reports/TEST-HammerCLIForeman-
|
284
|
-
- test/reports/TEST-HammerCLIForeman-
|
285
|
-
- test/reports/TEST-HammerCLIForeman-
|
286
|
-
- test/reports/TEST-HammerCLIForeman-
|
287
|
-
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
|
257
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
|
258
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
|
259
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
|
260
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
|
261
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
|
262
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
|
263
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
|
264
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
265
|
+
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
|
266
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
288
267
|
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
|
289
|
-
- test/reports/TEST-HammerCLIForeman-
|
268
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
|
269
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
|
270
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
|
271
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
272
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml
|
273
|
+
- test/reports/TEST-HammerCLIForeman-Host.xml
|
274
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml
|
275
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml
|
276
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml
|
277
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
|
278
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
|
279
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
|
280
|
+
- test/reports/TEST-MiniTest-Spec.xml
|
281
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
282
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
283
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
|
284
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
|
285
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
286
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
|
287
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
|
288
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
|
289
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
|
290
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
|
291
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter.xml
|
292
|
+
- test/reports/TEST-HammerCLIForeman-User.xml
|
293
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
|
294
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
|
295
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
|
296
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
297
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
|
298
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
290
299
|
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
|
300
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
|
301
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
|
291
302
|
- test/reports/TEST-HammerCLIForeman-ComputeResource.xml
|
292
|
-
- test/reports/TEST-HammerCLIForeman-
|
293
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
294
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
|
295
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
296
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
297
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
|
303
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
|
298
304
|
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
|
299
|
-
- test/reports/TEST-HammerCLIForeman-
|
300
|
-
- test/reports/TEST-HammerCLIForeman-
|
301
|
-
- test/reports/TEST-HammerCLIForeman-
|
302
|
-
- test/reports/TEST-HammerCLIForeman-
|
303
|
-
- test/reports/TEST-HammerCLIForeman-
|
304
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-
|
305
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
|
306
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
|
307
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml
|
308
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
|
309
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
|
310
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
|
311
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
|
312
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
|
313
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
|
314
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
|
315
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
|
316
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml
|
305
317
|
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml
|
306
|
-
- test/reports/TEST-HammerCLIForeman-
|
307
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
|
308
|
-
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
|
309
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
|
310
|
-
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
311
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
318
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml
|
312
319
|
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml
|
313
|
-
- test/reports/TEST-HammerCLIForeman-
|
314
|
-
- test/reports/TEST-HammerCLIForeman-
|
315
|
-
- test/reports/TEST-HammerCLIForeman-
|
320
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
|
321
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml
|
322
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
|
323
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
|
324
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
|
325
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
|
326
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
|
327
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml
|
328
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
|
329
|
+
- test/reports/TEST-HammerCLIForeman-Domain.xml
|
330
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
|
316
331
|
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml
|
317
|
-
- test/reports/TEST-HammerCLIForeman-
|
318
|
-
- test/reports/TEST-HammerCLIForeman-
|
319
|
-
- test/reports/TEST-HammerCLIForeman-
|
320
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-
|
321
|
-
- test/reports/TEST-HammerCLIForeman-
|
322
|
-
- test/reports/TEST-HammerCLIForeman-
|
323
|
-
- test/reports/TEST-HammerCLIForeman-
|
324
|
-
- test/reports/TEST-HammerCLIForeman-
|
325
|
-
- test/reports/TEST-HammerCLIForeman-
|
326
|
-
- test/reports/TEST-HammerCLIForeman-
|
327
|
-
- test/reports/TEST-HammerCLIForeman-Template-
|
328
|
-
- test/reports/TEST-HammerCLIForeman-
|
329
|
-
- test/
|
330
|
-
- test/
|
332
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
|
333
|
+
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
|
334
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml
|
335
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
|
336
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
|
337
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup.xml
|
338
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
|
339
|
+
- test/reports/TEST-HammerCLIForeman-Template.xml
|
340
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
|
341
|
+
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml
|
342
|
+
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml
|
343
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
|
344
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
|
345
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
|
346
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
|
347
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
|
348
|
+
- test/unit/image_test.rb
|
349
|
+
- test/unit/domain_test.rb
|
350
|
+
- test/unit/exception_handler_test.rb
|
351
|
+
- test/unit/media_test.rb
|
352
|
+
- test/unit/host_test.rb
|
331
353
|
- test/unit/organization_test.rb
|
332
354
|
- test/unit/smart_proxy_test.rb
|
333
|
-
- test/unit/environment_test.rb
|
334
|
-
- test/unit/common_parameter_test.rb
|
335
|
-
- test/unit/report_test.rb
|
336
|
-
- test/unit/data/1.4/foreman_api.json
|
337
|
-
- test/unit/partition_table_test.rb
|
338
|
-
- test/unit/media_test.rb
|
339
|
-
- test/unit/exception_handler_test.rb
|
340
|
-
- test/unit/domain_test.rb
|
341
|
-
- test/unit/location_test.rb
|
342
|
-
- test/unit/model_test.rb
|
343
355
|
- test/unit/subnet_test.rb
|
344
|
-
- test/unit/
|
345
|
-
- test/unit/
|
346
|
-
- test/unit/
|
347
|
-
- test/unit/
|
348
|
-
- test/unit/
|
356
|
+
- test/unit/location_test.rb
|
357
|
+
- test/unit/helpers/command.rb
|
358
|
+
- test/unit/helpers/resource_disabled.rb
|
359
|
+
- test/unit/helpers/fake_searchables.rb
|
360
|
+
- test/unit/searchables_option_builder_test.rb
|
361
|
+
- test/unit/credentials_test.rb
|
349
362
|
- test/unit/operating_system_test.rb
|
350
|
-
- test/unit/
|
351
|
-
- test/unit/
|
363
|
+
- test/unit/template_test.rb
|
364
|
+
- test/unit/environment_test.rb
|
352
365
|
- test/unit/commands_test.rb
|
366
|
+
- test/unit/partition_table_test.rb
|
353
367
|
- test/unit/hostgroup_test.rb
|
354
|
-
- test/unit/
|
368
|
+
- test/unit/smart_class_parameter_test.rb
|
369
|
+
- test/unit/report_test.rb
|
355
370
|
- test/unit/output/formatters_test.rb
|
356
|
-
- test/unit/
|
357
|
-
- test/unit/
|
358
|
-
- test/unit/
|
359
|
-
- test/unit/
|
371
|
+
- test/unit/id_resolver_test.rb
|
372
|
+
- test/unit/test_output_adapter.rb
|
373
|
+
- test/unit/fact_test.rb
|
374
|
+
- test/unit/model_test.rb
|
375
|
+
- test/unit/compute_resource_test.rb
|
376
|
+
- test/unit/puppet_class_test.rb
|
377
|
+
- test/unit/apipie_resource_mock.rb
|
378
|
+
- test/unit/common_parameter_test.rb
|
379
|
+
- test/unit/test_helper.rb
|
360
380
|
- test/unit/architecture_test.rb
|
361
|
-
-
|
381
|
+
- test/unit/user_test.rb
|
382
|
+
- test/unit/data/1.5/foreman_api.json
|
383
|
+
- test/unit/data/1.4/foreman_api.json
|
362
384
|
- locale/hammer-cli-foreman.pot
|
363
385
|
- locale/Makefile
|
386
|
+
- locale/zanata.xml
|
364
387
|
- README.md
|
365
388
|
homepage: http://github.com/theforeman/hammer-cli-foreman
|
366
389
|
licenses:
|
@@ -382,282 +405,286 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
382
405
|
version: '0'
|
383
406
|
requirements: []
|
384
407
|
rubyforge_project:
|
385
|
-
rubygems_version: 2.
|
408
|
+
rubygems_version: 2.1.11
|
386
409
|
signing_key:
|
387
410
|
specification_version: 4
|
388
411
|
summary: Foreman commands for Hammer
|
389
412
|
test_files:
|
390
|
-
- test/reports/TEST-HammerCLIForeman-
|
391
|
-
- test/reports/TEST-HammerCLIForeman-
|
392
|
-
- test/reports/TEST-HammerCLIForeman-
|
393
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
|
394
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
395
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
|
396
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
397
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
413
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
|
414
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
|
415
|
+
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml
|
398
416
|
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml
|
399
|
-
- test/reports/TEST-HammerCLIForeman-
|
400
|
-
- test/reports/TEST-HammerCLIForeman-
|
417
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
|
418
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
|
419
|
+
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
|
420
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
|
421
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
|
422
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
|
423
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
|
424
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
|
425
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml
|
426
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml
|
427
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml
|
428
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml
|
429
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
|
430
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
|
431
|
+
- test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml
|
432
|
+
- test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
|
433
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
|
434
|
+
- test/reports/TEST-HammerCLIForeman-Subnet.xml
|
401
435
|
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml
|
402
|
-
- test/reports/TEST-HammerCLIForeman-
|
403
|
-
- test/reports/TEST-HammerCLIForeman-
|
404
|
-
- test/reports/TEST-HammerCLIForeman-
|
405
|
-
- test/reports/TEST-HammerCLIForeman-
|
406
|
-
- test/reports/TEST-HammerCLIForeman-
|
407
|
-
- test/reports/TEST-HammerCLIForeman-
|
436
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml
|
437
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
|
438
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
|
439
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml
|
440
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
441
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
|
442
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
|
443
|
+
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
408
444
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
|
409
|
-
- test/reports/TEST-HammerCLIForeman-
|
410
|
-
- test/reports/TEST-HammerCLIForeman-
|
411
|
-
- test/reports/TEST-HammerCLIForeman-
|
412
|
-
- test/reports/TEST-HammerCLIForeman-
|
413
|
-
- test/reports/TEST-HammerCLIForeman-
|
414
|
-
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
|
415
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
|
416
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
417
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
|
445
|
+
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
446
|
+
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
447
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
|
448
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
|
449
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
|
418
450
|
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
|
419
|
-
- test/reports/TEST-HammerCLIForeman-
|
420
|
-
- test/reports/TEST-HammerCLIForeman-
|
421
|
-
- test/reports/TEST-HammerCLIForeman-
|
451
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
|
452
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
|
453
|
+
- test/reports/TEST-HammerCLIForeman-Location.xml
|
454
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
|
455
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
|
456
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
|
457
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
|
458
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
|
459
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
|
460
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
461
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
422
462
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
|
423
|
-
- test/reports/TEST-HammerCLIForeman-
|
424
|
-
- test/reports/TEST-HammerCLIForeman-
|
425
|
-
- test/reports/TEST-HammerCLIForeman-
|
426
|
-
- test/reports/TEST-HammerCLIForeman-
|
427
|
-
- test/reports/TEST-HammerCLIForeman-
|
428
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-
|
463
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml
|
464
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
|
465
|
+
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml
|
466
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
|
467
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
|
468
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
469
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
|
470
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml
|
471
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable.xml
|
472
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
|
473
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
474
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
|
429
475
|
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
|
430
|
-
- test/reports/TEST-HammerCLIForeman-
|
431
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
432
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
433
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
|
434
|
-
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
435
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
436
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
437
|
-
- test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
|
476
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
438
477
|
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
|
439
|
-
- test/reports/TEST-HammerCLIForeman-
|
440
|
-
- test/reports/TEST-HammerCLIForeman-
|
441
|
-
- test/reports/TEST-HammerCLIForeman-
|
442
|
-
- test/reports/TEST-HammerCLIForeman-
|
443
|
-
- test/reports/TEST-HammerCLIForeman-
|
444
|
-
- test/reports/TEST-HammerCLIForeman-
|
445
|
-
- test/reports/TEST-HammerCLIForeman-
|
478
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
|
479
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
|
480
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
|
481
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
|
482
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
|
483
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
|
484
|
+
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
|
485
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
486
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
487
|
+
- test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
|
488
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
|
489
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
|
490
|
+
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
|
491
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml
|
446
492
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
|
447
|
-
- test/reports/TEST-HammerCLIForeman-
|
448
|
-
- test/reports/TEST-HammerCLIForeman-
|
449
|
-
- test/reports/TEST-HammerCLIForeman-
|
450
|
-
- test/reports/TEST-HammerCLIForeman-
|
451
|
-
- test/reports/TEST-HammerCLIForeman-
|
452
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
493
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
|
494
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
|
495
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
|
496
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
|
497
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
|
453
498
|
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
|
454
|
-
- test/reports/TEST-HammerCLIForeman-
|
455
|
-
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
|
456
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
|
457
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
|
458
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
|
459
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
|
460
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
|
461
|
-
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
|
462
|
-
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
|
463
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
464
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
465
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
|
466
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
|
467
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
|
468
|
-
- test/reports/TEST-HammerCLIForeman-Host.xml
|
469
|
-
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
|
470
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
|
471
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
|
472
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
|
499
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
|
473
500
|
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
|
474
|
-
- test/reports/TEST-HammerCLIForeman-
|
501
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
502
|
+
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
|
503
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
|
504
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
|
505
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
|
506
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
|
507
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
508
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
|
509
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
|
475
510
|
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
|
476
|
-
- test/reports/TEST-HammerCLIForeman-
|
477
|
-
- test/reports/TEST-HammerCLIForeman-
|
478
|
-
- test/reports/TEST-HammerCLIForeman-
|
479
|
-
- test/reports/TEST-HammerCLIForeman-
|
480
|
-
- test/reports/TEST-HammerCLIForeman-
|
481
|
-
- test/reports/TEST-HammerCLIForeman-
|
482
|
-
- test/reports/TEST-HammerCLIForeman-
|
483
|
-
- test/reports/TEST-HammerCLIForeman-
|
484
|
-
- test/reports/TEST-HammerCLIForeman-
|
485
|
-
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
|
486
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
487
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup.xml
|
488
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
489
|
-
- test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
|
490
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
|
491
|
-
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
511
|
+
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
|
512
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
|
513
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
|
514
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
|
515
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
|
516
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
517
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
|
518
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
|
519
|
+
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
|
492
520
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
|
493
|
-
- test/reports/TEST-HammerCLIForeman-
|
494
|
-
- test/reports/TEST-HammerCLIForeman-
|
495
|
-
- test/reports/TEST-HammerCLIForeman-
|
496
|
-
- test/reports/TEST-HammerCLIForeman-
|
497
|
-
- test/reports/TEST-HammerCLIForeman-
|
498
|
-
- test/reports/TEST-HammerCLIForeman-
|
521
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
|
522
|
+
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml
|
523
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml
|
524
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
525
|
+
- test/reports/TEST-HammerCLIForeman-Medium.xml
|
526
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
|
527
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
|
528
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
529
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
|
530
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
531
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
|
532
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
533
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
534
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
|
535
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
536
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
537
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
|
538
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
|
539
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
|
540
|
+
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml
|
541
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
|
542
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
|
543
|
+
- test/reports/TEST-HammerCLIForeman-Environment.xml
|
544
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml
|
545
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
|
546
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
547
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
|
548
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
549
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
|
550
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
551
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
|
552
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
|
499
553
|
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
|
500
|
-
- test/reports/TEST-HammerCLIForeman-
|
501
|
-
- test/reports/TEST-
|
502
|
-
- test/reports/TEST-HammerCLIForeman-
|
554
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
|
555
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
|
556
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
|
557
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
|
558
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
|
559
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml
|
560
|
+
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml
|
561
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
|
562
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
|
503
563
|
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
|
504
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
505
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
506
|
-
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
|
507
|
-
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
|
508
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
|
509
|
-
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
|
510
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
511
564
|
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
|
512
|
-
- test/reports/TEST-HammerCLIForeman-Domain.xml
|
513
|
-
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
|
514
|
-
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
515
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
|
516
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
|
517
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
|
518
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
519
|
-
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
|
520
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
|
521
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
|
522
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
|
523
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
|
524
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
|
525
|
-
- test/reports/TEST-HammerCLIForeman-Environment.xml
|
526
565
|
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
|
527
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
528
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
529
|
-
- test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
|
530
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
|
531
|
-
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
|
532
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
|
533
|
-
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
|
534
|
-
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
535
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
|
536
566
|
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
|
537
|
-
- test/reports/TEST-HammerCLIForeman-
|
538
|
-
- test/reports/TEST-HammerCLIForeman-
|
539
|
-
- test/reports/TEST-HammerCLIForeman-
|
540
|
-
- test/reports/TEST-HammerCLIForeman-
|
567
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
|
568
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
|
569
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
|
570
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
571
|
+
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
|
572
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
573
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
|
574
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
|
541
575
|
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
|
542
|
-
- test/reports/TEST-HammerCLIForeman-
|
543
|
-
- test/reports/TEST-HammerCLIForeman-
|
544
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
|
545
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
|
546
|
-
- test/reports/TEST-HammerCLIForeman-User.xml
|
547
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
|
548
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
|
549
|
-
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
|
576
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
|
577
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
550
578
|
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml
|
551
|
-
- test/reports/TEST-HammerCLIForeman-
|
552
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
|
553
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
|
554
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
555
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
|
556
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
557
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
558
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
|
559
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
560
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
|
561
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
|
562
|
-
- test/reports/TEST-HammerCLIForeman-Medium.xml
|
563
|
-
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
|
564
|
-
- test/reports/TEST-HammerCLIForeman-Template.xml
|
565
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
|
566
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
|
567
|
-
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
|
568
|
-
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
|
569
|
-
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
|
570
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
|
571
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
|
579
|
+
- test/reports/TEST-HammerCLIForeman-Host.xml
|
572
580
|
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml
|
573
|
-
- test/reports/TEST-HammerCLIForeman-
|
574
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
|
575
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
|
576
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
|
577
|
-
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
|
578
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
|
579
|
-
- test/reports/TEST-HammerCLIForeman-Subnet.xml
|
580
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
|
581
|
-
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
|
582
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
|
583
|
-
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
|
584
|
-
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
|
585
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
|
581
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml
|
586
582
|
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml
|
587
|
-
- test/reports/TEST-HammerCLIForeman-
|
588
|
-
- test/reports/TEST-HammerCLIForeman-
|
589
|
-
- test/reports/TEST-HammerCLIForeman-
|
590
|
-
- test/reports/TEST-
|
591
|
-
- test/reports/TEST-HammerCLIForeman-
|
583
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
|
584
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
|
585
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
|
586
|
+
- test/reports/TEST-MiniTest-Spec.xml
|
587
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
588
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
589
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
|
590
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
|
591
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
592
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
|
593
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
|
594
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
|
595
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
|
596
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
|
597
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter.xml
|
598
|
+
- test/reports/TEST-HammerCLIForeman-User.xml
|
599
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
|
600
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
|
601
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
|
602
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
603
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
|
604
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
592
605
|
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
|
606
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
|
607
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
|
593
608
|
- test/reports/TEST-HammerCLIForeman-ComputeResource.xml
|
594
|
-
- test/reports/TEST-HammerCLIForeman-
|
595
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
596
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
|
597
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
598
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
599
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
|
609
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
|
600
610
|
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
|
601
|
-
- test/reports/TEST-HammerCLIForeman-
|
602
|
-
- test/reports/TEST-HammerCLIForeman-
|
603
|
-
- test/reports/TEST-HammerCLIForeman-
|
604
|
-
- test/reports/TEST-HammerCLIForeman-
|
605
|
-
- test/reports/TEST-HammerCLIForeman-
|
606
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-
|
611
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
|
612
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
|
613
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml
|
614
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
|
615
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
|
616
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
|
617
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
|
618
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
|
619
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
|
620
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
|
621
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
|
622
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml
|
607
623
|
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml
|
608
|
-
- test/reports/TEST-HammerCLIForeman-
|
609
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
|
610
|
-
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
|
611
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
|
612
|
-
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
613
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
624
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml
|
614
625
|
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml
|
615
|
-
- test/reports/TEST-HammerCLIForeman-
|
616
|
-
- test/reports/TEST-HammerCLIForeman-
|
617
|
-
- test/reports/TEST-HammerCLIForeman-
|
626
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
|
627
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml
|
628
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
|
629
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
|
630
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
|
631
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
|
632
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
|
633
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml
|
634
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
|
635
|
+
- test/reports/TEST-HammerCLIForeman-Domain.xml
|
636
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
|
618
637
|
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml
|
619
|
-
- test/reports/TEST-HammerCLIForeman-
|
620
|
-
- test/reports/TEST-HammerCLIForeman-
|
621
|
-
- test/reports/TEST-HammerCLIForeman-
|
622
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-
|
623
|
-
- test/reports/TEST-HammerCLIForeman-
|
624
|
-
- test/reports/TEST-HammerCLIForeman-
|
625
|
-
- test/reports/TEST-HammerCLIForeman-
|
626
|
-
- test/reports/TEST-HammerCLIForeman-
|
627
|
-
- test/reports/TEST-HammerCLIForeman-
|
628
|
-
- test/reports/TEST-HammerCLIForeman-
|
629
|
-
- test/reports/TEST-HammerCLIForeman-Template-
|
630
|
-
- test/reports/TEST-HammerCLIForeman-
|
631
|
-
- test/
|
632
|
-
- test/
|
638
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
|
639
|
+
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
|
640
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml
|
641
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
|
642
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
|
643
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup.xml
|
644
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
|
645
|
+
- test/reports/TEST-HammerCLIForeman-Template.xml
|
646
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
|
647
|
+
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml
|
648
|
+
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml
|
649
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
|
650
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
|
651
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
|
652
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
|
653
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
|
654
|
+
- test/unit/image_test.rb
|
655
|
+
- test/unit/domain_test.rb
|
656
|
+
- test/unit/exception_handler_test.rb
|
657
|
+
- test/unit/media_test.rb
|
658
|
+
- test/unit/host_test.rb
|
633
659
|
- test/unit/organization_test.rb
|
634
660
|
- test/unit/smart_proxy_test.rb
|
635
|
-
- test/unit/environment_test.rb
|
636
|
-
- test/unit/common_parameter_test.rb
|
637
|
-
- test/unit/report_test.rb
|
638
|
-
- test/unit/data/1.4/foreman_api.json
|
639
|
-
- test/unit/partition_table_test.rb
|
640
|
-
- test/unit/media_test.rb
|
641
|
-
- test/unit/exception_handler_test.rb
|
642
|
-
- test/unit/domain_test.rb
|
643
|
-
- test/unit/location_test.rb
|
644
|
-
- test/unit/model_test.rb
|
645
661
|
- test/unit/subnet_test.rb
|
646
|
-
- test/unit/
|
647
|
-
- test/unit/
|
648
|
-
- test/unit/
|
649
|
-
- test/unit/
|
650
|
-
- test/unit/
|
662
|
+
- test/unit/location_test.rb
|
663
|
+
- test/unit/helpers/command.rb
|
664
|
+
- test/unit/helpers/resource_disabled.rb
|
665
|
+
- test/unit/helpers/fake_searchables.rb
|
666
|
+
- test/unit/searchables_option_builder_test.rb
|
667
|
+
- test/unit/credentials_test.rb
|
651
668
|
- test/unit/operating_system_test.rb
|
652
|
-
- test/unit/
|
653
|
-
- test/unit/
|
669
|
+
- test/unit/template_test.rb
|
670
|
+
- test/unit/environment_test.rb
|
654
671
|
- test/unit/commands_test.rb
|
672
|
+
- test/unit/partition_table_test.rb
|
655
673
|
- test/unit/hostgroup_test.rb
|
656
|
-
- test/unit/
|
674
|
+
- test/unit/smart_class_parameter_test.rb
|
675
|
+
- test/unit/report_test.rb
|
657
676
|
- test/unit/output/formatters_test.rb
|
658
|
-
- test/unit/
|
659
|
-
- test/unit/
|
660
|
-
- test/unit/
|
661
|
-
- test/unit/
|
677
|
+
- test/unit/id_resolver_test.rb
|
678
|
+
- test/unit/test_output_adapter.rb
|
679
|
+
- test/unit/fact_test.rb
|
680
|
+
- test/unit/model_test.rb
|
681
|
+
- test/unit/compute_resource_test.rb
|
682
|
+
- test/unit/puppet_class_test.rb
|
683
|
+
- test/unit/apipie_resource_mock.rb
|
684
|
+
- test/unit/common_parameter_test.rb
|
685
|
+
- test/unit/test_helper.rb
|
662
686
|
- test/unit/architecture_test.rb
|
687
|
+
- test/unit/user_test.rb
|
688
|
+
- test/unit/data/1.5/foreman_api.json
|
689
|
+
- test/unit/data/1.4/foreman_api.json
|
663
690
|
has_rdoc:
|