hammer_cli_foreman 0.6.2 → 0.7.0

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 (324) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +4 -0
  3. data/doc/host_create.md +4 -4
  4. data/doc/release_notes.md +24 -6
  5. data/lib/hammer_cli_foreman/associating_commands.rb +54 -0
  6. data/lib/hammer_cli_foreman/commands.rb +28 -7
  7. data/lib/hammer_cli_foreman/exception_handler.rb +18 -0
  8. data/lib/hammer_cli_foreman/exceptions.rb +1 -1
  9. data/lib/hammer_cli_foreman/host.rb +11 -6
  10. data/lib/hammer_cli_foreman/id_resolver.rb +10 -2
  11. data/lib/hammer_cli_foreman/partition_table.rb +1 -0
  12. data/lib/hammer_cli_foreman/smart_class_parameter.rb +5 -1
  13. data/lib/hammer_cli_foreman/smart_variable.rb +1 -1
  14. data/lib/hammer_cli_foreman/template.rb +29 -5
  15. data/lib/hammer_cli_foreman/testing/api_expectations.rb +6 -6
  16. data/lib/hammer_cli_foreman/user.rb +2 -1
  17. data/lib/hammer_cli_foreman/version.rb +1 -1
  18. data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  19. data/locale/ca/hammer-cli-foreman.edit.po +2622 -0
  20. data/locale/ca/hammer-cli-foreman.po +2544 -0
  21. data/locale/ca/hammer-cli-foreman.po.time_stamp +0 -0
  22. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  23. data/locale/de/hammer-cli-foreman.edit.po +2613 -0
  24. data/locale/de/hammer-cli-foreman.po +132 -122
  25. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  26. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  27. data/locale/en/hammer-cli-foreman.edit.po +2575 -0
  28. data/locale/en/hammer-cli-foreman.po +157 -8
  29. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  30. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  31. data/locale/en_GB/hammer-cli-foreman.edit.po +2582 -0
  32. data/locale/en_GB/hammer-cli-foreman.po +151 -141
  33. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  34. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  35. data/locale/es/hammer-cli-foreman.edit.po +2625 -0
  36. data/locale/es/hammer-cli-foreman.po +110 -100
  37. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  38. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  39. data/locale/fr/hammer-cli-foreman.edit.po +2626 -0
  40. data/locale/fr/hammer-cli-foreman.po +110 -100
  41. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  42. data/locale/hammer-cli-foreman.pot +390 -190
  43. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  44. data/locale/it/hammer-cli-foreman.edit.po +2601 -0
  45. data/locale/it/hammer-cli-foreman.po +139 -129
  46. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  47. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  48. data/locale/ja/hammer-cli-foreman.edit.po +2601 -0
  49. data/locale/ja/hammer-cli-foreman.po +140 -130
  50. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  51. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  52. data/locale/ko/hammer-cli-foreman.edit.po +2599 -0
  53. data/locale/ko/hammer-cli-foreman.po +138 -128
  54. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  55. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  56. data/locale/pt_BR/hammer-cli-foreman.edit.po +2628 -0
  57. data/locale/pt_BR/hammer-cli-foreman.po +112 -102
  58. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  59. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  60. data/locale/ru/hammer-cli-foreman.edit.po +2602 -0
  61. data/locale/ru/hammer-cli-foreman.po +265 -254
  62. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  63. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  64. data/locale/zh_CN/hammer-cli-foreman.edit.po +2599 -0
  65. data/locale/zh_CN/hammer-cli-foreman.po +136 -126
  66. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  67. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  68. data/locale/zh_TW/hammer-cli-foreman.edit.po +2599 -0
  69. data/locale/zh_TW/hammer-cli-foreman.po +137 -127
  70. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  71. data/test/data/README.md +6 -1
  72. data/test/functional/commands/list_test.rb +141 -0
  73. data/test/functional/organization_test.rb +71 -0
  74. data/test/functional/smart_class_parameter_test.rb +61 -0
  75. data/test/functional/template_test.rb +80 -0
  76. data/test/functional/test_helper.rb +3 -0
  77. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +11 -0
  78. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +7 -0
  79. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +13 -0
  80. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +7 -0
  81. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +13 -0
  82. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +13 -0
  83. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +7 -0
  84. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +13 -0
  85. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +17 -0
  86. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +7 -0
  87. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +15 -0
  88. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +7 -0
  89. data/test/reports/TEST-HammerCLIForeman-Architecture.xml +7 -0
  90. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +11 -0
  91. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +7 -0
  92. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +13 -0
  93. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +17 -0
  94. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +7 -0
  95. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +13 -0
  96. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +7 -0
  97. data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +7 -0
  98. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +15 -0
  99. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +7 -0
  100. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +13 -0
  101. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +7 -0
  102. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +17 -0
  103. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +13 -0
  104. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +7 -0
  105. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +15 -0
  106. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +17 -0
  107. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +7 -0
  108. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +15 -0
  109. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +7 -0
  110. data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +7 -0
  111. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +11 -0
  112. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +7 -0
  113. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +13 -0
  114. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +7 -0
  115. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +15 -0
  116. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +7 -0
  117. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +21 -0
  118. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +13 -0
  119. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +7 -0
  120. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +13 -0
  121. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +17 -0
  122. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +7 -0
  123. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +17 -0
  124. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +7 -0
  125. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +15 -0
  126. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +7 -0
  127. data/test/reports/TEST-HammerCLIForeman-Domain.xml +7 -0
  128. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +11 -0
  129. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +7 -0
  130. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +13 -0
  131. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +7 -0
  132. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +17 -0
  133. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +13 -0
  134. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +7 -0
  135. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +13 -0
  136. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +17 -0
  137. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +7 -0
  138. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +15 -0
  139. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +7 -0
  140. data/test/reports/TEST-HammerCLIForeman-Environment.xml +7 -0
  141. data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +13 -0
  142. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +46 -0
  143. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +7 -0
  144. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +13 -0
  145. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +7 -0
  146. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +15 -0
  147. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +7 -0
  148. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +85 -0
  149. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +13 -0
  150. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +7 -0
  151. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +21 -0
  152. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +17 -0
  153. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +7 -0
  154. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +9 -0
  155. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +7 -0
  156. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +17 -0
  157. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +7 -0
  158. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +9 -0
  159. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +7 -0
  160. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +40 -0
  161. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +7 -0
  162. data/test/reports/TEST-HammerCLIForeman-Host.xml +7 -0
  163. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +11 -0
  164. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +7 -0
  165. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +11 -0
  166. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +7 -0
  167. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +13 -0
  168. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +7 -0
  169. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +29 -0
  170. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +11 -0
  171. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +7 -0
  172. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +27 -0
  173. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +17 -0
  174. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +7 -0
  175. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +15 -0
  176. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +7 -0
  177. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +13 -0
  178. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +7 -0
  179. data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +7 -0
  180. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +11 -0
  181. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +11 -0
  182. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +7 -0
  183. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +13 -0
  184. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +11 -0
  185. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +7 -0
  186. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +17 -0
  187. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +13 -0
  188. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +11 -0
  189. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +7 -0
  190. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +13 -0
  191. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +17 -0
  192. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +11 -0
  193. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +7 -0
  194. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +15 -0
  195. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +11 -0
  196. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +7 -0
  197. data/test/reports/TEST-HammerCLIForeman-Location.xml +7 -0
  198. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +13 -0
  199. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +7 -0
  200. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +13 -0
  201. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +7 -0
  202. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +23 -0
  203. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +13 -0
  204. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +7 -0
  205. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +15 -0
  206. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +17 -0
  207. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +7 -0
  208. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +17 -0
  209. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +7 -0
  210. data/test/reports/TEST-HammerCLIForeman-Medium.xml +7 -0
  211. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +11 -0
  212. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +7 -0
  213. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +13 -0
  214. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +7 -0
  215. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +13 -0
  216. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +7 -0
  217. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +27 -0
  218. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +13 -0
  219. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +7 -0
  220. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +17 -0
  221. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +17 -0
  222. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +7 -0
  223. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +15 -0
  224. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +7 -0
  225. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +17 -0
  226. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +7 -0
  227. data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +7 -0
  228. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +11 -0
  229. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +11 -0
  230. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +7 -0
  231. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +13 -0
  232. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +11 -0
  233. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +7 -0
  234. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +17 -0
  235. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +13 -0
  236. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +11 -0
  237. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +7 -0
  238. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +13 -0
  239. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +17 -0
  240. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +11 -0
  241. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +7 -0
  242. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +15 -0
  243. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +11 -0
  244. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +7 -0
  245. data/test/reports/TEST-HammerCLIForeman-Organization.xml +7 -0
  246. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +13 -0
  247. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +7 -0
  248. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +13 -0
  249. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +7 -0
  250. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +15 -0
  251. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +7 -0
  252. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +19 -0
  253. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +13 -0
  254. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +7 -0
  255. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +15 -0
  256. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +17 -0
  257. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +7 -0
  258. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +13 -0
  259. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +7 -0
  260. data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +7 -0
  261. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +13 -0
  262. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +7 -0
  263. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +13 -0
  264. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +7 -0
  265. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +21 -0
  266. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +13 -0
  267. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +7 -0
  268. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +15 -0
  269. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +11 -0
  270. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +7 -0
  271. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +15 -0
  272. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +7 -0
  273. data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +7 -0
  274. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +15 -0
  275. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +7 -0
  276. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +13 -0
  277. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +7 -0
  278. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +43 -0
  279. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +13 -0
  280. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +7 -0
  281. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +17 -0
  282. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +17 -0
  283. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +7 -0
  284. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +15 -0
  285. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +7 -0
  286. data/test/reports/TEST-HammerCLIForeman-Subnet.xml +7 -0
  287. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +15 -0
  288. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +7 -0
  289. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +11 -0
  290. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +7 -0
  291. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +12 -0
  292. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +7 -0
  293. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +17 -0
  294. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +11 -0
  295. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +7 -0
  296. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +15 -0
  297. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +17 -0
  298. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +7 -0
  299. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +9 -0
  300. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +7 -0
  301. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +11 -0
  302. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +7 -0
  303. data/test/reports/TEST-HammerCLIForeman-Template.xml +7 -0
  304. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +19 -0
  305. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +7 -0
  306. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +11 -0
  307. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +7 -0
  308. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +23 -0
  309. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +11 -0
  310. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +7 -0
  311. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +17 -0
  312. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +17 -0
  313. data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +7 -0
  314. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +11 -0
  315. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +7 -0
  316. data/test/reports/TEST-HammerCLIForeman-User.xml +7 -0
  317. data/test/reports/TEST-MiniTest-Spec.xml +7 -0
  318. data/test/unit/commands_test.rb +9 -9
  319. data/test/unit/data/test_api.json +43 -0
  320. data/test/unit/exception_handler_test.rb +20 -1
  321. data/test/unit/host_test.rb +12 -0
  322. data/test/unit/id_resolver_test.rb +18 -2
  323. data/test/unit/user_test.rb +1 -1
  324. metadata +561 -46
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::InfoCommand::output" tests="8" time="0.070991386" failures="0" errors="0" skipped="0" assertions="15">
3
+ <testcase name="test_0006_should print column Last login" time="0.006886969" assertions="2">
4
+ </testcase>
5
+ <testcase name="test_0007_should print column Created at" time="0.005724051" assertions="2">
6
+ </testcase>
7
+ <testcase name="test_0002_should print column Id" time="0.005450286" assertions="2">
8
+ </testcase>
9
+ <testcase name="test_0005_should print column Email" time="0.005539803" assertions="2">
10
+ </testcase>
11
+ <testcase name="test_0001_should print 1 records" time="0.005695008" assertions="1">
12
+ </testcase>
13
+ <testcase name="test_0004_should print column Name" time="0.005614019" assertions="2">
14
+ </testcase>
15
+ <testcase name="test_0003_should print column Login" time="0.0054379" assertions="2">
16
+ </testcase>
17
+ <testcase name="test_0008_should print column Updated at" time="0.030227896" assertions="2">
18
+ </testcase>
19
+ <system-out>
20
+ </system-out>
21
+ <system-err>
22
+ </system-err>
23
+ </testsuite>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::InfoCommand::parameters" tests="2" time="0.007194698" failures="0" errors="0" skipped="0" assertions="2">
3
+ <testcase name="test_0002_should fail with no arguments" time="0.001961391" assertions="1">
4
+ </testcase>
5
+ <testcase name="test_0001_should accept id" time="0.004686151" assertions="1">
6
+ </testcase>
7
+ <system-out>
8
+ </system-out>
9
+ <system-err>
10
+ </system-err>
11
+ </testsuite>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::InfoCommand" tests="0" time="0.000402386" failures="0" errors="0" skipped="0" assertions="0">
3
+ <system-out>
4
+ </system-out>
5
+ <system-err>
6
+ </system-err>
7
+ </testsuite>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::ListCommand::output" tests="5" time="0.040416447" failures="0" errors="0" skipped="0" assertions="9">
3
+ <testcase name="test_0001_should print records" time="0.008256648" assertions="1">
4
+ </testcase>
5
+ <testcase name="test_0002_should print column Id" time="0.007677963" assertions="2">
6
+ </testcase>
7
+ <testcase name="test_0004_should print column Name" time="0.007567883" assertions="2">
8
+ </testcase>
9
+ <testcase name="test_0003_should print column Login" time="0.008033693" assertions="2">
10
+ </testcase>
11
+ <testcase name="test_0005_should print column Email" time="0.008511567" assertions="2">
12
+ </testcase>
13
+ <system-out>
14
+ </system-out>
15
+ <system-err>
16
+ </system-err>
17
+ </testsuite>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::ListCommand::parameters" tests="5" time="0.062271328" failures="0" errors="0" skipped="0" assertions="5">
3
+ <testcase name="test_0001_should accept no arguments" time="0.006421526" assertions="1">
4
+ </testcase>
5
+ <testcase name="test_0002_should accept search" time="0.005973033" assertions="1">
6
+ </testcase>
7
+ <testcase name="test_0005_should accept order" time="0.037953243" assertions="1">
8
+ </testcase>
9
+ <testcase name="test_0004_should accept page" time="0.005649507" assertions="1">
10
+ </testcase>
11
+ <testcase name="test_0003_should accept per page" time="0.005632757" assertions="1">
12
+ </testcase>
13
+ <system-out>
14
+ </system-out>
15
+ <system-err>
16
+ </system-err>
17
+ </testsuite>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::ListCommand" tests="0" time="0.000410169" failures="0" errors="0" skipped="0" assertions="0">
3
+ <system-out>
4
+ </system-out>
5
+ <system-err>
6
+ </system-err>
7
+ </testsuite>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::UpdateCommand::parameters" tests="2" time="0.004924509" failures="0" errors="0" skipped="0" assertions="2">
3
+ <testcase name="test_0001_should accept id" time="0.002951368" assertions="1">
4
+ </testcase>
5
+ <testcase name="test_0002_should fail with no params" time="0.00166842" assertions="1">
6
+ </testcase>
7
+ <system-out>
8
+ </system-out>
9
+ <system-err>
10
+ </system-err>
11
+ </testsuite>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User::UpdateCommand" tests="0" time="0.000420274" failures="0" errors="0" skipped="0" assertions="0">
3
+ <system-out>
4
+ </system-out>
5
+ <system-err>
6
+ </system-err>
7
+ </testsuite>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="HammerCLIForeman::User" tests="0" time="0.000343867" failures="0" errors="0" skipped="0" assertions="0">
3
+ <system-out>
4
+ </system-out>
5
+ <system-err>
6
+ </system-err>
7
+ </testsuite>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="MiniTest::Spec" tests="0" time="0.000391443" failures="0" errors="0" skipped="0" assertions="0">
3
+ <system-out>
4
+ </system-out>
5
+ <system-err>
6
+ </system-err>
7
+ </testsuite>
@@ -143,17 +143,17 @@ describe HammerCLIForeman::Command do
143
143
  builder.class.must_equal HammerCLIForeman::ForemanOptionBuilder
144
144
  end
145
145
 
146
- it "properly raises error on intentional searching of parameters that are not required" do
146
+ it "properly raises error on intentional searching of parameters that are not required" do
147
147
  class TestList < HammerCLIForeman::ListCommand
148
148
  resource :domains
149
149
  build_options
150
150
  end
151
151
 
152
152
  com = TestList.new("", { :adapter => :csv, :interactive => false })
153
-
153
+
154
154
  com.resolver.class.any_instance.stubs(:location_id).raises(
155
- HammerCLIForeman::MissingSeachOptions.new(
156
- "Error",
155
+ HammerCLIForeman::MissingSearchOptions.new(
156
+ "Error",
157
157
  HammerCLIForeman.foreman_api_connection.api.resource(:locations)
158
158
  )
159
159
  )
@@ -164,21 +164,21 @@ describe HammerCLIForeman::Command do
164
164
 
165
165
  end
166
166
 
167
- it "ignores error on attempt to search of parameters that are not required" do
167
+ it "ignores error on attempt to search of parameters that are not required" do
168
168
  class TestList < HammerCLIForeman::ListCommand
169
169
  resource :domains
170
170
  build_options
171
171
  end
172
172
 
173
173
  com = TestList.new("", { :adapter => :csv, :interactive => false })
174
-
174
+
175
175
  com.resolver.class.any_instance.stubs(:location_id).raises(
176
- HammerCLIForeman::MissingSeachOptions.new(
177
- "Error",
176
+ HammerCLIForeman::MissingSearchOptions.new(
177
+ "Error",
178
178
  HammerCLIForeman.foreman_api_connection.api.resource(:locations)
179
179
  )
180
180
  )
181
-
181
+
182
182
  out, err = capture_io do
183
183
  com.run([]).must_equal HammerCLI::EX_OK
184
184
  end
@@ -602,6 +602,49 @@
602
602
  "see": []
603
603
  }
604
604
  ]
