kanrisuru 0.11.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (236) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -1
  3. data/CHANGELOG.md +26 -6
  4. data/README.md +19 -91
  5. data/kanrisuru.gemspec +1 -0
  6. data/lib/kanrisuru/command.rb +7 -0
  7. data/lib/kanrisuru/core/archive.rb +11 -35
  8. data/lib/kanrisuru/core/dmi.rb +1 -1
  9. data/lib/kanrisuru/core/file.rb +4 -11
  10. data/lib/kanrisuru/core/find.rb +2 -6
  11. data/lib/kanrisuru/core/mount.rb +14 -15
  12. data/lib/kanrisuru/core/stream.rb +1 -2
  13. data/lib/kanrisuru/core/zypper.rb +6 -23
  14. data/lib/kanrisuru/os_package/collection.rb +58 -0
  15. data/lib/kanrisuru/os_package/define.rb +34 -0
  16. data/lib/kanrisuru/os_package/include.rb +163 -0
  17. data/lib/kanrisuru/os_package.rb +3 -245
  18. data/lib/kanrisuru/remote/fstab.rb +1 -1
  19. data/lib/kanrisuru/result.rb +5 -4
  20. data/lib/kanrisuru/version.rb +1 -1
  21. data/spec/functional/core/archive_spec.rb +2 -1
  22. data/spec/functional/core/mount_spec.rb +121 -0
  23. data/spec/functional/remote/cpu_spec.rb +1 -1
  24. data/spec/functional/result_spec.rb +150 -0
  25. data/spec/{hosts.json → helper/hosts.json} +0 -0
  26. data/spec/helper/simplecov.rb +21 -0
  27. data/spec/helper/stub_network.rb +20 -20
  28. data/spec/helper/test_hosts.rb +12 -2
  29. data/spec/integration/core/apt/debian_spec.rb +9 -0
  30. data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
  31. data/spec/integration/core/archive/centos_spec.rb +9 -0
  32. data/spec/integration/core/archive/debian_spec.rb +9 -0
  33. data/spec/integration/core/archive/fedora_spec.rb +9 -0
  34. data/spec/integration/core/archive/opensuse_spec.rb +9 -0
  35. data/spec/integration/core/archive/rhel_spec.rb +9 -0
  36. data/spec/integration/core/archive/sles_spec.rb +9 -0
  37. data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
  38. data/spec/integration/core/disk/centos_spec.rb +9 -0
  39. data/spec/integration/core/disk/debian_spec.rb +9 -0
  40. data/spec/integration/core/disk/fedora_spec.rb +9 -0
  41. data/spec/integration/core/disk/opensuse_spec.rb +9 -0
  42. data/spec/integration/core/disk/rhel_spec.rb +9 -0
  43. data/spec/integration/core/disk/sles_spec.rb +9 -0
  44. data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
  45. data/spec/integration/core/dmi/centos_spec.rb +9 -0
  46. data/spec/integration/core/dmi/debian_spec.rb +9 -0
  47. data/spec/integration/core/dmi/fedora_spec.rb +9 -0
  48. data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
  49. data/spec/integration/core/dmi/rhel_spec.rb +9 -0
  50. data/spec/integration/core/dmi/sles_spec.rb +9 -0
  51. data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
  52. data/spec/integration/core/file/centos_spec.rb +9 -0
  53. data/spec/integration/core/file/debian_spec.rb +9 -0
  54. data/spec/integration/core/file/fedora_spec.rb +9 -0
  55. data/spec/integration/core/file/opensuse_spec.rb +9 -0
  56. data/spec/integration/core/file/rhel_spec.rb +9 -0
  57. data/spec/integration/core/file/sles_spec.rb +9 -0
  58. data/spec/integration/core/file/ubuntu_spec.rb +9 -0
  59. data/spec/integration/core/find/centos_spec.rb +9 -0
  60. data/spec/integration/core/find/debian_spec.rb +9 -0
  61. data/spec/integration/core/find/fedora_spec.rb +9 -0
  62. data/spec/integration/core/find/opensuse_spec.rb +9 -0
  63. data/spec/integration/core/find/rhel_spec.rb +9 -0
  64. data/spec/integration/core/find/sles_spec.rb +9 -0
  65. data/spec/integration/core/find/ubuntu_spec.rb +9 -0
  66. data/spec/integration/core/group/centos_spec.rb +9 -0
  67. data/spec/integration/core/group/debian_spec.rb +9 -0
  68. data/spec/integration/core/group/fedora_spec.rb +9 -0
  69. data/spec/integration/core/group/opensuse_spec.rb +9 -0
  70. data/spec/integration/core/group/rhel_spec.rb +9 -0
  71. data/spec/integration/core/group/sles_spec.rb +9 -0
  72. data/spec/integration/core/group/ubuntu_spec.rb +9 -0
  73. data/spec/integration/core/ip/centos_spec.rb +9 -0
  74. data/spec/integration/core/ip/debian_spec.rb +9 -0
  75. data/spec/integration/core/ip/fedora_spec.rb +9 -0
  76. data/spec/integration/core/ip/opensuse_spec.rb +9 -0
  77. data/spec/integration/core/ip/rhel_spec.rb +9 -0
  78. data/spec/integration/core/ip/sles_spec.rb +9 -0
  79. data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
  80. data/spec/integration/core/path/centos_spec.rb +9 -0
  81. data/spec/integration/core/path/debian_spec.rb +9 -0
  82. data/spec/integration/core/path/fedora_spec.rb +9 -0
  83. data/spec/integration/core/path/opensuse_spec.rb +9 -0
  84. data/spec/integration/core/path/rhel_spec.rb +9 -0
  85. data/spec/integration/core/path/sles_spec.rb +9 -0
  86. data/spec/integration/core/path/ubuntu_spec.rb +9 -0
  87. data/spec/integration/core/socket/centos_spec.rb +9 -0
  88. data/spec/integration/core/socket/debian_spec.rb +9 -0
  89. data/spec/integration/core/socket/fedora_spec.rb +9 -0
  90. data/spec/integration/core/socket/opensuse_spec.rb +9 -0
  91. data/spec/integration/core/socket/rhel_spec.rb +9 -0
  92. data/spec/integration/core/socket/sles_spec.rb +9 -0
  93. data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
  94. data/spec/integration/core/stat/centos_spec.rb +9 -0
  95. data/spec/integration/core/stat/debian_spec.rb +9 -0
  96. data/spec/integration/core/stat/fedora_spec.rb +9 -0
  97. data/spec/integration/core/stat/opensuse_spec.rb +9 -0
  98. data/spec/integration/core/stat/rhel_spec.rb +9 -0
  99. data/spec/integration/core/stat/sles_spec.rb +9 -0
  100. data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
  101. data/spec/integration/core/stream/centos_spec.rb +9 -0
  102. data/spec/integration/core/stream/debian_spec.rb +9 -0
  103. data/spec/integration/core/stream/fedora_spec.rb +9 -0
  104. data/spec/integration/core/stream/opensuse_spec.rb +9 -0
  105. data/spec/integration/core/stream/rhel_spec.rb +9 -0
  106. data/spec/integration/core/stream/sles_spec.rb +9 -0
  107. data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
  108. data/spec/integration/core/system/centos_spec.rb +9 -0
  109. data/spec/integration/core/system/debian_spec.rb +9 -0
  110. data/spec/integration/core/system/fedora_spec.rb +9 -0
  111. data/spec/integration/core/system/opensuse_spec.rb +9 -0
  112. data/spec/integration/core/system/rhel_spec.rb +9 -0
  113. data/spec/integration/core/system/sles_spec.rb +9 -0
  114. data/spec/integration/core/system/ubuntu_spec.rb +9 -0
  115. data/spec/integration/core/transfer/centos_spec.rb +9 -0
  116. data/spec/integration/core/transfer/debian_spec.rb +9 -0
  117. data/spec/integration/core/transfer/fedora_spec.rb +9 -0
  118. data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
  119. data/spec/integration/core/transfer/rhel_spec.rb +9 -0
  120. data/spec/integration/core/transfer/sles_spec.rb +9 -0
  121. data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
  122. data/spec/integration/core/user/centos_spec.rb +9 -0
  123. data/spec/integration/core/user/debian_spec.rb +9 -0
  124. data/spec/integration/core/user/fedora_spec.rb +9 -0
  125. data/spec/integration/core/user/opensuse_spec.rb +9 -0
  126. data/spec/integration/core/user/rhel_spec.rb +9 -0
  127. data/spec/integration/core/user/sles_spec.rb +9 -0
  128. data/spec/integration/core/user/ubuntu_spec.rb +9 -0
  129. data/spec/integration/core/yum/centos_spec.rb +9 -0
  130. data/spec/integration/core/yum/fedora_spec.rb +9 -0
  131. data/spec/integration/core/yum/rhel_spec.rb +9 -0
  132. data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
  133. data/spec/integration/core/zypper/sles_spec.rb +9 -0
  134. data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
  135. data/spec/integration/remote/cpu/centos_spec.rb +9 -0
  136. data/spec/integration/remote/cpu/debian_spec.rb +9 -0
  137. data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
  138. data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
  139. data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
  140. data/spec/integration/remote/cpu/sles_spec.rb +9 -0
  141. data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
  142. data/spec/integration/remote/env/centos_spec.rb +9 -0
  143. data/spec/integration/remote/env/debian_spec.rb +9 -0
  144. data/spec/integration/remote/env/fedora_spec.rb +9 -0
  145. data/spec/integration/remote/env/opensuse_spec.rb +9 -0
  146. data/spec/integration/remote/env/rhel_spec.rb +9 -0
  147. data/spec/integration/remote/env/sles_spec.rb +9 -0
  148. data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
  149. data/spec/integration/remote/fstab/centos_spec.rb +9 -0
  150. data/spec/integration/remote/fstab/debian_spec.rb +9 -0
  151. data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
  152. data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
  153. data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
  154. data/spec/integration/remote/fstab/sles_spec.rb +9 -0
  155. data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
  156. data/spec/integration/remote/host/centos_spec.rb +9 -0
  157. data/spec/integration/remote/host/debian_spec.rb +9 -0
  158. data/spec/integration/remote/host/fedora_spec.rb +9 -0
  159. data/spec/integration/remote/host/opensuse_spec.rb +9 -0
  160. data/spec/integration/remote/host/rhel_spec.rb +9 -0
  161. data/spec/integration/remote/host/sles_spec.rb +9 -0
  162. data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
  163. data/spec/integration/remote/memory/centos_spec.rb +9 -0
  164. data/spec/integration/remote/memory/debian_spec.rb +9 -0
  165. data/spec/integration/remote/memory/fedora_spec.rb +9 -0
  166. data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
  167. data/spec/integration/remote/memory/rhel_spec.rb +9 -0
  168. data/spec/integration/remote/memory/sles_spec.rb +9 -0
  169. data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
  170. data/spec/integration/remote/os/centos_spec.rb +9 -0
  171. data/spec/integration/remote/os/debian_spec.rb +9 -0
  172. data/spec/integration/remote/os/fedora_spec.rb +9 -0
  173. data/spec/integration/remote/os/opensuse_spec.rb +9 -0
  174. data/spec/integration/remote/os/rhel_spec.rb +9 -0
  175. data/spec/integration/remote/os/sles_spec.rb +9 -0
  176. data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
  177. data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
  178. data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
  179. data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
  180. data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
  181. data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
  182. data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
  183. data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
  184. data/spec/spec_helper.rb +4 -4
  185. data/spec/support/shared_examples/integration/core/apt.rb +117 -0
  186. data/spec/support/shared_examples/integration/core/archive.rb +221 -0
  187. data/spec/support/shared_examples/integration/core/disk.rb +91 -0
  188. data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
  189. data/spec/support/shared_examples/integration/core/file.rb +357 -0
  190. data/spec/support/shared_examples/integration/core/find.rb +50 -0
  191. data/spec/support/shared_examples/integration/core/group.rb +62 -0
  192. data/spec/support/shared_examples/integration/core/ip.rb +68 -0
  193. data/spec/support/shared_examples/integration/core/path.rb +90 -0
  194. data/spec/support/shared_examples/integration/core/socket.rb +27 -0
  195. data/spec/support/shared_examples/integration/core/stat.rb +95 -0
  196. data/spec/support/shared_examples/integration/core/stream.rb +112 -0
  197. data/spec/support/shared_examples/integration/core/system.rb +155 -0
  198. data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
  199. data/spec/support/shared_examples/integration/core/user.rb +72 -0
  200. data/spec/support/shared_examples/integration/core/yum.rb +115 -0
  201. data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
  202. data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
  203. data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
  204. data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
  205. data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
  206. data/spec/support/shared_examples/integration/remote/host.rb +65 -0
  207. data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
  208. data/spec/support/shared_examples/integration/remote/os.rb +60 -0
  209. data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
  210. data/spec/unit/command_spec.rb +18 -0
  211. metadata +204 -30
  212. data/spec/integration/core/apt_spec.rb +0 -120
  213. data/spec/integration/core/archive_spec.rb +0 -228
  214. data/spec/integration/core/disk_spec.rb +0 -94
  215. data/spec/integration/core/dmi_spec.rb +0 -37
  216. data/spec/integration/core/file_spec.rb +0 -368
  217. data/spec/integration/core/find_spec.rb +0 -53
  218. data/spec/integration/core/group_spec.rb +0 -65
  219. data/spec/integration/core/ip_spec.rb +0 -71
  220. data/spec/integration/core/path_spec.rb +0 -93
  221. data/spec/integration/core/socket_spec.rb +0 -31
  222. data/spec/integration/core/stat_spec.rb +0 -98
  223. data/spec/integration/core/stream_spec.rb +0 -117
  224. data/spec/integration/core/system_spec.rb +0 -143
  225. data/spec/integration/core/transfer_spec.rb +0 -108
  226. data/spec/integration/core/user_spec.rb +0 -76
  227. data/spec/integration/core/yum_spec.rb +0 -118
  228. data/spec/integration/core/zypper_spec.rb +0 -199
  229. data/spec/integration/remote/cpu_spec.rb +0 -41
  230. data/spec/integration/remote/env_spec.rb +0 -36
  231. data/spec/integration/remote/fstab_spec.rb +0 -92
  232. data/spec/integration/remote/host_spec.rb +0 -68
  233. data/spec/integration/remote/memory_spec.rb +0 -29
  234. data/spec/integration/remote/os_spec.rb +0 -63
  235. data/spec/integration/remote/remote_file_spec.rb +0 -180
  236. data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,150 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.describe Kanrisuru::Result do
