hammer_cli_katello 0.0.24 → 0.0.25

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.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_katello.rb +1 -0
  3. data/lib/hammer_cli_katello/activation_key.rb +8 -6
  4. data/lib/hammer_cli_katello/capsule.rb +2 -21
  5. data/lib/hammer_cli_katello/commands.rb +2 -2
  6. data/lib/hammer_cli_katello/content_host.rb +3 -49
  7. data/lib/hammer_cli_katello/content_view.rb +19 -4
  8. data/lib/hammer_cli_katello/content_view_puppet_module.rb +8 -0
  9. data/lib/hammer_cli_katello/content_view_version.rb +69 -20
  10. data/lib/hammer_cli_katello/host.rb +4 -0
  11. data/lib/hammer_cli_katello/host_collection.rb +3 -22
  12. data/lib/hammer_cli_katello/host_errata.rb +1 -1
  13. data/lib/hammer_cli_katello/host_subscription.rb +31 -0
  14. data/lib/hammer_cli_katello/id_resolver.rb +45 -65
  15. data/lib/hammer_cli_katello/katello_environment_name_resolvable.rb +33 -0
  16. data/lib/hammer_cli_katello/lifecycle_environment_name_resolvable.rb +1 -13
  17. data/lib/hammer_cli_katello/ping.rb +4 -0
  18. data/lib/hammer_cli_katello/repository.rb +10 -8
  19. data/lib/hammer_cli_katello/search_options_creators.rb +70 -0
  20. data/lib/hammer_cli_katello/version.rb +1 -1
  21. data/test/data/3.0/foreman_api.json +1 -0
  22. data/test/functional/activaton_key/list_test.rb +69 -0
  23. data/test/functional/content_view/content_view_helpers.rb +10 -0
  24. data/test/functional/content_view/create_test.rb +119 -0
  25. data/test/functional/content_view/list_test.rb +67 -0
  26. data/test/functional/content_view/version/incremental_update_test.rb +91 -0
  27. data/test/functional/host/errata/apply_test.rb +46 -0
  28. data/test/functional/host/host_helpers.rb +10 -0
  29. data/test/functional/host/subscription/register_test.rb +53 -0
  30. data/test/functional/host/subscription/unregister_test.rb +37 -0
  31. data/test/functional/lifecycle_environment/lifecycle_environment_helpers.rb +17 -0
  32. data/test/functional/organization/organization_helpers.rb +10 -0
  33. data/test/functional/ping_test.rb +19 -0
  34. data/test/functional/product/product_helpers.rb +8 -0
  35. data/test/functional/repository/info_test.rb +46 -0
  36. data/test/functional/repository/list_test.rb +69 -0
  37. data/test/functional/repository/repository_helpers.rb +9 -0
  38. data/test/functional/repository/synchronize_test.rb +57 -0
  39. data/test/functional/repository/upload_test.rb +86 -0
  40. data/test/task_helper.rb +7 -0
  41. data/test/test_helper.rb +16 -3
  42. data/test/unit/id_resolver_test.rb +32 -0
  43. data/test/unit/search_options_creators_test.rb +107 -0
  44. metadata +53 -3
metadata CHANGED
@@ -1,11 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Price
8
8
  - Adam Ruzicka
9
+ - Andrew Kofink
9
10
  - Brad Buckingham
10
11
  - Bryan Kearney
11
12
  - Chris Duryee
@@ -29,10 +30,11 @@ authors:
29
30
  - Tomas Strachota
30
31
  - Tom McKay
31
32
  - Walden Raines
33
+ - Zach Huntington-Meath
32
34
  autorequire:
33
35
  bindir: bin
34
36
  cert_chain: []
35
- date: 2016-03-28 00:00:00.000000000 Z
37
+ date: 2016-05-16 00:00:00.000000000 Z
36
38
  dependencies:
37
39
  - !ruby/object:Gem::Dependency
38
40
  name: hammer_cli_foreman
@@ -247,8 +249,10 @@ files:
247
249
  - lib/hammer_cli_katello/host_errata.rb
248
250
  - lib/hammer_cli_katello/host_package.rb
249
251
  - lib/hammer_cli_katello/host_package_group.rb
252
+ - lib/hammer_cli_katello/host_subscription.rb
250
253
  - lib/hammer_cli_katello/i18n.rb
251
254
  - lib/hammer_cli_katello/id_resolver.rb
255
+ - lib/hammer_cli_katello/katello_environment_name_resolvable.rb
252
256
  - lib/hammer_cli_katello/lifecycle_environment.rb
253
257
  - lib/hammer_cli_katello/lifecycle_environment_name_resolvable.rb
254
258
  - lib/hammer_cli_katello/organization.rb
@@ -263,6 +267,7 @@ files:
263
267
  - lib/hammer_cli_katello/repository.rb