605
+ },
606
+ "puppetclasses": {
607
+ "doc_url": "./apipie/1.0/puppetclasses",
608
+ "api_url": "/",
609
+ "name": "Puppetclasses",
610
+ "short_description": null,
611
+ "full_description": null,
612
+ "version": "1.0",
613
+ "formats": null,
614
+ "metadata": null,
615
+ "methods": [
616
+ {
617
+ "doc_url": "./apipie/1.0/puppetclasses/index",
618
+ "name": "index",
619
+ "apis": [
620
+ {
621
+ "api_url": "/api/v2/puppetclasses",
622
+ "http_method": "GET",
623
+ "short_description": null,
624
+ "deprecated": null
625
+ }
626
+ ],
627
+ "formats": null,
628
+ "full_description": "",
629
+ "errors": [],
630
+ "params": [
631
+ {
632
+ "name": "search",
633
+ "full_name": "search",
634
+ "description": "\n<p>Search string</p>\n",
635
+ "required": false,
636
+ "allow_nil": false,
637
+ "validator": "Must be String",
638
+ "expected_type": "string",
639
+ "metadata": null,
640
+ "show": true
641
+ }
642
+ ],
643
+ "examples": [],
644
+ "metadata": null,
645
+ "see": []
646
+ }
647
+ ]
605
648
  }