6
+ let(:command) { Kanrisuru::Command.new('hello') }
7
+
8
+ it 'initializes result' do
9
+ command.handle_status(0)
10
+
11
+ result = described_class.new(command)
12
+ expect(result).to be_instance_of(described_class)
13
+ end
14
+
15
+ it 'initializes with block and return struct fields' do
16
+ command.handle_status(0)
17
+ command.handle_data('world')
18
+
19
+ result = described_class.new(command) do |cmd|
20
+ Struct.new(:output).new(cmd.to_s)
21
+ end
22
+
23
+ expect(result).to respond_to(:output)
24
+ expect(result[:output]).to eq('world')
25
+ expect(result.data.output).to eq('world')
26
+ end
27
+
28
+ it 'is success from command' do
29
+ command.handle_status(0)
30
+ result = described_class.new(command)
31
+ expect(result).to be_success
32
+ end
33
+
34
+ it 'is failure from command' do
35
+ command.handle_status(1)
36
+ result = described_class.new(command)
37
+ expect(result).to be_failure
38
+ end
39
+
40
+ it 'returns exit status' do
41
+ command.handle_status(0)
42
+ result = described_class.new(command)
43
+ expect(result.status).to eq(0)
44
+
45
+ command.handle_status(1)
46
+
47
+ result = described_class.new(command)
48
+ expect(result.status).to eq(1)
49
+ end
50
+
51
+ it 'returns to_s on string result' do
52
+ command.handle_status(0)
53
+ result = described_class.new(command) do |_cmd|
54
+ 'output'
55
+ end
56
+
57
+ expect(result.to_s).to eq('output')
58
+ end
59
+
60
+ it 'returns to_a on array result' do
61
+ command.handle_status(0)
62
+ result = described_class.new(command) do |_cmd|
63
+ [0, 1, 2, 3]
64
+ end
65
+
66
+ expect(result.to_a).to eq([0, 1, 2, 3])
67
+ end
68
+
69
+ it 'returns to_a on non-array result' do
70
+ command.handle_status(0)
71
+ result = described_class.new(command) do |_cmd|
72
+ 'output'
73
+ end
74
+
75
+ expect(result.to_a).to eq(['output'])
76
+ end
77
+
78
+ it 'returns to_i on integer return value' do
79
+ command.handle_status(0)
80
+ result = described_class.new(command) do |_cmd|
81
+ 55
82
+ end
83
+
84
+ expect(result.to_i).to eq(55)
85
+ end
86
+
87
+ it 'returns to_i on non-integer return value' do
88
+ command.handle_status(0)
89
+ result = described_class.new(command) do |_cmd|
90
+ '100'
91
+ end
92
+
93
+ expect(result.to_i).to eq(100)
94
+
95
+ result = described_class.new(command) do |_cmd|
96
+ 'hello'
97
+ end
98
+
99
+ expect(result.to_i).to eq(0)
100
+
101
+ result = described_class.new(command) do |_cmd|
102
+ [0, 1, 2, 3]
103
+ end
104
+
105
+ expect(result.to_i).to eq([0, 1, 2, 3])
106
+
107
+ result = described_class.new(command) do |_cmd|
108
+ %w[0 1 2 3]
109
+ end
110
+
111
+ expect(result.to_i).to eq([0, 1, 2, 3])
112
+
113
+ result = described_class.new(command)
114
+ expect(result.to_i).to be_nil
115
+ end
116
+
117
+ it 'raises error on to_i for invalid data type' do
118
+ command.handle_status(0)
119
+ result = described_class.new(command) do |_cmd|
120
+ { 'hello' => 'world' }
121
+ end
122
+
123
+ expect do
124
+ result.to_i
125
+ end.to raise_error(NoMethodError)
126
+ end
127
+
128
+ it 'returns success string variant on inspect' do
129
+ command.handle_status(0)
130
+ result = described_class.new(command) do |_cmd|
131
+ 'hello'
132
+ end
133
+
134
+ expect(result.inspect).to eq(
135
+ "#<Kanrisuru::Result:0x#{result.object_id} @status=0 @data=\"hello\" @command=#{command.prepared_command}>"
136
+ )
137
+ end
138
+
139
+ it 'returns error string variant on inspect' do
140
+ command.handle_status(1)
141
+ command.handle_data('error: this is an error')
142
+ result = described_class.new(command) do |_cmd|
143
+ 'hello'
144
+ end
145
+
146
+ expect(result.inspect).to eq(
147
+ "#<Kanrisuru::Result:0x#{result.object_id} @status=1 @error=[\"error: this is an error\"] @command=#{command.prepared_command}>"
148
+ )
149
+ end
150
+ end
File without changes
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'simplecov'
4
+ require 'simplecov-cobertura'
5
+
6
+ SimpleCov.start do
7
+ command_name "kanrisuru-tests#{ENV['TEST_ENV_NUMBER'] || ''}"
8
+ merge_timeout 2400
9
+
10
+ formatter SimpleCov::Formatter::MultiFormatter.new([
11
+ SimpleCov::Formatter::HTMLFormatter,
12
+ SimpleCov::Formatter::CoberturaFormatter
13
+ ])
14
+ end
15
+
16
+ if ENV['TEST_ENV_NUMBER'] # parallel specs
17
+ SimpleCov.at_exit do
18
+ result = SimpleCov.result
19
+ result.format! if ParallelTests.number_of_running_processes <= 1
20
+ end
21
+ end
@@ -32,26 +32,26 @@ class StubNetwork
32
32
  end