264
268
  - lib/hammer_cli_katello/repository_scoped_to_product.rb
265
269
  - lib/hammer_cli_katello/repository_set.rb
270
+ - lib/hammer_cli_katello/search_options_creators.rb
266
271
  - lib/hammer_cli_katello/subscription.rb
267
272
  - lib/hammer_cli_katello/sync_plan.rb
268
273
  - lib/hammer_cli_katello/version.rb
@@ -283,6 +288,8 @@ files:
283
288
  - locale/zh_CN/hammer-cli-katello.po
284
289
  - locale/zh_TW/hammer-cli-katello.po
285
290
  - test/data/2.5/foreman_api.json
291
+ - test/data/3.0/foreman_api.json
292
+ - test/functional/activaton_key/list_test.rb
286
293
  - test/functional/capsule/content/cancel_synchronization_test.rb
287
294
  - test/functional/capsule/content/capsule_content_helpers.rb
288
295
  - test/functional/capsule/content/data/library_env.json
@@ -290,8 +297,28 @@ files:
290
297
  - test/functional/capsule/content/data/sync_tasks.json
291
298
  - test/functional/capsule/content/info_test.rb
292
299
  - test/functional/capsule/content/synchronization_status_test.rb
300
+ - test/functional/content_view/content_view_helpers.rb
301
+ - test/functional/content_view/create_test.rb
302
+ - test/functional/content_view/list_test.rb
303
+ - test/functional/content_view/version/incremental_update_test.rb
304
+ - test/functional/host/errata/apply_test.rb
305
+ - test/functional/host/host_helpers.rb
306
+ - test/functional/host/subscription/register_test.rb
307
+ - test/functional/host/subscription/unregister_test.rb
308
+ - test/functional/lifecycle_environment/lifecycle_environment_helpers.rb
309
+ - test/functional/organization/organization_helpers.rb
310
+ - test/functional/ping_test.rb
311
+ - test/functional/product/product_helpers.rb
312
+ - test/functional/repository/info_test.rb
313
+ - test/functional/repository/list_test.rb
314
+ - test/functional/repository/repository_helpers.rb
315
+ - test/functional/repository/synchronize_test.rb
316
+ - test/functional/repository/upload_test.rb
293
317
  - test/functional/test_helper.rb
318
+ - test/task_helper.rb
294
319
  - test/test_helper.rb
320
+ - test/unit/id_resolver_test.rb
321
+ - test/unit/search_options_creators_test.rb
295
322
  homepage: http://github.com/theforeman/hammer-cli-katello
296
323
  licenses:
297
324
  - GPL-3
@@ -312,12 +339,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
312
339
  version: '0'
313
340
  requirements: []
314
341
  rubyforge_project:
315
- rubygems_version: 2.2.5
342
+ rubygems_version: 2.4.8
316
343
  signing_key:
317
344
  specification_version: 4
318
345
  summary: Katello commands for Hammer
319
346
  test_files:
320
347
  - test/data/2.5/foreman_api.json
348
+ - test/data/3.0/foreman_api.json
349
+ - test/functional/activaton_key/list_test.rb
321
350
  - test/functional/capsule/content/cancel_synchronization_test.rb
322
351
  - test/functional/capsule/content/capsule_content_helpers.rb
323
352
  - test/functional/capsule/content/data/library_env.json
@@ -325,5 +354,26 @@ test_files:
325
354
  - test/functional/capsule/content/data/sync_tasks.json
326
355
  - test/functional/capsule/content/info_test.rb
327
356
  - test/functional/capsule/content/synchronization_status_test.rb
357
+ - test/functional/content_view/content_view_helpers.rb
358
+ - test/functional/content_view/create_test.rb
359
+ - test/functional/content_view/list_test.rb
360
+ - test/functional/content_view/version/incremental_update_test.rb
361
+ - test/functional/host/errata/apply_test.rb
362
+ - test/functional/host/host_helpers.rb
363
+ - test/functional/host/subscription/register_test.rb
364
+ - test/functional/host/subscription/unregister_test.rb
365
+ - test/functional/lifecycle_environment/lifecycle_environment_helpers.rb
366
+ - test/functional/organization/organization_helpers.rb
367
+ - test/functional/ping_test.rb
368
+ - test/functional/product/product_helpers.rb
369
+ - test/functional/repository/info_test.rb
370
+ - test/functional/repository/list_test.rb
371
+ - test/functional/repository/repository_helpers.rb
372
+ - test/functional/repository/synchronize_test.rb
373
+ - test/functional/repository/upload_test.rb
328
374
  - test/functional/test_helper.rb
375
+ - test/task_helper.rb
329
376
  - test/test_helper.rb
377
+ - test/unit/id_resolver_test.rb
378
+ - test/unit/search_options_creators_test.rb
379
+ has_rdoc: