hammer_cli_katello 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hammer_cli_katello/acs.rb +82 -0
- data/lib/hammer_cli_katello/activation_key.rb +8 -2
- data/lib/hammer_cli_katello/content_export.rb +39 -0
- data/lib/hammer_cli_katello/content_export_helper.rb +64 -6
- data/lib/hammer_cli_katello/host_subscription.rb +32 -0
- data/lib/hammer_cli_katello/organization.rb +4 -0
- data/lib/hammer_cli_katello/repository.rb +1 -1
- data/lib/hammer_cli_katello/simple_content_access.rb +10 -0
- data/lib/hammer_cli_katello/version.rb +1 -1
- data/lib/hammer_cli_katello.rb +5 -0
- data/test/data/2.5/foreman_api.json +1 -0
- data/test/data/3.0/foreman_api.json +1 -0
- data/test/data/3.10/foreman_api.json +1 -0
- data/test/data/3.11/foreman_api.json +1 -0
- data/test/data/3.12/foreman_api.json +1 -0
- data/test/data/3.13/foreman_api.json +1 -0
- data/test/data/3.14/foreman_api.json +1 -0
- data/test/data/3.15/foreman_api.json +1 -0
- data/test/data/3.16/foreman_api.json +1 -0
- data/test/data/3.17/foreman_api.json +1 -0
- data/test/data/3.18/foreman_api.json +1 -0
- data/test/data/3.19/foreman_api.json +1 -0
- data/test/data/3.2/foreman_api.json +1 -0
- data/test/data/3.4/foreman_api.json +1 -0
- data/test/data/3.5/foreman_api.json +1 -0
- data/test/data/3.6/foreman_api.json +1 -0
- data/test/data/3.7/foreman_api.json +1 -0
- data/test/data/3.8/foreman_api.json +1 -0
- data/test/data/3.9/foreman_api.json +1 -0
- data/test/data/4.0/foreman_api.json +1 -0
- data/test/data/4.1/foreman_api.json +1 -0
- data/test/data/4.3/foreman_api.json +1 -0
- data/test/data/4.4/foreman_api.json +1 -0
- data/test/data/4.5/foreman_api.json +1 -0
- data/test/data/4.6/foreman_api.json +1 -0
- data/test/data/Readme.md +5 -0
- data/test/functional/acs/create_test.rb +27 -0
- data/test/functional/acs/delete_test.rb +13 -0
- data/test/functional/acs/info_test.rb +94 -0
- data/test/functional/acs/list_test.rb +62 -0
- data/test/functional/acs/update_test.rb +23 -0
- data/test/functional/activation_key/add_host_collection_test.rb +62 -0
- data/test/functional/activation_key/content_override_test.rb +92 -0
- data/test/functional/activation_key/create_test.rb +33 -0
- data/test/functional/activation_key/data/activation_key.json +17 -0
- data/test/functional/activation_key/info_test.rb +29 -0
- data/test/functional/activation_key/list_test.rb +68 -0
- data/test/functional/activation_key/product_content_test.rb +23 -0
- data/test/functional/activation_key/remove_host_collection_test.rb +62 -0
- data/test/functional/activation_key/subscriptions_test.rb +74 -0
- data/test/functional/activation_key/update_test.rb +26 -0
- data/test/functional/apipie_helper_test.rb +31 -0
- data/test/functional/capsule/capsule_helpers.rb +13 -0
- data/test/functional/capsule/content/add_lifecycle_environment_test.rb +40 -0
- data/test/functional/capsule/content/cancel_synchronization_test.rb +42 -0
- data/test/functional/capsule/content/capsule_content_helpers.rb +24 -0
- data/test/functional/capsule/content/data/library_env.json +47 -0
- data/test/functional/capsule/content/data/sync_status.json +6 -0
- data/test/functional/capsule/content/data/sync_tasks.json +62 -0
- data/test/functional/capsule/content/info_test.rb +61 -0
- data/test/functional/capsule/content/lifecycle_environments_test.rb +19 -0
- data/test/functional/capsule/content/remove_lifecycle_environment_test.rb +40 -0
- data/test/functional/capsule/content/synchronization_status_test.rb +107 -0
- data/test/functional/capsule/info_test.rb +25 -0
- data/test/functional/capsule/list_test.rb +24 -0
- data/test/functional/content_credentials/create_test.rb +32 -0
- data/test/functional/content_credentials/data/test_cert.json +43 -0
- data/test/functional/content_credentials/info_test.rb +50 -0
- data/test/functional/content_credentials/list_test.rb +66 -0
- data/test/functional/content_export/complete/library_test.rb +155 -0
- data/test/functional/content_export/complete/repository_test.rb +226 -0
- data/test/functional/content_export/complete/version_test.rb +297 -0
- data/test/functional/content_export/content_export_helpers.rb +33 -0
- data/test/functional/content_export/generate_listing_test.rb +62 -0
- data/test/functional/content_export/generate_metadata_test.rb +64 -0
- data/test/functional/content_export/incremental/library_test.rb +172 -0
- data/test/functional/content_export/incremental/repository_test.rb +212 -0
- data/test/functional/content_export/incremental/version_test.rb +268 -0
- data/test/functional/content_export/list_test.rb +64 -0
- data/test/functional/content_import/library_test.rb +85 -0
- data/test/functional/content_import/list_test.rb +65 -0
- data/test/functional/content_import/metadata.json +1 -0
- data/test/functional/content_import/version_test.rb +85 -0
- data/test/functional/content_units/info_test.rb +29 -0
- data/test/functional/content_units/list_test.rb +106 -0
- data/test/functional/content_view/add_content_view_version_test.rb +88 -0
- data/test/functional/content_view/add_repository_test.rb +21 -0
- data/test/functional/content_view/component/add_test.rb +177 -0
- data/test/functional/content_view/component/list_test.rb +55 -0
- data/test/functional/content_view/component/remove_test.rb +107 -0
- data/test/functional/content_view/component/update_test.rb +134 -0
- data/test/functional/content_view/content_view_helpers.rb +20 -0
- data/test/functional/content_view/copy_test.rb +53 -0
- data/test/functional/content_view/create_test.rb +34 -0
- data/test/functional/content_view/delete_test.rb +62 -0
- data/test/functional/content_view/filter/create_test.rb +57 -0
- data/test/functional/content_view/filter/delete_test.rb +90 -0
- data/test/functional/content_view/filter/info_test.rb +89 -0
- data/test/functional/content_view/filter/list_test.rb +98 -0
- data/test/functional/content_view/filter/update_test.rb +91 -0
- data/test/functional/content_view/list_test.rb +68 -0
- data/test/functional/content_view/publish_test.rb +24 -0
- data/test/functional/content_view/purge_test.rb +97 -0
- data/test/functional/content_view/remove_content_view_version_test.rb +88 -0
- data/test/functional/content_view/remove_test.rb +79 -0
- data/test/functional/content_view/update_test.rb +53 -0
- data/test/functional/content_view/version/incremental_update_test.rb +108 -0
- data/test/functional/content_view/version/list_test.rb +44 -0
- data/test/functional/content_view/version/promote_test.rb +75 -0
- data/test/functional/content_view/version/republish_repositories_test.rb +34 -0
- data/test/functional/content_view/version/update_test.rb +48 -0
- data/test/functional/erratum/erratum_helpers.rb +91 -0
- data/test/functional/erratum/info_test.rb +29 -0
- data/test/functional/erratum/list_test.rb +108 -0
- data/test/functional/file/file_helpers.rb +13 -0
- data/test/functional/file/info_test.rb +162 -0
- data/test/functional/file/list_test.rb +112 -0
- data/test/functional/filter_rule/create_test.rb +99 -0
- data/test/functional/filter_rule/delete_test.rb +104 -0
- data/test/functional/filter_rule/filter_rule_helpers.rb +12 -0
- data/test/functional/filter_rule/info_test.rb +104 -0
- data/test/functional/filter_rule/list_test.rb +91 -0
- data/test/functional/filter_rule/update_test.rb +104 -0
- data/test/functional/host/errata/apply_test.rb +45 -0
- data/test/functional/host/errata/info_test.rb +27 -0
- data/test/functional/host/errata/list_test.rb +49 -0
- data/test/functional/host/errata/recalculate_test.rb +26 -0
- data/test/functional/host/extensions/create_test.rb +95 -0
- data/test/functional/host/extensions/data/host.json +320 -0
- data/test/functional/host/extensions/data/host_list.json +117 -0
- data/test/functional/host/extensions/info_test.rb +35 -0
- data/test/functional/host/extensions/list_test.rb +21 -0
- data/test/functional/host/extensions/update_test.rb +70 -0
- data/test/functional/host/host_helpers.rb +8 -0
- data/test/functional/host/subscription/attach_test.rb +54 -0
- data/test/functional/host/subscription/auto_attach_test.rb +35 -0
- data/test/functional/host/subscription/content_override_test.rb +96 -0
- data/test/functional/host/subscription/enabled_repositories_test.rb +39 -0
- data/test/functional/host/subscription/product_content_test.rb +27 -0
- data/test/functional/host/subscription/register_test.rb +53 -0
- data/test/functional/host/subscription/remove_test.rb +52 -0
- data/test/functional/host/subscription/unregister_test.rb +37 -0
- data/test/functional/host/traces/list_test.rb +37 -0
- data/test/functional/host/traces/resolve_test.rb +31 -0
- data/test/functional/host_collection/add_host_test.rb +90 -0
- data/test/functional/host_collection/content_api_expectations.rb +35 -0
- data/test/functional/host_collection/content_install_test.rb +62 -0
- data/test/functional/host_collection/content_remove_test.rb +37 -0
- data/test/functional/host_collection/content_update_test.rb +37 -0
- data/test/functional/host_collection/copy_test.rb +64 -0
- data/test/functional/host_collection/create_test.rb +54 -0
- data/test/functional/host_collection/delete_test.rb +57 -0
- data/test/functional/host_collection/hosts_test.rb +39 -0
- data/test/functional/host_collection/info_test.rb +57 -0
- data/test/functional/host_collection/list_test.rb +63 -0
- data/test/functional/host_collection/remove_host_test.rb +90 -0
- data/test/functional/host_collection/update_test.rb +57 -0
- data/test/functional/hostgroup/create_test.rb +112 -0
- data/test/functional/hostgroup/data/hostgroup.json +50 -0
- data/test/functional/hostgroup/info_test.rb +33 -0
- data/test/functional/hostgroup/update_test.rb +120 -0
- data/test/functional/lifecycle_environment/create_test.rb +14 -0
- data/test/functional/lifecycle_environment/lifecycle_environment_helpers.rb +18 -0
- data/test/functional/lifecycle_environment/list_test.rb +38 -0
- data/test/functional/lifecycle_environment/update_test.rb +14 -0
- data/test/functional/local_helper_test.rb +30 -0
- data/test/functional/module_stream/info_test.rb +58 -0
- data/test/functional/module_stream/list_test.rb +53 -0
- data/test/functional/organization/cdn_configuration_test.rb +45 -0
- data/test/functional/organization/delete_test.rb +26 -0
- data/test/functional/organization/info_test.rb +45 -0
- data/test/functional/organization/organization_helpers.rb +10 -0
- data/test/functional/package/list_test.rb +160 -0
- data/test/functional/package_group/list_test.rb +38 -0
- data/test/functional/ping_test.rb +61 -0
- data/test/functional/product/create_test.rb +54 -0
- data/test/functional/product/delete_test.rb +41 -0
- data/test/functional/product/info_test.rb +33 -0
- data/test/functional/product/list_test.rb +58 -0
- data/test/functional/product/product_helpers.rb +24 -0
- data/test/functional/product/remove_sync_plan_test.rb +35 -0
- data/test/functional/product/set_sync_plan_test.rb +49 -0
- data/test/functional/product/update_proxy.rb +48 -0
- data/test/functional/product/update_test.rb +46 -0
- data/test/functional/repository/create_test.rb +21 -0
- data/test/functional/repository/delete_test.rb +95 -0
- data/test/functional/repository/info_test.rb +156 -0
- data/test/functional/repository/list_test.rb +68 -0
- data/test/functional/repository/reclaim_space_test.rb +105 -0
- data/test/functional/repository/remove_content_test.rb +108 -0
- data/test/functional/repository/repository_helpers.rb +18 -0
- data/test/functional/repository/republish_test.rb +37 -0
- data/test/functional/repository/synchronize_test.rb +57 -0
- data/test/functional/repository/update_test.rb +150 -0
- data/test/functional/repository/upload_test.rb +368 -0
- data/test/functional/repository_set/available_repositories_test.rb +18 -0
- data/test/functional/repository_set/disable_test.rb +48 -0
- data/test/functional/repository_set/enable_test.rb +42 -0
- data/test/functional/repository_set/info_test.rb +17 -0
- data/test/functional/repository_set/list_test.rb +18 -0
- data/test/functional/repository_set/repository_set_helpers.rb +20 -0
- data/test/functional/search_helpers.rb +17 -0
- data/test/functional/simple_content_access/disable_test.rb +48 -0
- data/test/functional/simple_content_access/enable_test.rb +46 -0
- data/test/functional/simple_content_access/status_test.rb +29 -0
- data/test/functional/srpm/list_test.rb +92 -0
- data/test/functional/subscription/list_test.rb +86 -0
- data/test/functional/sync_plan/create_test.rb +60 -0
- data/test/functional/sync_plan/delete_test.rb +46 -0
- data/test/functional/sync_plan/info_test.rb +37 -0
- data/test/functional/sync_plan/list_test.rb +31 -0
- data/test/functional/sync_plan/sync_plan_helpers.rb +8 -0
- data/test/functional/sync_plan/update_test.rb +44 -0
- data/test/functional/test_helper.rb +24 -0
- data/test/task_helper.rb +7 -0
- data/test/test_helper.rb +38 -0
- data/test/unit/id_name_options_validator_test.rb +96 -0
- data/test/unit/id_resolver_test.rb +58 -0
- data/test/unit/messages_test.rb +7 -0
- data/test/unit/search_options_creators_test.rb +145 -0
- metadata +425 -4
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: 1.
|
4
|
+
version: 1.6.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: 2022-
|
38
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: hammer_cli_foreman
|
@@ -201,6 +201,7 @@ extra_rdoc_files: []
|
|
201
201
|
files:
|
202
202
|
- config/katello.yml
|
203
203
|
- lib/hammer_cli_katello.rb
|
204
|
+
- lib/hammer_cli_katello/acs.rb
|
204
205
|
- lib/hammer_cli_katello/activation_key.rb
|
205
206
|
- lib/hammer_cli_katello/apipie_helper.rb
|
206
207
|
- lib/hammer_cli_katello/associating_commands.rb
|
@@ -296,6 +297,216 @@ files:
|
|
296
297
|
- locale/zanata.xml
|
297
298
|
- locale/zh_CN/hammer-cli-katello.po
|
298
299
|
- locale/zh_TW/hammer-cli-katello.po
|
300
|
+
- test/data/2.5/foreman_api.json
|
301
|
+
- test/data/3.0/foreman_api.json
|
302
|
+
- test/data/3.10/foreman_api.json
|
303
|
+
- test/data/3.11/foreman_api.json
|
304
|
+
- test/data/3.12/foreman_api.json
|
305
|
+
- test/data/3.13/foreman_api.json
|
306
|
+
- test/data/3.14/foreman_api.json
|
307
|
+
- test/data/3.15/foreman_api.json
|
308
|
+
- test/data/3.16/foreman_api.json
|
309
|
+
- test/data/3.17/foreman_api.json
|
310
|
+
- test/data/3.18/foreman_api.json
|
311
|
+
- test/data/3.19/foreman_api.json
|
312
|
+
- test/data/3.2/foreman_api.json
|
313
|
+
- test/data/3.4/foreman_api.json
|
314
|
+
- test/data/3.5/foreman_api.json
|
315
|
+
- test/data/3.6/foreman_api.json
|
316
|
+
- test/data/3.7/foreman_api.json
|
317
|
+
- test/data/3.8/foreman_api.json
|
318
|
+
- test/data/3.9/foreman_api.json
|
319
|
+
- test/data/4.0/foreman_api.json
|
320
|
+
- test/data/4.1/foreman_api.json
|
321
|
+
- test/data/4.3/foreman_api.json
|
322
|
+
- test/data/4.4/foreman_api.json
|
323
|
+
- test/data/4.5/foreman_api.json
|
324
|
+
- test/data/4.6/foreman_api.json
|
325
|
+
- test/data/Readme.md
|
326
|
+
- test/functional/acs/create_test.rb
|
327
|
+
- test/functional/acs/delete_test.rb
|
328
|
+
- test/functional/acs/info_test.rb
|
329
|
+
- test/functional/acs/list_test.rb
|
330
|
+
- test/functional/acs/update_test.rb
|
331
|
+
- test/functional/activation_key/add_host_collection_test.rb
|
332
|
+
- test/functional/activation_key/content_override_test.rb
|
333
|
+
- test/functional/activation_key/create_test.rb
|
334
|
+
- test/functional/activation_key/data/activation_key.json
|
335
|
+
- test/functional/activation_key/info_test.rb
|
336
|
+
- test/functional/activation_key/list_test.rb
|
337
|
+
- test/functional/activation_key/product_content_test.rb
|
338
|
+
- test/functional/activation_key/remove_host_collection_test.rb
|
339
|
+
- test/functional/activation_key/subscriptions_test.rb
|
340
|
+
- test/functional/activation_key/update_test.rb
|
341
|
+
- test/functional/apipie_helper_test.rb
|
342
|
+
- test/functional/capsule/capsule_helpers.rb
|
343
|
+
- test/functional/capsule/content/add_lifecycle_environment_test.rb
|
344
|
+
- test/functional/capsule/content/cancel_synchronization_test.rb
|
345
|
+
- test/functional/capsule/content/capsule_content_helpers.rb
|
346
|
+
- test/functional/capsule/content/data/library_env.json
|
347
|
+
- test/functional/capsule/content/data/sync_status.json
|
348
|
+
- test/functional/capsule/content/data/sync_tasks.json
|
349
|
+
- test/functional/capsule/content/info_test.rb
|
350
|
+
- test/functional/capsule/content/lifecycle_environments_test.rb
|
351
|
+
- test/functional/capsule/content/remove_lifecycle_environment_test.rb
|
352
|
+
- test/functional/capsule/content/synchronization_status_test.rb
|
353
|
+
- test/functional/capsule/info_test.rb
|
354
|
+
- test/functional/capsule/list_test.rb
|
355
|
+
- test/functional/content_credentials/create_test.rb
|
356
|
+
- test/functional/content_credentials/data/test_cert.json
|
357
|
+
- test/functional/content_credentials/info_test.rb
|
358
|
+
- test/functional/content_credentials/list_test.rb
|
359
|
+
- test/functional/content_export/complete/library_test.rb
|
360
|
+
- test/functional/content_export/complete/repository_test.rb
|
361
|
+
- test/functional/content_export/complete/version_test.rb
|
362
|
+
- test/functional/content_export/content_export_helpers.rb
|
363
|
+
- test/functional/content_export/generate_listing_test.rb
|
364
|
+
- test/functional/content_export/generate_metadata_test.rb
|
365
|
+
- test/functional/content_export/incremental/library_test.rb
|
366
|
+
- test/functional/content_export/incremental/repository_test.rb
|
367
|
+
- test/functional/content_export/incremental/version_test.rb
|
368
|
+
- test/functional/content_export/list_test.rb
|
369
|
+
- test/functional/content_import/library_test.rb
|
370
|
+
- test/functional/content_import/list_test.rb
|
371
|
+
- test/functional/content_import/metadata.json
|
372
|
+
- test/functional/content_import/version_test.rb
|
373
|
+
- test/functional/content_units/info_test.rb
|
374
|
+
- test/functional/content_units/list_test.rb
|
375
|
+
- test/functional/content_view/add_content_view_version_test.rb
|
376
|
+
- test/functional/content_view/add_repository_test.rb
|
377
|
+
- test/functional/content_view/component/add_test.rb
|
378
|
+
- test/functional/content_view/component/list_test.rb
|
379
|
+
- test/functional/content_view/component/remove_test.rb
|
380
|
+
- test/functional/content_view/component/update_test.rb
|
381
|
+
- test/functional/content_view/content_view_helpers.rb
|
382
|
+
- test/functional/content_view/copy_test.rb
|
383
|
+
- test/functional/content_view/create_test.rb
|
384
|
+
- test/functional/content_view/delete_test.rb
|
385
|
+
- test/functional/content_view/filter/create_test.rb
|
386
|
+
- test/functional/content_view/filter/delete_test.rb
|
387
|
+
- test/functional/content_view/filter/info_test.rb
|
388
|
+
- test/functional/content_view/filter/list_test.rb
|
389
|
+
- test/functional/content_view/filter/update_test.rb
|
390
|
+
- test/functional/content_view/list_test.rb
|
391
|
+
- test/functional/content_view/publish_test.rb
|
392
|
+
- test/functional/content_view/purge_test.rb
|
393
|
+
- test/functional/content_view/remove_content_view_version_test.rb
|
394
|
+
- test/functional/content_view/remove_test.rb
|
395
|
+
- test/functional/content_view/update_test.rb
|
396
|
+
- test/functional/content_view/version/incremental_update_test.rb
|
397
|
+
- test/functional/content_view/version/list_test.rb
|
398
|
+
- test/functional/content_view/version/promote_test.rb
|
399
|
+
- test/functional/content_view/version/republish_repositories_test.rb
|
400
|
+
- test/functional/content_view/version/update_test.rb
|
401
|
+
- test/functional/erratum/erratum_helpers.rb
|
402
|
+
- test/functional/erratum/info_test.rb
|
403
|
+
- test/functional/erratum/list_test.rb
|
404
|
+
- test/functional/file/file_helpers.rb
|
405
|
+
- test/functional/file/info_test.rb
|
406
|
+
- test/functional/file/list_test.rb
|
407
|
+
- test/functional/filter_rule/create_test.rb
|
408
|
+
- test/functional/filter_rule/delete_test.rb
|
409
|
+
- test/functional/filter_rule/filter_rule_helpers.rb
|
410
|
+
- test/functional/filter_rule/info_test.rb
|
411
|
+
- test/functional/filter_rule/list_test.rb
|
412
|
+
- test/functional/filter_rule/update_test.rb
|
413
|
+
- test/functional/host/errata/apply_test.rb
|
414
|
+
- test/functional/host/errata/info_test.rb
|
415
|
+
- test/functional/host/errata/list_test.rb
|
416
|
+
- test/functional/host/errata/recalculate_test.rb
|
417
|
+
- test/functional/host/extensions/create_test.rb
|
418
|
+
- test/functional/host/extensions/data/host.json
|
419
|
+
- test/functional/host/extensions/data/host_list.json
|
420
|
+
- test/functional/host/extensions/info_test.rb
|
421
|
+
- test/functional/host/extensions/list_test.rb
|
422
|
+
- test/functional/host/extensions/update_test.rb
|
423
|
+
- test/functional/host/host_helpers.rb
|
424
|
+
- test/functional/host/subscription/attach_test.rb
|
425
|
+
- test/functional/host/subscription/auto_attach_test.rb
|
426
|
+
- test/functional/host/subscription/content_override_test.rb
|
427
|
+
- test/functional/host/subscription/enabled_repositories_test.rb
|
428
|
+
- test/functional/host/subscription/product_content_test.rb
|
429
|
+
- test/functional/host/subscription/register_test.rb
|
430
|
+
- test/functional/host/subscription/remove_test.rb
|
431
|
+
- test/functional/host/subscription/unregister_test.rb
|
432
|
+
- test/functional/host/traces/list_test.rb
|
433
|
+
- test/functional/host/traces/resolve_test.rb
|
434
|
+
- test/functional/host_collection/add_host_test.rb
|
435
|
+
- test/functional/host_collection/content_api_expectations.rb
|
436
|
+
- test/functional/host_collection/content_install_test.rb
|
437
|
+
- test/functional/host_collection/content_remove_test.rb
|
438
|
+
- test/functional/host_collection/content_update_test.rb
|
439
|
+
- test/functional/host_collection/copy_test.rb
|
440
|
+
- test/functional/host_collection/create_test.rb
|
441
|
+
- test/functional/host_collection/delete_test.rb
|
442
|
+
- test/functional/host_collection/hosts_test.rb
|
443
|
+
- test/functional/host_collection/info_test.rb
|
444
|
+
- test/functional/host_collection/list_test.rb
|
445
|
+
- test/functional/host_collection/remove_host_test.rb
|
446
|
+
- test/functional/host_collection/update_test.rb
|
447
|
+
- test/functional/hostgroup/create_test.rb
|
448
|
+
- test/functional/hostgroup/data/hostgroup.json
|
449
|
+
- test/functional/hostgroup/info_test.rb
|
450
|
+
- test/functional/hostgroup/update_test.rb
|
451
|
+
- test/functional/lifecycle_environment/create_test.rb
|
452
|
+
- test/functional/lifecycle_environment/lifecycle_environment_helpers.rb
|
453
|
+
- test/functional/lifecycle_environment/list_test.rb
|
454
|
+
- test/functional/lifecycle_environment/update_test.rb
|
455
|
+
- test/functional/local_helper_test.rb
|
456
|
+
- test/functional/module_stream/info_test.rb
|
457
|
+
- test/functional/module_stream/list_test.rb
|
458
|
+
- test/functional/organization/cdn_configuration_test.rb
|
459
|
+
- test/functional/organization/delete_test.rb
|
460
|
+
- test/functional/organization/info_test.rb
|
461
|
+
- test/functional/organization/organization_helpers.rb
|
462
|
+
- test/functional/package/list_test.rb
|
463
|
+
- test/functional/package_group/list_test.rb
|
464
|
+
- test/functional/ping_test.rb
|
465
|
+
- test/functional/product/create_test.rb
|
466
|
+
- test/functional/product/delete_test.rb
|
467
|
+
- test/functional/product/info_test.rb
|
468
|
+
- test/functional/product/list_test.rb
|
469
|
+
- test/functional/product/product_helpers.rb
|
470
|
+
- test/functional/product/remove_sync_plan_test.rb
|
471
|
+
- test/functional/product/set_sync_plan_test.rb
|
472
|
+
- test/functional/product/update_proxy.rb
|
473
|
+
- test/functional/product/update_test.rb
|
474
|
+
- test/functional/repository/create_test.rb
|
475
|
+
- test/functional/repository/delete_test.rb
|
476
|
+
- test/functional/repository/info_test.rb
|
477
|
+
- test/functional/repository/list_test.rb
|
478
|
+
- test/functional/repository/reclaim_space_test.rb
|
479
|
+
- test/functional/repository/remove_content_test.rb
|
480
|
+
- test/functional/repository/repository_helpers.rb
|
481
|
+
- test/functional/repository/republish_test.rb
|
482
|
+
- test/functional/repository/synchronize_test.rb
|
483
|
+
- test/functional/repository/update_test.rb
|
484
|
+
- test/functional/repository/upload_test.rb
|
485
|
+
- test/functional/repository_set/available_repositories_test.rb
|
486
|
+
- test/functional/repository_set/disable_test.rb
|
487
|
+
- test/functional/repository_set/enable_test.rb
|
488
|
+
- test/functional/repository_set/info_test.rb
|
489
|
+
- test/functional/repository_set/list_test.rb
|
490
|
+
- test/functional/repository_set/repository_set_helpers.rb
|
491
|
+
- test/functional/search_helpers.rb
|
492
|
+
- test/functional/simple_content_access/disable_test.rb
|
493
|
+
- test/functional/simple_content_access/enable_test.rb
|
494
|
+
- test/functional/simple_content_access/status_test.rb
|
495
|
+
- test/functional/srpm/list_test.rb
|
496
|
+
- test/functional/subscription/list_test.rb
|
497
|
+
- test/functional/sync_plan/create_test.rb
|
498
|
+
- test/functional/sync_plan/delete_test.rb
|
499
|
+
- test/functional/sync_plan/info_test.rb
|
500
|
+
- test/functional/sync_plan/list_test.rb
|
501
|
+
- test/functional/sync_plan/sync_plan_helpers.rb
|
502
|
+
- test/functional/sync_plan/update_test.rb
|
503
|
+
- test/functional/test_helper.rb
|
504
|
+
- test/task_helper.rb
|
505
|
+
- test/test_helper.rb
|
506
|
+
- test/unit/id_name_options_validator_test.rb
|
507
|
+
- test/unit/id_resolver_test.rb
|
508
|
+
- test/unit/messages_test.rb
|
509
|
+
- test/unit/search_options_creators_test.rb
|
299
510
|
homepage: https://github.com/Katello/hammer-cli-katello
|
300
511
|
licenses:
|
301
512
|
- GPL-3.0
|
@@ -315,8 +526,218 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
526
|
- !ruby/object:Gem::Version
|
316
527
|
version: '0'
|
317
528
|
requirements: []
|
318
|
-
rubygems_version: 3.1.
|
529
|
+
rubygems_version: 3.1.6
|
319
530
|
signing_key:
|
320
531
|
specification_version: 4
|
321
532
|
summary: Katello commands for Hammer
|
322
|
-
test_files:
|
533
|
+
test_files:
|
534
|
+
- test/data/2.5/foreman_api.json
|
535
|
+
- test/data/3.0/foreman_api.json
|
536
|
+
- test/data/3.10/foreman_api.json
|
537
|
+
- test/data/3.11/foreman_api.json
|
538
|
+
- test/data/3.12/foreman_api.json
|
539
|
+
- test/data/3.13/foreman_api.json
|
540
|
+
- test/data/3.14/foreman_api.json
|
541
|
+
- test/data/3.15/foreman_api.json
|
542
|
+
- test/data/3.16/foreman_api.json
|
543
|
+
- test/data/3.17/foreman_api.json
|
544
|
+
- test/data/3.18/foreman_api.json
|
545
|
+
- test/data/3.19/foreman_api.json
|
546
|
+
- test/data/3.2/foreman_api.json
|
547
|
+
- test/data/3.4/foreman_api.json
|
548
|
+
- test/data/3.5/foreman_api.json
|
549
|
+
- test/data/3.6/foreman_api.json
|
550
|
+
- test/data/3.7/foreman_api.json
|
551
|
+
- test/data/3.8/foreman_api.json
|
552
|
+
- test/data/3.9/foreman_api.json
|
553
|
+
- test/data/4.0/foreman_api.json
|
554
|
+
- test/data/4.1/foreman_api.json
|
555
|
+
- test/data/4.3/foreman_api.json
|
556
|
+
- test/data/4.4/foreman_api.json
|
557
|
+
- test/data/4.5/foreman_api.json
|
558
|
+
- test/data/4.6/foreman_api.json
|
559
|
+
- test/data/Readme.md
|
560
|
+
- test/functional/acs/create_test.rb
|
561
|
+
- test/functional/acs/delete_test.rb
|
562
|
+
- test/functional/acs/info_test.rb
|
563
|
+
- test/functional/acs/list_test.rb
|
564
|
+
- test/functional/acs/update_test.rb
|
565
|
+
- test/functional/activation_key/add_host_collection_test.rb
|
566
|
+
- test/functional/activation_key/content_override_test.rb
|
567
|
+
- test/functional/activation_key/create_test.rb
|
568
|
+
- test/functional/activation_key/data/activation_key.json
|
569
|
+
- test/functional/activation_key/info_test.rb
|
570
|
+
- test/functional/activation_key/list_test.rb
|
571
|
+
- test/functional/activation_key/product_content_test.rb
|
572
|
+
- test/functional/activation_key/remove_host_collection_test.rb
|
573
|
+
- test/functional/activation_key/subscriptions_test.rb
|
574
|
+
- test/functional/activation_key/update_test.rb
|
575
|
+
- test/functional/apipie_helper_test.rb
|
576
|
+
- test/functional/capsule/capsule_helpers.rb
|
577
|
+
- test/functional/capsule/content/add_lifecycle_environment_test.rb
|
578
|
+
- test/functional/capsule/content/cancel_synchronization_test.rb
|
579
|
+
- test/functional/capsule/content/capsule_content_helpers.rb
|
580
|
+
- test/functional/capsule/content/data/library_env.json
|
581
|
+
- test/functional/capsule/content/data/sync_status.json
|
582
|
+
- test/functional/capsule/content/data/sync_tasks.json
|
583
|
+
- test/functional/capsule/content/info_test.rb
|
584
|
+
- test/functional/capsule/content/lifecycle_environments_test.rb
|
585
|
+
- test/functional/capsule/content/remove_lifecycle_environment_test.rb
|
586
|
+
- test/functional/capsule/content/synchronization_status_test.rb
|
587
|
+
- test/functional/capsule/info_test.rb
|
588
|
+
- test/functional/capsule/list_test.rb
|
589
|
+
- test/functional/content_credentials/create_test.rb
|
590
|
+
- test/functional/content_credentials/data/test_cert.json
|
591
|
+
- test/functional/content_credentials/info_test.rb
|
592
|
+
- test/functional/content_credentials/list_test.rb
|
593
|
+
- test/functional/content_export/complete/library_test.rb
|
594
|
+
- test/functional/content_export/complete/repository_test.rb
|
595
|
+
- test/functional/content_export/complete/version_test.rb
|
596
|
+
- test/functional/content_export/content_export_helpers.rb
|
597
|
+
- test/functional/content_export/generate_listing_test.rb
|
598
|
+
- test/functional/content_export/generate_metadata_test.rb
|
599
|
+
- test/functional/content_export/incremental/library_test.rb
|
600
|
+
- test/functional/content_export/incremental/repository_test.rb
|
601
|
+
- test/functional/content_export/incremental/version_test.rb
|
602
|
+
- test/functional/content_export/list_test.rb
|
603
|
+
- test/functional/content_import/library_test.rb
|
604
|
+
- test/functional/content_import/list_test.rb
|
605
|
+
- test/functional/content_import/metadata.json
|
606
|
+
- test/functional/content_import/version_test.rb
|
607
|
+
- test/functional/content_units/info_test.rb
|
608
|
+
- test/functional/content_units/list_test.rb
|
609
|
+
- test/functional/content_view/add_content_view_version_test.rb
|
610
|
+
- test/functional/content_view/add_repository_test.rb
|
611
|
+
- test/functional/content_view/component/add_test.rb
|
612
|
+
- test/functional/content_view/component/list_test.rb
|
613
|
+
- test/functional/content_view/component/remove_test.rb
|
614
|
+
- test/functional/content_view/component/update_test.rb
|
615
|
+
- test/functional/content_view/content_view_helpers.rb
|
616
|
+
- test/functional/content_view/copy_test.rb
|
617
|
+
- test/functional/content_view/create_test.rb
|
618
|
+
- test/functional/content_view/delete_test.rb
|
619
|
+
- test/functional/content_view/filter/create_test.rb
|
620
|
+
- test/functional/content_view/filter/delete_test.rb
|
621
|
+
- test/functional/content_view/filter/info_test.rb
|
622
|
+
- test/functional/content_view/filter/list_test.rb
|
623
|
+
- test/functional/content_view/filter/update_test.rb
|
624
|
+
- test/functional/content_view/list_test.rb
|
625
|
+
- test/functional/content_view/publish_test.rb
|
626
|
+
- test/functional/content_view/purge_test.rb
|
627
|
+
- test/functional/content_view/remove_content_view_version_test.rb
|
628
|
+
- test/functional/content_view/remove_test.rb
|
629
|
+
- test/functional/content_view/update_test.rb
|
630
|
+
- test/functional/content_view/version/incremental_update_test.rb
|
631
|
+
- test/functional/content_view/version/list_test.rb
|
632
|
+
- test/functional/content_view/version/promote_test.rb
|
633
|
+
- test/functional/content_view/version/republish_repositories_test.rb
|
634
|
+
- test/functional/content_view/version/update_test.rb
|
635
|
+
- test/functional/erratum/erratum_helpers.rb
|
636
|
+
- test/functional/erratum/info_test.rb
|
637
|
+
- test/functional/erratum/list_test.rb
|
638
|
+
- test/functional/file/file_helpers.rb
|
639
|
+
- test/functional/file/info_test.rb
|
640
|
+
- test/functional/file/list_test.rb
|
641
|
+
- test/functional/filter_rule/create_test.rb
|
642
|
+
- test/functional/filter_rule/delete_test.rb
|
643
|
+
- test/functional/filter_rule/filter_rule_helpers.rb
|
644
|
+
- test/functional/filter_rule/info_test.rb
|
645
|
+
- test/functional/filter_rule/list_test.rb
|
646
|
+
- test/functional/filter_rule/update_test.rb
|
647
|
+
- test/functional/host/errata/apply_test.rb
|
648
|
+
- test/functional/host/errata/info_test.rb
|
649
|
+
- test/functional/host/errata/list_test.rb
|
650
|
+
- test/functional/host/errata/recalculate_test.rb
|
651
|
+
- test/functional/host/extensions/create_test.rb
|
652
|
+
- test/functional/host/extensions/data/host.json
|
653
|
+
- test/functional/host/extensions/data/host_list.json
|
654
|
+
- test/functional/host/extensions/info_test.rb
|
655
|
+
- test/functional/host/extensions/list_test.rb
|
656
|
+
- test/functional/host/extensions/update_test.rb
|
657
|
+
- test/functional/host/host_helpers.rb
|
658
|
+
- test/functional/host/subscription/attach_test.rb
|
659
|
+
- test/functional/host/subscription/auto_attach_test.rb
|
660
|
+
- test/functional/host/subscription/content_override_test.rb
|
661
|
+
- test/functional/host/subscription/enabled_repositories_test.rb
|
662
|
+
- test/functional/host/subscription/product_content_test.rb
|
663
|
+
- test/functional/host/subscription/register_test.rb
|
664
|
+
- test/functional/host/subscription/remove_test.rb
|
665
|
+
- test/functional/host/subscription/unregister_test.rb
|
666
|
+
- test/functional/host/traces/list_test.rb
|
667
|
+
- test/functional/host/traces/resolve_test.rb
|
668
|
+
- test/functional/host_collection/add_host_test.rb
|
669
|
+
- test/functional/host_collection/content_api_expectations.rb
|
670
|
+
- test/functional/host_collection/content_install_test.rb
|
671
|
+
- test/functional/host_collection/content_remove_test.rb
|
672
|
+
- test/functional/host_collection/content_update_test.rb
|
673
|
+
- test/functional/host_collection/copy_test.rb
|
674
|
+
- test/functional/host_collection/create_test.rb
|
675
|
+
- test/functional/host_collection/delete_test.rb
|
676
|
+
- test/functional/host_collection/hosts_test.rb
|
677
|
+
- test/functional/host_collection/info_test.rb
|
678
|
+
- test/functional/host_collection/list_test.rb
|
679
|
+
- test/functional/host_collection/remove_host_test.rb
|
680
|
+
- test/functional/host_collection/update_test.rb
|
681
|
+
- test/functional/hostgroup/create_test.rb
|
682
|
+
- test/functional/hostgroup/data/hostgroup.json
|
683
|
+
- test/functional/hostgroup/info_test.rb
|
684
|
+
- test/functional/hostgroup/update_test.rb
|
685
|
+
- test/functional/lifecycle_environment/create_test.rb
|
686
|
+
- test/functional/lifecycle_environment/lifecycle_environment_helpers.rb
|
687
|
+
- test/functional/lifecycle_environment/list_test.rb
|
688
|
+
- test/functional/lifecycle_environment/update_test.rb
|
689
|
+
- test/functional/local_helper_test.rb
|
690
|
+
- test/functional/module_stream/info_test.rb
|
691
|
+
- test/functional/module_stream/list_test.rb
|
692
|
+
- test/functional/organization/cdn_configuration_test.rb
|
693
|
+
- test/functional/organization/delete_test.rb
|
694
|
+
- test/functional/organization/info_test.rb
|
695
|
+
- test/functional/organization/organization_helpers.rb
|
696
|
+
- test/functional/package/list_test.rb
|
697
|
+
- test/functional/package_group/list_test.rb
|
698
|
+
- test/functional/ping_test.rb
|
699
|
+
- test/functional/product/create_test.rb
|
700
|
+
- test/functional/product/delete_test.rb
|
701
|
+
- test/functional/product/info_test.rb
|
702
|
+
- test/functional/product/list_test.rb
|
703
|
+
- test/functional/product/product_helpers.rb
|
704
|
+
- test/functional/product/remove_sync_plan_test.rb
|
705
|
+
- test/functional/product/set_sync_plan_test.rb
|
706
|
+
- test/functional/product/update_proxy.rb
|
707
|
+
- test/functional/product/update_test.rb
|
708
|
+
- test/functional/repository/create_test.rb
|
709
|
+
- test/functional/repository/delete_test.rb
|
710
|
+
- test/functional/repository/info_test.rb
|
711
|
+
- test/functional/repository/list_test.rb
|
712
|
+
- test/functional/repository/reclaim_space_test.rb
|
713
|
+
- test/functional/repository/remove_content_test.rb
|
714
|
+
- test/functional/repository/repository_helpers.rb
|
715
|
+
- test/functional/repository/republish_test.rb
|
716
|
+
- test/functional/repository/synchronize_test.rb
|
717
|
+
- test/functional/repository/update_test.rb
|
718
|
+
- test/functional/repository/upload_test.rb
|
719
|
+
- test/functional/repository_set/available_repositories_test.rb
|
720
|
+
- test/functional/repository_set/disable_test.rb
|
721
|
+
- test/functional/repository_set/enable_test.rb
|
722
|
+
- test/functional/repository_set/info_test.rb
|
723
|
+
- test/functional/repository_set/list_test.rb
|
724
|
+
- test/functional/repository_set/repository_set_helpers.rb
|
725
|
+
- test/functional/search_helpers.rb
|
726
|
+
- test/functional/simple_content_access/disable_test.rb
|
727
|
+
- test/functional/simple_content_access/enable_test.rb
|
728
|
+
- test/functional/simple_content_access/status_test.rb
|
729
|
+
- test/functional/srpm/list_test.rb
|
730
|
+
- test/functional/subscription/list_test.rb
|
731
|
+
- test/functional/sync_plan/create_test.rb
|
732
|
+
- test/functional/sync_plan/delete_test.rb
|
733
|
+
- test/functional/sync_plan/info_test.rb
|
734
|
+
- test/functional/sync_plan/list_test.rb
|
735
|
+
- test/functional/sync_plan/sync_plan_helpers.rb
|
736
|
+
- test/functional/sync_plan/update_test.rb
|
737
|
+
- test/functional/test_helper.rb
|
738
|
+
- test/task_helper.rb
|
739
|
+
- test/test_helper.rb
|
740
|
+
- test/unit/id_name_options_validator_test.rb
|
741
|
+
- test/unit/id_resolver_test.rb
|
742
|
+
- test/unit/messages_test.rb
|
743
|
+
- test/unit/search_options_creators_test.rb
|