33
33
  end
34
34
 
35
- unless Kanrisuru::Result.instance_methods(false).include?(:initialize_alias)
36
- Kanrisuru::Result.class_eval do
37
- alias_method :initialize_alias, :initialize
38
- def initialize(command, parse_result = false, &block)
39
- @command = command
40
- @data = nil
41
-
42
- @data = block.call(@command) if @command.success? && block_given? && parse_result
43
- @error = @command.to_a if @command.failure?
44
-
45
- ## Define getter methods on result that maps to
46
- ## the same methods of a data struct.
47
- return unless @command.success? && Kanrisuru::Util.present?(@data) && @data.class.ancestors.include?(Struct)
48
-
49
- method_names = @data.members
50
- self.class.class_eval do
51
- method_names.each do |method_name|
52
- define_method method_name do
53
- @data[method_name]
54
- end
35
+ return if Kanrisuru::Result.instance_methods(false).include?(:initialize_alias)
36
+
37
+ Kanrisuru::Result.class_eval do
38
+ alias_method :initialize_alias, :initialize
39
+ def initialize(command, parse_result = false, &block)
40
+ @command = command
41
+ @data = nil
42
+
43
+ @data = block.call(@command) if @command.success? && block_given? && parse_result
44
+ @error = @command.to_a if @command.failure?
45
+
46
+ ## Define getter methods on result that maps to
47
+ ## the same methods of a data struct.
48
+ return unless @command.success? && Kanrisuru::Util.present?(@data) && @data.class.ancestors.include?(Struct)
49
+
50
+ method_names = @data.members
51
+ self.class.class_eval do
52
+ method_names.each do |method_name|
53
+ define_method method_name do
54
+ @data[method_name]
55
55
  end