606
649
  },
607
650
  "link_extension": ".html"
@@ -115,5 +115,24 @@ describe HammerCLIForeman::ExceptionHandler do
115
115
  err_code.must_equal HammerCLI::EX_SOFTWARE
116
116
  end
117
117
 
118
+ context "redirects" do
119
+ let(:response) { HammerCLIForeman.foreman_api.send(:create_fake_response, 301, '', 'GET', 'http://foreman.example.com/api/architectures') }
120
+ it "should detect http to https redirection error" do
121
+ response.headers[:location] = 'https://foreman.example.com/api/architectures'
122
+ ex = RestClient::MovedPermanently.new(response)
123
+
124
+ output.expects(:print_error).with(heading, "Redirection of API call detected.\nIt seems hammer is configured to use HTTP and the server prefers HTTPS.\nUpdate your server url configuration\nyou can set 'follow_redirects' to one of :default or :always to enable redirects following")
125
+ err_code = handler.handle_exception(ex, :heading => heading)
126
+ err_code.must_equal HammerCLI::EX_CONFIG
127
+ end
128
+
129
+ it "should detect redirection error" do
130
+ response.headers[:location] = 'http://foreman.example.com/api/other_resource'
131
+ ex = RestClient::MovedPermanently.new(response)
132
+
133
+ output.expects(:print_error).with(heading, "Redirection of API call detected.\nUpdate your server url configuration\nyou can set 'follow_redirects' to one of :default or :always to enable redirects following")
134
+ err_code = handler.handle_exception(ex, :heading => heading)
135
+ err_code.must_equal HammerCLI::EX_CONFIG
136
+ end
137
+ end
118
138
  end
119
-
@@ -394,4 +394,16 @@ describe HammerCLIForeman::Host do
394
394
 
395
395
  end
396
396
 
397
+ context "RebuildConfigCommand" do
398
+
399
+ let(:cmd) { HammerCLIForeman::Host::RebuildConfigCommand.new("", ctx) }
400
+
401
+ context "parameters" do
402
+ it_should_accept "name", ["--name=host"]
403
+ it_should_accept "id", ["--id=1"]
404
+ # it_should_fail_with "no arguments"
405
+ # TODO: temporarily disabled, parameters are checked in the id resolver
406
+
407
+ end
408
+ end
397
409
  end
