hammer_cli_katello 0.24.3 → 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_katello.rb +6 -14
  3. data/lib/hammer_cli_katello/activation_key.rb +5 -5
  4. data/lib/hammer_cli_katello/capsule.rb +2 -3
  5. data/lib/hammer_cli_katello/command_extensions/lifecycle_environment.rb +10 -7
  6. data/lib/hammer_cli_katello/command_extensions/lifecycle_environments.rb +11 -8
  7. data/lib/hammer_cli_katello/content_credential.rb +20 -19
  8. data/lib/hammer_cli_katello/content_export.rb +1 -0
  9. data/lib/hammer_cli_katello/content_export_helper.rb +1 -1
  10. data/lib/hammer_cli_katello/content_view.rb +16 -31
  11. data/lib/hammer_cli_katello/content_view_version.rb +4 -11
  12. data/lib/hammer_cli_katello/deb_package.rb +3 -3
  13. data/lib/hammer_cli_katello/erratum.rb +1 -1
  14. data/lib/hammer_cli_katello/erratum_info_command.rb +1 -1
  15. data/lib/hammer_cli_katello/file.rb +3 -3
  16. data/lib/hammer_cli_katello/filter.rb +2 -2
  17. data/lib/hammer_cli_katello/foreman_search_options_creators.rb +0 -12
  18. data/lib/hammer_cli_katello/host_collection.rb +2 -2
  19. data/lib/hammer_cli_katello/host_deb.rb +1 -1
  20. data/lib/hammer_cli_katello/host_errata.rb +1 -1
  21. data/lib/hammer_cli_katello/host_extensions.rb +5 -5
  22. data/lib/hammer_cli_katello/host_package.rb +1 -1
  23. data/lib/hammer_cli_katello/hostgroup_extensions.rb +4 -4
  24. data/lib/hammer_cli_katello/id_resolver.rb +0 -5
  25. data/lib/hammer_cli_katello/lifecycle_environment.rb +2 -2
  26. data/lib/hammer_cli_katello/module_stream.rb +8 -8
  27. data/lib/hammer_cli_katello/organization_options.rb +8 -6
  28. data/lib/hammer_cli_katello/ostree_branch.rb +2 -2
  29. data/lib/hammer_cli_katello/package.rb +5 -5
  30. data/lib/hammer_cli_katello/package_group.rb +4 -4
  31. data/lib/hammer_cli_katello/ping.rb +0 -14
  32. data/lib/hammer_cli_katello/product.rb +3 -3
  33. data/lib/hammer_cli_katello/product_content.rb +2 -2
  34. data/lib/hammer_cli_katello/repository.rb +6 -37
  35. data/lib/hammer_cli_katello/repository_set.rb +4 -4
  36. data/lib/hammer_cli_katello/simple_content_access.rb +40 -0
  37. data/lib/hammer_cli_katello/srpm.rb +2 -2
  38. data/lib/hammer_cli_katello/subscription.rb +2 -3
  39. data/lib/hammer_cli_katello/sync_plan.rb +2 -2
  40. data/lib/hammer_cli_katello/version.rb +1 -1
  41. data/test/data/3.18/foreman_api.json +1 -1
  42. data/test/data/3.19/foreman_api.json +1 -0
  43. data/test/data/4.0/foreman_api.json +1 -0
  44. data/test/functional/capsule/content/info_test.rb +1 -2
  45. data/test/functional/content_credentials/create_test.rb +32 -0
  46. data/test/functional/{repository → content_credentials}/data/test_cert.json +0 -0
  47. data/test/functional/content_credentials/list_test.rb +6 -8
  48. data/test/functional/content_export/list_test.rb +9 -9
  49. data/test/functional/content_view/list_test.rb +0 -2
  50. data/test/functional/content_view/publish_test.rb +0 -21
  51. data/test/functional/content_view/version/promote_test.rb +1 -2
  52. data/test/functional/content_view/version/republish_repositories_test.rb +1 -2
  53. data/test/functional/host/errata/apply_test.rb +0 -2
  54. data/test/functional/host/errata/recalculate_test.rb +0 -2
  55. data/test/functional/ping_test.rb +0 -2
  56. data/test/functional/repository/create_test.rb +0 -30
  57. data/test/functional/repository/info_test.rb +4 -4
  58. data/test/functional/repository/list_test.rb +0 -2
  59. data/test/functional/simple_content_access/disable_test.rb +48 -0
  60. data/test/functional/simple_content_access/enable_test.rb +46 -0
  61. data/test/test_helper.rb +1 -1
  62. metadata +15 -17
  63. data/lib/hammer_cli_katello/content_view_puppet_module.rb +0 -60
  64. data/lib/hammer_cli_katello/gpg_key.rb +0 -67
  65. data/lib/hammer_cli_katello/puppet_module.rb +0 -59
  66. data/test/functional/content_view/puppet_module/add_test.rb +0 -24
  67. data/test/functional/content_view/puppet_module/remove_test.rb +0 -54
  68. data/test/functional/gpg_test.rb +0 -39
  69. data/test/functional/repository/data/test_ca.json +0 -43
  70. data/test/functional/repository/data/test_key.json +0 -43