56
56
  end
57
57
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'securerandom'
4
+
3
5
  class TestHosts
4
6
  class << self
5
7
  def each_os(opts = {}, &block)
@@ -7,7 +9,10 @@ class TestHosts
7
9
  next unless test?(os_name)
8
10
  next if opts[:only] && !only?(opts, os_name)
9
11
 
10
- block.call(os_name)
12
+ host_json = TestHosts.host(os_name)
13
+ spec_dir = spec_dir(host_json)
14
+
15
+ block.call(os_name, host_json, spec_dir)
11
16
  end
12
17
  end
13
18
 
@@ -15,6 +20,11 @@ class TestHosts
15
20
  hosts(name)
16
21
  end
17
22
 
23
+ def spec_dir(host_json)
24
+ random_string = SecureRandom.hex
25
+ "#{host_json['home']}/.kanrisuru_spec_files_#{random_string[0..5]}"
26
+ end
27
+
18
28
  def only?(opts, name)
19
29
  ((opts[:only].instance_of?(Array) && opts[:only].include?(name)) ||
20
30
  (opts[:only].instance_of?(String) && opts[:only] == name))
@@ -56,7 +66,7 @@ class TestHosts
56
66
  end
57
67
 
58
68
  def hosts_list
59
- json_config_path = File.join('spec', 'hosts.json')
69
+ json_config_path = File.join('spec', 'helper', 'hosts.json')
60
70
  hosts_data = File.open(json_config_path).read
61
71
  JSON.parse(hosts_data)
62
72
  end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Apt do
7
+ include_examples 'apt', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Apt do
7
+ include_examples 'apt', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[centos]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[fedora]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[opensuse]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[rhel]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[sles]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Archive do
7
+ include_examples 'archive', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[centos]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[fedora]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[opensuse]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[rhel]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[sles]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Disk do
7
+ include_examples 'disk', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[centos]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[fedora]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[opensuse]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[rhel]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[sles]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json|
6
+ RSpec.describe Kanrisuru::Core::Dmi do
7
+ include_examples 'dmi', os_name, host_json
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[centos]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[fedora]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[opensuse]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[rhel]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[sles]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::File do
7
+ include_examples 'file', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[centos]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[debian]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[fedora]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[opensuse]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[rhel]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[sles]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ TestHosts.each_os(only: %w[ubuntu]) do |os_name, host_json, spec_dir|
6
+ RSpec.describe Kanrisuru::Core::Find do
7
+ include_examples 'find', os_name, host_json, spec_dir
8
+ end
9
+ end