@@ -73,11 +73,11 @@ describe HammerCLIForeman::IdResolver do
73
73
  let(:resolver_run) { proc { resolver.comment_id({"option_unknown" => "value"}) } }
74
74
 
75
75
  it "raises exception" do
76
- err = resolver_run.must_raise HammerCLIForeman::MissingSeachOptions
76
+ err = resolver_run.must_raise HammerCLIForeman::MissingSearchOptions
77
77
  end
78
78
 
79
79
  it "builds correct error message" do
80
- err = resolver_run.must_raise HammerCLIForeman::MissingSeachOptions
80
+ err = resolver_run.must_raise HammerCLIForeman::MissingSearchOptions
81
81
  err.message.must_equal "Missing options to search comment"
82
82
  end
83
83
  end
@@ -177,5 +177,21 @@ describe HammerCLIForeman::IdResolver do
177
177
  end
178
178
  end
179
179
 
180
+ describe 'searching for puppetclasses' do
181
+ let(:resolver_run) { proc { resolver.puppetclass_ids('option_names' => ['apache::mod::authnz_ldap', 'git::params', 'apache::dev']) } }
182
+
183
+ it "returns ids of the classes" do
184
+ ResourceMocks.mock_action_call(:puppetclasses, :index, {
185
+ 'apache' => [
186
+ { 'id' => 70, 'name' => 'apache::dev', 'created_at' => '2015-01-27T07:24:57.134Z', 'updated_at' => '2015-03-05T17:27:54.282Z' },
187
+ { 'id' => 27, 'name' => 'apache::mod::authnz_ldap', 'created_at' => '2015-01-27T07:24:56.378Z','updated_at' => '2015-01-27T07:24:56.378Z' }
188
+ ],
189
+ 'git' => [
190
+ { 'id' => 85, 'name' => 'git::params', 'created_at' => '2015-01-27T07:24:57.306Z', 'updated_at' => '2015-01-27T07:24:57.306Z' }
191
+ ] })
192
+
193
+ resolver_run.call.must_equal [70, 27, 85]
194
+ end
195
+ end
180
196
  end
181
197
  end
@@ -40,7 +40,7 @@ describe HammerCLIForeman::User do
40
40
  context "output" do
41
41
  with_params ["--id=1"] do
42
42
  it_should_print_n_records 1
43
- it_should_print_columns ["Id", "Login", "Name", "Email"]
43
+ it_should_print_columns ["Id", "Login", "Name", "Email", "Admin", "Effective admin"]
44
44
  it_should_print_columns ["Last login", "Created at", "Updated at"]
45
45
  end
46
46
  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.6.2
4
+ version: 0.7.0
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: 2016-03-22 00:00:00.000000000 Z
12
+ date: 2016-06-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: hammer_cli
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 0.6.0
20
+ version: 0.7.0
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.6.0
27
+ version: 0.7.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: apipie-bindings
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -46,11 +46,11 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files:
48
48
  - doc/configuration.md
49
+ - doc/using_hammer_cli_foreman_command.md
49
50
  - doc/developer_docs.md
51
+ - doc/option_builder.md
50
52
  - doc/host_create.md
51
53
  - doc/name_id_resolution.md
52
- - doc/option_builder.md
53
- - doc/using_hammer_cli_foreman_command.md
54
54
  - doc/release_notes.md
55
55
  - README.md
56
56
  files:
@@ -117,40 +117,311 @@ files:
117
117
  - lib/hammer_cli_foreman/version.rb
118
118
  - locale/Makefile
119
119
  - locale/README.md
120
+ - locale/ca/LC_MESSAGES/hammer-cli-foreman.mo
121
+ - locale/ca/hammer-cli-foreman.edit.po
122
+ - locale/ca/hammer-cli-foreman.po
123
+ - locale/ca/hammer-cli-foreman.po.time_stamp
120
124
  - locale/de/LC_MESSAGES/hammer-cli-foreman.mo
125
+ - locale/de/hammer-cli-foreman.edit.po
121
126
  - locale/de/hammer-cli-foreman.po
127
+ - locale/de/hammer-cli-foreman.po.time_stamp
122
128
  - locale/en/LC_MESSAGES/hammer-cli-foreman.mo
129
+ - locale/en/hammer-cli-foreman.edit.po
123
130
  - locale/en/hammer-cli-foreman.po
131
+ - locale/en/hammer-cli-foreman.po.time_stamp
124
132
  - locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo
133
+ - locale/en_GB/hammer-cli-foreman.edit.po
125
134
  - locale/en_GB/hammer-cli-foreman.po
135
+ - locale/en_GB/hammer-cli-foreman.po.time_stamp
126
136
  - locale/es/LC_MESSAGES/hammer-cli-foreman.mo
137
+ - locale/es/hammer-cli-foreman.edit.po
127
138
  - locale/es/hammer-cli-foreman.po
139
+ - locale/es/hammer-cli-foreman.po.time_stamp
128
140
  - locale/fr/LC_MESSAGES/hammer-cli-foreman.mo
141
+ - locale/fr/hammer-cli-foreman.edit.po
129
142
  - locale/fr/hammer-cli-foreman.po
143
+ - locale/fr/hammer-cli-foreman.po.time_stamp
130
144
  - locale/hammer-cli-foreman.pot