@@ -0,0 +1,46 @@
1
+ require File.join(File.dirname(__FILE__), '../../test_helper')
2
+
3
+ describe 'simple-content-access enable' do
4
+ before do
5
+ @cmd = %w(simple-content-access enable)
6
+ end
7
+
8
+ let(:organization_id) { 3 }
9
+
10
+ it "enables with required options" do
11
+ params = ["--organization-id=#{organization_id}"]
12
+ api_expects(:simple_content_access, :eligible).
13
+ with_params('organization_id' => organization_id).
14
+ returns("simple_content_access_eligible" => true)
15
+
16
+ api_expects(:simple_content_access, :enable)
17
+ .with_params('organization_id' => organization_id)
18
+ run_cmd(@cmd + params)
19
+ end
20
+
21
+ it 'fails on missing required params' do
22
+ params = []
23
+ result = run_cmd(@cmd + params)
24
+ expected_error = "Could not enable Simple Content Access for this organization"
25
+
26
+ assert_equal(result.exit_code, HammerCLI::EX_SOFTWARE)
27
+ assert_equal(result.err[/#{expected_error}/], expected_error)
28
+ end
29
+
30
+ it 'fails on non eligible org' do
31
+ params = ["--organization-id=#{organization_id}"]
32
+
33
+ api_expects(:simple_content_access, :eligible).
34
+ with_params('organization_id' => organization_id).
35
+ returns("simple_content_access_eligible" => false)
36
+
37
+ api_expects(:simple_content_access, :enable)
38
+ .with_params('organization_id' => organization_id).never
39
+ result = run_cmd(@cmd + params)
40
+
41
+ expected_error = "Could not enable Simple Content Access for this organization"
42
+
43
+ assert_equal(result.exit_code, HammerCLI::EX_SOFTWARE)
44
+ assert_equal(result.err[/#{expected_error}/], expected_error)
45
+ end
46
+ end
data/test/test_helper.rb CHANGED
@@ -17,7 +17,7 @@ require 'minitest/spec'
17
17
  require 'mocha/minitest'
18
18
  require 'hammer_cli'
19
19
 
20
- KATELLO_VERSION = Gem::Version.new(ENV['TEST_API_VERSION'] || '3.18')
20
+ KATELLO_VERSION = Gem::Version.new(ENV['TEST_API_VERSION'] || '4.0')
21
21
 
22
22
  if HammerCLI.context[:api_connection]
23
23
  HammerCLI.context[:api_connection].create('foreman') do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.3
4
+ version: '1.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Price
@@ -35,7 +35,7 @@ authors:
35
35
  autorequire:
36
36
  bindir: bin
37
37
  cert_chain: []
38
- date: 2021-03-05 00:00:00.000000000 Z
38
+ date: 2021-02-04 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: hammer_cli_foreman
@@ -249,7 +249,6 @@ files:
249
249
  - lib/hammer_cli_katello/content_view.rb
250
250
  - lib/hammer_cli_katello/content_view_component.rb
251
251
  - lib/hammer_cli_katello/content_view_name_resolvable.rb
252
- - lib/hammer_cli_katello/content_view_puppet_module.rb
253
252
  - lib/hammer_cli_katello/content_view_purge.rb
254
253
  - lib/hammer_cli_katello/content_view_version.rb
255
254
  - lib/hammer_cli_katello/cv_import_export_helper.rb
@@ -261,7 +260,6 @@ files:
261
260
  - lib/hammer_cli_katello/filter.rb
262
261
  - lib/hammer_cli_katello/filter_rule.rb
263
262
  - lib/hammer_cli_katello/foreman_search_options_creators.rb
264
- - lib/hammer_cli_katello/gpg_key.rb
265
263
  - lib/hammer_cli_katello/host.rb
266
264
  - lib/hammer_cli_katello/host_collection.rb
267
265
  - lib/hammer_cli_katello/host_collection_erratum.rb
@@ -298,11 +296,11 @@ files:
298
296
  - lib/hammer_cli_katello/ping.rb
299
297
  - lib/hammer_cli_katello/product.rb
300
298
  - lib/hammer_cli_katello/product_content.rb
301
- - lib/hammer_cli_katello/puppet_module.rb
302
299
  - lib/hammer_cli_katello/repository.rb
303
300
  - lib/hammer_cli_katello/repository_scoped_to_product.rb
304
301
  - lib/hammer_cli_katello/repository_set.rb
305
302
  - lib/hammer_cli_katello/search_options_creators.rb
303
+ - lib/hammer_cli_katello/simple_content_access.rb
306
304
  - lib/hammer_cli_katello/srpm.rb
307
305
  - lib/hammer_cli_katello/status.rb
308
306
  - lib/hammer_cli_katello/subscription.rb
@@ -335,6 +333,7 @@ files:
335
333
  - test/data/3.16/foreman_api.json
336
334
  - test/data/3.17/foreman_api.json
337
335
  - test/data/3.18/foreman_api.json
336
+ - test/data/3.19/foreman_api.json
338
337
  - test/data/3.2/foreman_api.json
339
338
  - test/data/3.4/foreman_api.json
340
339
  - test/data/3.5/foreman_api.json
@@ -342,6 +341,7 @@ files:
342
341
  - test/data/3.7/foreman_api.json
343
342
  - test/data/3.8/foreman_api.json
344
343
  - test/data/3.9/foreman_api.json
344
+ - test/data/4.0/foreman_api.json
345
345
  - test/data/Readme.md
346
346
  - test/functional/activation_key/add_host_collection_test.rb
347
347
  - test/functional/activation_key/content_override_test.rb
@@ -367,6 +367,8 @@ files:
367
367
  - test/functional/capsule/content/synchronization_status_test.rb
368
368
  - test/functional/capsule/info_test.rb
369
369
  - test/functional/capsule/list_test.rb
370
+ - test/functional/content_credentials/create_test.rb
371
+ - test/functional/content_credentials/data/test_cert.json
370
372
  - test/functional/content_credentials/info_test.rb
371
373
  - test/functional/content_credentials/list_test.rb
372
374
  - test/functional/content_export/complete/library_test.rb
@@ -396,8 +398,6 @@ files:
396
398
  - test/functional/content_view/filter/update_test.rb
397
399
  - test/functional/content_view/list_test.rb
398
400
  - test/functional/content_view/publish_test.rb
399
- - test/functional/content_view/puppet_module/add_test.rb
400
- - test/functional/content_view/puppet_module/remove_test.rb
401
401
  - test/functional/content_view/purge_test.rb
402
402
  - test/functional/content_view/remove_content_view_version_test.rb
403
403
  - test/functional/content_view/remove_test.rb
@@ -422,7 +422,6 @@ files:
422
422
  - test/functional/filter_rule/info_test.rb
423
423
  - test/functional/filter_rule/list_test.rb
424
424
  - test/functional/filter_rule/update_test.rb
425
- - test/functional/gpg_test.rb
426
425
  - test/functional/host/errata/apply_test.rb
427
426
  - test/functional/host/errata/info_test.rb
428
427
  - test/functional/host/errata/list_test.rb
@@ -482,9 +481,6 @@ files:
482
481
  - test/functional/product/update_proxy.rb
483
482
  - test/functional/product/update_test.rb
484
483
  - test/functional/repository/create_test.rb
485
- - test/functional/repository/data/test_ca.json
486
- - test/functional/repository/data/test_cert.json
487
- - test/functional/repository/data/test_key.json
488
484
  - test/functional/repository/delete_test.rb
489
485
  - test/functional/repository/export_test.rb
490
486
  - test/functional/repository/info_test.rb
@@ -501,6 +497,8 @@ files:
501
497
  - test/functional/repository_set/list_test.rb
502
498
  - test/functional/repository_set/repository_set_helpers.rb
503
499
  - test/functional/search_helpers.rb
500
+ - test/functional/simple_content_access/disable_test.rb
501
+ - test/functional/simple_content_access/enable_test.rb
504
502
  - test/functional/srpm/list_test.rb
505
503
  - test/functional/subscription/list_test.rb
506
504
  - test/functional/sync_plan/create_test.rb
@@ -551,6 +549,7 @@ test_files:
551
549
  - test/data/3.16/foreman_api.json
552
550
  - test/data/3.17/foreman_api.json
553
551
  - test/data/3.18/foreman_api.json
552
+ - test/data/3.19/foreman_api.json
554
553
  - test/data/3.2/foreman_api.json
555
554
  - test/data/3.4/foreman_api.json
556
555
  - test/data/3.5/foreman_api.json
@@ -558,6 +557,7 @@ test_files:
558
557
  - test/data/3.7/foreman_api.json
559
558
  - test/data/3.8/foreman_api.json
560
559
  - test/data/3.9/foreman_api.json
560
+ - test/data/4.0/foreman_api.json
561
561
  - test/data/Readme.md
562
562
  - test/functional/activation_key/add_host_collection_test.rb
563
563
  - test/functional/activation_key/content_override_test.rb
@@ -583,6 +583,8 @@ test_files:
583
583
  - test/functional/capsule/content/synchronization_status_test.rb
584
584
  - test/functional/capsule/info_test.rb
585
585
  - test/functional/capsule/list_test.rb
586
+ - test/functional/content_credentials/create_test.rb
587
+ - test/functional/content_credentials/data/test_cert.json
586
588
  - test/functional/content_credentials/info_test.rb
587
589
  - test/functional/content_credentials/list_test.rb
588
590
  - test/functional/content_export/complete/library_test.rb
@@ -612,8 +614,6 @@ test_files:
612
614
  - test/functional/content_view/filter/update_test.rb
613
615
  - test/functional/content_view/list_test.rb
614
616
  - test/functional/content_view/publish_test.rb
615
- - test/functional/content_view/puppet_module/add_test.rb
616
- - test/functional/content_view/puppet_module/remove_test.rb
617
617
  - test/functional/content_view/purge_test.rb
618
618
  - test/functional/content_view/remove_content_view_version_test.rb
619
619
  - test/functional/content_view/remove_test.rb
@@ -638,7 +638,6 @@ test_files:
638
638
  - test/functional/filter_rule/info_test.rb
639
639
  - test/functional/filter_rule/list_test.rb
640
640
  - test/functional/filter_rule/update_test.rb
641
- - test/functional/gpg_test.rb
642
641
  - test/functional/host/errata/apply_test.rb
643
642
  - test/functional/host/errata/info_test.rb
644
643
  - test/functional/host/errata/list_test.rb
@@ -698,9 +697,6 @@ test_files:
698
697
  - test/functional/product/update_proxy.rb
699
698
  - test/functional/product/update_test.rb
700
699
  - test/functional/repository/create_test.rb
701
- - test/functional/repository/data/test_ca.json
702
- - test/functional/repository/data/test_cert.json
703
- - test/functional/repository/data/test_key.json
704
700
  - test/functional/repository/delete_test.rb
705
701
  - test/functional/repository/export_test.rb
706
702
  - test/functional/repository/info_test.rb
@@ -717,6 +713,8 @@ test_files:
717
713
  - test/functional/repository_set/list_test.rb
718
714
  - test/functional/repository_set/repository_set_helpers.rb
719
715
  - test/functional/search_helpers.rb
716
+ - test/functional/simple_content_access/disable_test.rb
717
+ - test/functional/simple_content_access/enable_test.rb
720
718
  - test/functional/srpm/list_test.rb
721
719
  - test/functional/subscription/list_test.rb
722
720
  - test/functional/sync_plan/create_test.rb
@@ -1,60 +0,0 @@
1
- module HammerCLIKatello
2
- class ContentViewPuppetModule < HammerCLIKatello::Command
3
- resource :content_view_puppet_modules
4
- command_name 'puppet-module'
5
- desc 'View and manage puppet modules'
6
-
7
- class ListCommand < HammerCLIKatello::ListCommand
8
- include OrganizationOptions
9
-
10
- output do
11
- field :uuid, _("UUID")
12
- field :name, _("Name")
13
- field :author, _("Author")
14
- field :version, _("Version")
15
- end
16
-
17
- def extend_data(mod)
18
- mod['version'] = if mod['uuid']
19
- mod['computed_version']
20
- else
21
- _("Latest(Currently %s)") % mod['computed_version']
22
- end
23
- mod
24
- end
25
-
26
- build_options
27
- end
28
-
29
- class CreateCommand < HammerCLIKatello::CreateCommand
30
- include OrganizationOptions
31
-
32
- command_name "add"
33
-
34
- success_message _("Puppet module added to content view.")
35
- failure_message _("Could not add the puppet module")
36
-
37
- build_options
38
-
39
- def get_identifier(*)
40
- # This will intentionally disable the id resolver. Without it, if the user were to
41
- # execute the 'add' command specifying a 'name', the id resolver will attempt to
42
- # translate the 'name' to an 'id'. That is not desirable for this command.
43
- nil
44
- end
45
- end
46
-
47
- class DeleteCommand < HammerCLIKatello::DeleteCommand
48
- include OrganizationOptions
49
-
50
- command_name "remove"
51
-
52
- success_message _("Puppet module removed from content view.")
53
- failure_message _("Couldn't remove puppet module from the content view")
54
-
55
- build_options
56
- end
57
-
58
- autoload_subcommands
59
- end
60
- end
@@ -1,67 +0,0 @@
1
- module HammerCLIKatello
2
- class GpgKeyCommand < HammerCLIForeman::Command
3
- resource :gpg_keys
4
-
5
- class ListCommand < HammerCLIKatello::ListCommand
6
- output do
7
- field :id, _("ID")
8
- field :name, _("Name")
9
- end
10
-
11
- build_options
12
- end
13
-
14
- class InfoCommand < HammerCLIKatello::InfoCommand
15
- output do
16
- field :id, _("ID")
17
- field :name, _("Name")
18
- from :organization do
19
- field :name, _("Organization")
20
- end
21
-
22
- collection :repositories, "Repositories" do
23
- field :id, _("ID")
24
- field :name, _("Name")
25
- field :content_type, _("Content Type")
26
- from :product do
27
- field :name, _("Product")
28
- end
29
- end
30
-
31
- field :content, _("Content"), Fields::LongText
32
- end
33
-
34
- build_options
35
- end
36
-
37
- class CreateCommand < HammerCLIKatello::CreateCommand
38
- success_message _("GPG Key created.")
39
- failure_message _("Could not create GPG Key")
40
-
41
- build_options :without => [:content]
42
- option "--key", "GPG_KEY_FILE", _("GPG Key file"),
43
- :attribute_name => :option_content,
44
- :required => true,
45
- :format => HammerCLI::Options::Normalizers::File.new
46
- end
47
-
48
- class UpdateCommand < HammerCLIKatello::UpdateCommand
49
- success_message _("GPG Key updated.")
50
- failure_message _("Could not update GPG Key")
51
-
52
- build_options :without => [:content]
53
- option "--key", "GPG_KEY_FILE", _("GPG Key file"),
54
- :attribute_name => :option_content,
55
- :format => HammerCLI::Options::Normalizers::File.new
56
- end
57
-
58
- class DeleteCommand < HammerCLIKatello::DeleteCommand
59
- success_message _("GPG Key deleted.")
60
- failure_message _("Could not delete the GPG Key")
61
-
62
- build_options
63
- end
64
-
65
- autoload_subcommands
66
- end
67
- end
@@ -1,59 +0,0 @@
1
- module HammerCLIKatello
2
- class PuppetModule < HammerCLIKatello::Command
3
- resource :puppet_modules
4
-
5
- class ListCommand < HammerCLIKatello::ListCommand
6
- extend RepositoryScopedToProduct
7
-
8
- validate_repo_name_requires_product_options(:option_repository_name)
9
-
10
- output do
11
- field :id, _("ID")
12
- field :name, _("Name")
13
- field :author, _("Author")
14
- field :version, _("Version")
15
- field :uuid, _("Uuid")
16
- end
17
-
18
- build_options do |o|
19
- o.expand(:all).including(:organizations, :products, :content_views)
20
- end
21
- end
22
-
23
- class InfoCommand < HammerCLIKatello::InfoCommand
24
- output do
25
- field :id, _("ID")
26
- field :name, _("Name")
27
- field :version, _("Version")
28
- field :author, _("Author")
29
- field :uuid, _("Uuid")
30
-
31
- field :summary, _("Summary")
32
- field :description, _("Description")
33
- field :license, _("License")
34
- field :project_page, _("Project Page")
35
- field :source, _("Source")
36
-
37
- collection :dependencies, _("Dependencies"), :numbered => false do
38
- field nil, nil, HammerCLIKatello::Output::Fields::Dependency
39
- end
40
- collection :checksums, _("File checksums"), :numbered => false do
41
- field nil, nil, HammerCLIKatello::Output::Fields::ChecksumFilePair
42
- end
43
-
44
- field :tag_list, _("Tag List"), Fields::List
45
-
46
- collection :repositories, _("Repositories") do
47
- field :id, _("Id")
48
- field :name, _("Name")
49
- end
50
- end
51
-
52
- build_options do |o|
53
- o.expand(:all).including(:organizations)
54
- end
55
- end
56
-
57
- autoload_subcommands
58
- end
59
- end
@@ -1,24 +0,0 @@
1
- require_relative '../../test_helper'
2
- require 'hammer_cli_katello/content_view_puppet_module'
3
-
4
- module HammerCLIKatello
5
- describe ContentViewPuppetModule do
6
- it 'allows adding a puppet module' do
7
- ex = api_expects(:organizations, :index) do |p|
8
- p[:search] == "name = \"org1\""
9
- end
10
- ex.returns(index_response([{'id' => 1}]))
11
-
12
- ex = api_expects(:content_views, :index) do |p|
13
- p['name'] == 'cv' && p['organization_id'] == 1
14
- end
15
- ex.returns(index_response([{'id' => 3}]))
16
-
17
- api_expects(:content_view_puppet_modules, :create) do |p|
18
- p['content_view_id'] == 3
19
- end
20
-
21
- run_cmd(%w(content-view puppet-module add --organization org1 --content-view cv --id 1))
22
- end
23
- end
24
- end
@@ -1,54 +0,0 @@
1
- require_relative '../../test_helper'
2
- require_relative '../../content_view/content_view_helpers'
3
- require_relative '../../organization/organization_helpers'
4
- require 'hammer_cli_katello/content_view_puppet_module'
5
-
6
- module HammerCLIKatello
7
- describe ContentViewPuppetModule::DeleteCommand do
8
- include ContentViewHelpers
9
- include OrganizationHelpers
10
-
11
- def expect_module_destroy(opts)
12
- api_expects(:content_view_puppet_modules, :destroy).with_params(opts[:params])
13
- end
14
-
15
- it 'allows minimal options' do
16
- expect_module_destroy(params: {'content_view_id' => 1, 'id' => 2})
17
-
18
- run_cmd(%w(content-view puppet-module remove --content-view-id 1 --id 2))
19
- end
20
-
21
- it 'resolves puppet module ID from UUID' do
22
- expect_generic_search(:content_view_puppet_modules,
23
- params: {'uuid' => 'abcd1234', 'content_view_id' => 1},
24
- returns: {'id' => 2})
25
- expect_module_destroy(params: {'content_view_id' => 1, 'id' => 2})
26
-
27
- run_cmd(%w(content-view puppet-module remove --content-view-id 1 --uuid abcd1234))
28
- end
29
-
30
- it 'resolves content view ID from name' do
31
- expect_content_view_search('3', 'cv1', 1)
32
- expect_module_destroy(params: {'content_view_id' => 1, 'id' => 2})
33
-
34
- run_cmd(%w(content-view puppet-module remove --content-view cv1 --organization-id 3 --id 2))
35
- end
36
-
37
- it 'resolves organization ID from name' do
38
- expect_organization_search('org3', 3)
39
- expect_content_view_search(3, 'cv1', 1)
40
- expect_module_destroy(params: {'content_view_id' => 1, 'id' => 2})
41
-
42
- run_cmd(%w(content-view puppet-module remove --content-view cv1 --organization org3 --id 2))
43
- end
44
-
45
- it 'resolves organization ID from label' do
46
- expect_organization_search('org3', 3, field: 'label')
47
- expect_content_view_search(3, 'cv1', 1)
48
- expect_module_destroy(params: {'content_view_id' => 1, 'id' => 2})
49
-
50
- run_cmd(%w(content-view puppet-module remove --content-view cv1 --organization-label
51
- org3 --id 2))
52
- end
53
- end
54
- end