131
145
  - locale/it/LC_MESSAGES/hammer-cli-foreman.mo
146
+ - locale/it/hammer-cli-foreman.edit.po
132
147
  - locale/it/hammer-cli-foreman.po
148
+ - locale/it/hammer-cli-foreman.po.time_stamp
133
149
  - locale/ja/LC_MESSAGES/hammer-cli-foreman.mo
150
+ - locale/ja/hammer-cli-foreman.edit.po
134
151
  - locale/ja/hammer-cli-foreman.po
152
+ - locale/ja/hammer-cli-foreman.po.time_stamp
135
153
  - locale/ko/LC_MESSAGES/hammer-cli-foreman.mo
154
+ - locale/ko/hammer-cli-foreman.edit.po
136
155
  - locale/ko/hammer-cli-foreman.po
156
+ - locale/ko/hammer-cli-foreman.po.time_stamp
137
157
  - locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo
158
+ - locale/pt_BR/hammer-cli-foreman.edit.po
138
159
  - locale/pt_BR/hammer-cli-foreman.po
160
+ - locale/pt_BR/hammer-cli-foreman.po.time_stamp
139
161
  - locale/ru/LC_MESSAGES/hammer-cli-foreman.mo
162
+ - locale/ru/hammer-cli-foreman.edit.po
140
163
  - locale/ru/hammer-cli-foreman.po
164
+ - locale/ru/hammer-cli-foreman.po.time_stamp
141
165
  - locale/zanata.xml
142
166
  - locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo
167
+ - locale/zh_CN/hammer-cli-foreman.edit.po
143
168
  - locale/zh_CN/hammer-cli-foreman.po
169
+ - locale/zh_CN/hammer-cli-foreman.po.time_stamp
144
170
  - locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo
171
+ - locale/zh_TW/hammer-cli-foreman.edit.po
145
172
  - locale/zh_TW/hammer-cli-foreman.po
173
+ - locale/zh_TW/hammer-cli-foreman.po.time_stamp
146
174
  - test/data/1.10/foreman_api.json
147
175
  - test/data/1.11/foreman_api.json
148
176
  - test/data/README.md
177
+ - test/functional/commands/list_test.rb
149
178
  - test/functional/host_test.rb
150
179
  - test/functional/location_test.rb
151
180
  - test/functional/organization_test.rb
152
181
  - test/functional/smart_class_parameter_test.rb
182
+ - test/functional/template_test.rb
153
183
  - test/functional/test_helper.rb
184
+ - test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml
185
+ - test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
186
+ - test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
187
+ - test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml
188
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
189
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
190
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
191
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
192
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
193
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
194
+ - test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
195
+ - test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
196
+ - test/reports/TEST-HammerCLIForeman-Architecture.xml
197
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
198
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
199
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
200
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
201
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
202
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
203
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
204
+ - test/reports/TEST-HammerCLIForeman-CommonParameter.xml
205
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
206
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml
207
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml
208
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
209
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
210
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
211
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
212
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
213
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
214
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
215
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
216
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
217
+ - test/reports/TEST-HammerCLIForeman-ComputeResource.xml
218
+ - test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
219
+ - test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
220
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
221
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
222
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml
223
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
224
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
225
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
226
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml
227
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
228
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
229
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
230
+ - test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
231
+ - test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml
232
+ - test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
233
+ - test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
234
+ - test/reports/TEST-HammerCLIForeman-Domain.xml
235
+ - test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
236
+ - test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
237
+ - test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
238
+ - test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
239
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
240
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
241
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
242
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
243
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml
244
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
245
+ - test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
246
+ - test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml
247
+ - test/reports/TEST-HammerCLIForeman-Environment.xml
248
+ - test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
249
+ - test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
250
+ - test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml
251
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
252
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
253
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
254
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
255
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
256
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
257
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
258
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
259
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml
260
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
261
+ - test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml
262
+ - test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
263
+ - test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
264
+ - test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
265
+ - test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
266
+ - test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
267
+ - test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
268
+ - test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
269
+ - test/reports/TEST-HammerCLIForeman-Host.xml
270
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml
271
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
272
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml
273
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
274
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
275
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
276
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
277
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
278
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml
279
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
280
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
281
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
282
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
283
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
284
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
285
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml
286
+ - test/reports/TEST-HammerCLIForeman-Hostgroup.xml
287
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
288
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
289
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
290
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
291
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
292
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
293
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
294
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
295
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
296
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
297
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
298
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml
299
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
300
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
301
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml
302
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
303
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
304
+ - test/reports/TEST-HammerCLIForeman-Location.xml
305
+ - test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
306
+ - test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
307
+ - test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml
308
+ - test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
309
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
310
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
311
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
312
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
313
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
314
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml
315
+ - test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml
316
+ - test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
317
+ - test/reports/TEST-HammerCLIForeman-Medium.xml
318
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
319
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
320
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
321
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
322
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
323
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
324
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
325
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
326
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
327
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
328
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
329
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml
330
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
331
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
332
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
333
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
334
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
335
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
336
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
337
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
338
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
339
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
340
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
341
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
342
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml
343
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
344
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
345
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
346
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
347
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
348
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
349
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml
350
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
351
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
352
+ - test/reports/TEST-HammerCLIForeman-Organization.xml
353
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
354
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
355
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
356
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
357
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
358
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
359
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
360
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
361
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml
362
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
363
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
364
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
365
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
366
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
367
+ - test/reports/TEST-HammerCLIForeman-PartitionTable.xml
368
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
369
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
370
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
371
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
372
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
373
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
374
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
375
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
376
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
377
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
378
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
379
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
380
+ - test/reports/TEST-HammerCLIForeman-SmartProxy.xml
381
+ - test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml
382
+ - test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml
383
+ - test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
384
+ - test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
385
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
386
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
387
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
388
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
389
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
390
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
391
+ - test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml
392
+ - test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
393
+ - test/reports/TEST-HammerCLIForeman-Subnet.xml
394
+ - test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml
395
+ - test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
396
+ - test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
397
+ - test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml
398
+ - test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
399
+ - test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
400
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
401
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
402
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
403
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml
404
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
405
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
406
+ - test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
407
+ - test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
408
+ - test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
409
+ - test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml
410
+ - test/reports/TEST-HammerCLIForeman-Template.xml
411
+ - test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml
412
+ - test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
413
+ - test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
414
+ - test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
415
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
416
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
417
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
418
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml
419
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
420
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
421
+ - test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml
422
+ - test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
423
+ - test/reports/TEST-HammerCLIForeman-User.xml
424
+ - test/reports/TEST-MiniTest-Spec.xml
154
425
  - test/test_helper.rb
155
426
  - test/unit/api_test.rb
156
427
  - test/unit/apipie_resource_mock.rb
@@ -222,57 +493,301 @@ signing_key:
222
493
  specification_version: 4
223
494
  summary: Foreman commands for Hammer
224
495
  test_files:
225
- - test/functional/location_test.rb
496
+ - test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
497
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
498
+ - test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml
499
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml
500
+ - test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
501
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
502
+ - test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
503
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
504
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
505
+ - test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
506
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
507
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
508
+ - test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml
509
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml
510
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml
511
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml
512
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
513
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
514
+ - test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml
515
+ - test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
516
+ - test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
517
+ - test/reports/TEST-HammerCLIForeman-Subnet.xml
518
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml
519
+ - test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml
520
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
521
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
522
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml
523
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
524
+ - test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
525
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
526
+ - test/reports/TEST-HammerCLIForeman-Architecture.xml
527
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
528
+ - test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
529
+ - test/reports/TEST-HammerCLIForeman-Organization.xml
530
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
531
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
532
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
533
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
534
+ - test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
535
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
536
+ - test/reports/TEST-HammerCLIForeman-Location.xml
537
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
538
+ - test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
539
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
540
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
541
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
542
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
543
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
544
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
545
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
546
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml
547
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
548
+ - test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml
549
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
550
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
551
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
552
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
553
+ - test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml
554
+ - test/reports/TEST-HammerCLIForeman-PartitionTable.xml
555
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
556
+ - test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
557
+ - test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
558
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
559
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
560
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
561
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
562
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
563
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
564
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
565
+ - test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
566
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
567
+ - test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
568
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
569
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
570
+ - test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
571
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
572
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
573
+ - test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
574
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml
575
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
576
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
577
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
578
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
579
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
580
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
581
+ - test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
582
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
583
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
584
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
585
+ - test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
586
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
587
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
588
+ - test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
589
+ - test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
590
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
591
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
592
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
593
+ - test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
594
+ - test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
595
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
596
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
597
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
598
+ - test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
599
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
600
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
601
+ - test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
602
+ - test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
603
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
604
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
605
+ - test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml
606
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml
607
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
608
+ - test/reports/TEST-HammerCLIForeman-Medium.xml
609
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
610
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
611
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
612
+ - test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
613
+ - test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
614
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
615
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
616
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
617
+ - test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
618
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
619
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
620
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
621
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
622
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
623
+ - test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml
624
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
625
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
626
+ - test/reports/TEST-HammerCLIForeman-Environment.xml
627
+ - test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml
628
+ - test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
629
+ - test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
630
+ - test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
631
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
632
+ - test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
633
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
634
+ - test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
635
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
636
+ - test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
637
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
638
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
639
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
640
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
641
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
642
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml
643
+ - test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml
644
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
645
+ - test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
646
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
647
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
648
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
649
+ - test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
650
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
651
+ - test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
652
+ - test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
653
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
654
+ - test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
655
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
656
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
657
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
658
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
659
+ - test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
660
+ - test/reports/TEST-HammerCLIForeman-SmartProxy.xml
661
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml
662
+ - test/reports/TEST-HammerCLIForeman-Host.xml
663
+ - test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml
664
+ - test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml
665
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml
666
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
667
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
668
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
669
+ - test/reports/TEST-MiniTest-Spec.xml
670
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
671
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
672
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
673
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
674
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
675
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
676
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
677
+ - test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
678
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
679
+ - test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
680
+ - test/reports/TEST-HammerCLIForeman-CommonParameter.xml
681
+ - test/reports/TEST-HammerCLIForeman-User.xml
682
+ - test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
683
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
684
+ - test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
685
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
686
+ - test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
687
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
688
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
689
+ - test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
690
+ - test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
691
+ - test/reports/TEST-HammerCLIForeman-ComputeResource.xml
692
+ - test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
693
+ - test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
694
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
695
+ - test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
696
+ - test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml
697
+ - test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
698
+ - test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
699
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
700
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
701
+ - test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
702
+ - test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
703
+ - test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
704
+ - test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
705
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml
706
+ - test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml
707
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml
708
+ - test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml
709
+ - test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
710
+ - test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml
711
+ - test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
712
+ - test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
713
+ - test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
714
+ - test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
715
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
716
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml
717
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
718
+ - test/reports/TEST-HammerCLIForeman-Domain.xml
719
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
720
+ - test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml
721
+ - test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
722
+ - test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
723
+ - test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml
724
+ - test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
725
+ - test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
726
+ - test/reports/TEST-HammerCLIForeman-Hostgroup.xml
727
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
728
+ - test/reports/TEST-HammerCLIForeman-Template.xml
729
+ - test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
730
+ - test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml
731
+ - test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml
732
+ - test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
733
+ - test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
734
+ - test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
735
+ - test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
736
+ - test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
737
+ - test/functional/host_test.rb
226
738
  - test/functional/organization_test.rb
227
- - test/functional/test_helper.rb
739
+ - test/functional/location_test.rb
740
+ - test/functional/template_test.rb
228
741
  - test/functional/smart_class_parameter_test.rb
229
- - test/functional/host_test.rb
230
- - test/unit/api_test.rb
231
- - test/unit/apipie_resource_mock.rb
232
- - test/unit/architecture_test.rb
233
- - test/unit/auth_source_ldap_test.rb
234
- - test/unit/commands_test.rb
235
- - test/unit/common_parameter_test.rb
236
- - test/unit/compute_resource_test.rb
237
- - test/unit/credentials_test.rb
238
- - test/unit/data/test_api.json
742
+ - test/functional/commands/list_test.rb
743
+ - test/functional/test_helper.rb
744
+ - test/unit/image_test.rb
745
+ - test/unit/filter_test.rb
746
+ - test/unit/domain_test.rb
747
+ - test/unit/exception_handler_test.rb
239
748
  - test/unit/defaults_test.rb
749
+ - test/unit/media_test.rb
750
+ - test/unit/api_test.rb
751
+ - test/unit/host_test.rb
752
+ - test/unit/smart_variable_test.rb
753
+ - test/unit/organization_test.rb
754
+ - test/unit/smart_proxy_test.rb
755
+ - test/unit/subnet_test.rb
756
+ - test/unit/location_test.rb
240
757
  - test/unit/dependency_resolver_test.rb
241
- - test/unit/domain_test.rb
242
- - test/unit/environment_test.rb
243
- - test/unit/external_usergroup_test.rb
244
- - test/unit/fact_test.rb
245
- - test/unit/filter_test.rb
246
758
  - test/unit/helpers/command.rb
247
- - test/unit/helpers/fake_searchables.rb
248
759
  - test/unit/helpers/resource_disabled.rb
760
+ - test/unit/helpers/fake_searchables.rb
761
+ - test/unit/credentials_test.rb
762
+ - test/unit/operating_system_test.rb
763
+ - test/unit/template_test.rb
764
+ - test/unit/environment_test.rb
765
+ - test/unit/commands_test.rb
766
+ - test/unit/partition_table_test.rb
249
767
  - test/unit/hostgroup_test.rb
768
+ - test/unit/smart_class_parameter_test.rb
769
+ - test/unit/auth_source_ldap_test.rb
770
+ - test/unit/param_filters_test.rb
771
+ - test/unit/report_test.rb
772
+ - test/unit/role_test.rb
773
+ - test/unit/output/formatters_test.rb
250
774
  - test/unit/id_resolver_test.rb
251
- - test/unit/image_test.rb
252
- - test/unit/media_test.rb
253
- - test/unit/model_test.rb
254
- - test/unit/operating_system_test.rb
775
+ - test/unit/test_output_adapter.rb
255
776
  - test/unit/option_builders_test.rb
256
- - test/unit/output/formatters_test.rb
257
- - test/unit/param_filters_test.rb
258
- - test/unit/partition_table_test.rb
777
+ - test/unit/fact_test.rb
778
+ - test/unit/model_test.rb
779
+ - test/unit/compute_resource_test.rb
259
780
  - test/unit/puppet_class_test.rb
260
- - test/unit/report_test.rb
261
- - test/unit/smart_class_parameter_test.rb
262
- - test/unit/smart_proxy_test.rb
263
- - test/unit/smart_variable_test.rb
264
- - test/unit/subnet_test.rb
781
+ - test/unit/usergroup_test.rb
782
+ - test/unit/apipie_resource_mock.rb
783
+ - test/unit/common_parameter_test.rb
265
784
  - test/unit/test_helper.rb
266
- - test/unit/test_output_adapter.rb
785
+ - test/unit/architecture_test.rb
267
786
  - test/unit/user_test.rb
268
- - test/unit/usergroup_test.rb
269
- - test/unit/location_test.rb
270
- - test/unit/organization_test.rb
271
- - test/unit/role_test.rb
272
- - test/unit/exception_handler_test.rb
273
- - test/unit/template_test.rb
274
- - test/unit/host_test.rb
275
- - test/data/1.10/foreman_api.json
787
+ - test/unit/external_usergroup_test.rb
788
+ - test/unit/data/test_api.json
789
+ - test/test_helper.rb
276
790
  - test/data/README.md
791
+ - test/data/1.10/foreman_api.json
277
792
  - test/data/1.11/foreman_api.json
278
- - test/test_helper.rb
793
+ has_rdoc: