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
@@ -1,94 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Disk do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
- let(:host) do
10
- Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
- end
16
-
17
- after do
18
- host.disconnect
19
- end
20
-
21
- it 'searches detail on block devices' do
22
- host.su('root')
23
- result = host.blkid
24
- expect(result.success?).to eq(true)
25
-
26
- device = result[0]
27
- expect(device).to respond_to(
28
- :name, :label, :type, :uuid,
29
- :label_fatboot, :part_uuid, :uuid_sub
30
- )
31
-
32
- result = host.blkid(uuid: device.uuid)
33
- expect(result.success?).to eq(true)
34
- expect(result.data).to eq(device.name)
35
-
36
- result = host.blkid(device: device.name)
37
- # puts device.name
38
- # puts result.inspect
39
- expect(result.success?).to eq(true)
40
- expect(result.data[0]).to respond_to(
41
- :name, :label, :uuid, :type, :uuid_sub, :label_fatboot, :version, :usage,
42
- :part_uuid, :part_entry_scheme, :part_entry_uuid, :part_entry_type,
43
- :part_entry_number, :part_entry_offset, :part_entry_size, :part_entry_disk,
44
- :minimum_io_size, :physical_sector_size, :logical_sector_size
45
- )
46
- end
47
-
48
- it 'gets details on block devices' do
49
- result = host.lsblk
50
- expect(result.data).to be_instance_of(Array)
51
-
52
- device = result[0]
53
-
54
- expect(device).to respond_to(
55
- :name, :maj_dev, :min_dev,
56
- :removable_device, :readonly_device,
57
- :owner, :group, :mode,
58
- :fsize, :type, :mount_point,
59
- :fs_type, :uuid, :children
60
- )
61
- end
62
-
63
- it 'gets summarize disk usage' do
64
- result = host.du(path: "#{host_json['home']}/.bashrc", summarize: true)
65
- expect(result).to be_success
66
- expect(result[0].path).to eq("#{host_json['home']}/.bashrc")
67
- end
68
-
69
- it 'gets all disk usage' do
70
- result = host.du(path: host_json['home'])
71
- expect(result).to be_success
72
- expect(result.data.length).to be >= 2
73
- end
74
-
75
- it 'gets summarized disk usage root user' do
76
- host.su('root')
77
- result = host.du(path: '/etc', summarize: true)
78
- expect(result).to be_success
79
- expect(result[0].path).to eq('/etc')
80
- end
81
-
82
- it 'gets disk free for system' do
83
- expect(host.df.data).to be_instance_of(Array)
84
- expect(host.df(inodes: true).data).to be_instance_of(Array)
85
- end
86
-
87
- it 'gets disk usage for path' do
88
- result = host.df(path: '/')
89
- expect(result.data).to be_instance_of(Array)
90
- expect(result[0].mount).to eq('/')
91
- end
92
- end
93
- end
94
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Dmi do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
- let(:host) do
10
- Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
- end
16
-
17
- after do
18
- host.disconnect
19
- end
20
-
21
- it 'parses dmi values' do
22
- host.su('root')
23
- result = host.dmi
24
- expect(result).to be_success
25
- end
26
-
27
- it 'parses dmi values with types' do
28
- host.su('root')
29
- result = host.dmi(types: ['System', 3])
30
- expect(result).to be_success
31
-
32
- expect(result.find { |i| i.dmi_type == 'System' }).to be_instance_of(Kanrisuru::Core::Dmi::System)
33
- expect(result.find { |i| i.dmi_type == 'Chassis' }).to be_instance_of(Kanrisuru::Core::Dmi::Chassis)
34
- end
35
- end
36
- end
37
- end
@@ -1,368 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::File do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- before(:all) do
9
- host_json = TestHosts.host(os_name)
10
- host = Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
-
16
- host.mkdir("#{host_json['home']}/.kanrisuru_spec_files", silent: true)
17
- host.disconnect
18
- end
19
-
20
- let(:host_json) { TestHosts.host(os_name) }
21
- let(:host) do
22
- Kanrisuru::Remote::Host.new(
23
- host: host_json['hostname'],
24
- username: host_json['username'],
25
- keys: [host_json['ssh_key']]
26
- )
27
- end
28
-
29
- let(:spec_dir) { "#{host_json['home']}/.kanrisuru_spec_files" }
30
-
31
- after do
32
- host.disconnect
33
- end
34
-
35
- after(:all) do
36
- host_json = TestHosts.host(os_name)
37
- host = Kanrisuru::Remote::Host.new(
38
- host: host_json['hostname'],
39
- username: host_json['username'],
40
- keys: [host_json['ssh_key']]
41
- )
42
-
43
- host.rm("#{host_json['home']}/.kanrisuru_spec_files", force: true, recursive: true)
44
- if host.dir?("#{host_json['home']}/extract-tar-files")
45
- host.rm("#{host_json['home']}/extract-tar-files", force: true,
46
- recursive: true)
47
- end
48
- host.disconnect
49
- end
50
-
51
- it 'changes file permission flags' do
52
- host.su('root')
53
-
54
- path = "#{spec_dir}/test.txt"
55
- host.touch(path)
56
-
57
- mode = host.stat(path).mode
58
-
59
- expect(mode).to be_instance_of(Kanrisuru::Mode)
60
-
61
- mode.numeric = 0o777
62
-
63
- mode = host.chmod(path, mode).mode
64
-
65
- expect(mode).to be_instance_of(Kanrisuru::Mode)
66
- expect(mode.numeric).to eq('777')
67
-
68
- mode.symbolic = 'g=r,o=r'
69
-
70
- mode = host.chmod(path, mode).mode
71
- expect(mode.symbolic).to eq('-rwxr--r--')
72
- expect(mode.to_i).to eq(0o744)
73
-
74
- expect do
75
- host.chmod(path, 600)
76
- end.to raise_error(ArgumentError)
77
- end
78
-
79
- it 'changes file owner and group' do
80
- path = "#{spec_dir}/test-owner.txt"
81
-
82
- host.touch(path)
83
-
84
- host.su('root')
85
- result = host.chown(path, owner: host_json['username'], group: host_json['username'])
86
-
87
- expect(result.user).to eq(host_json['username'])
88
- expect(result.uid).to eq(1000)
89
-
90
- case os_name
91
- when 'opensuse', 'sles'
92
- expect(result.group).to eq('users')
93
- expect(result.gid).to eq(100)
94
- else
95
- expect(result.group).to eq(host_json['username'])
96
- expect(result.gid).to eq(1000)
97
- end
98
-
99
- host.su('root')
100
- result = host.chown(path, owner: 'root', group: 'root')
101
-
102
- expect(result.user).to eq('root')
103
- expect(result.uid).to eq(0)
104
- expect(result.group).to eq('root')
105
- expect(result.gid).to eq(0)
106
- end
107
-
108
- it 'touches files' do
109
- result = host.touch("#{spec_dir}/test-date.txt", date: '2021-01-01')
110
-
111
- expect(result.success?).to eq(true)
112
- expect(result[0].last_modified).to be_instance_of(DateTime)
113
- expect(result[0].last_modified.to_date.to_s).to eq('2021-01-01')
114
-
115
- paths = ["#{spec_dir}/test1.config", "#{spec_dir}/test2.config", "#{spec_dir}/test3.config"]
116
- host.touch(paths)
117
-
118
- realpaths = paths.map do |path|
119
- host.realpath(path).path
120
- end
121
-
122
- result = host.touch(paths)
123
- expect(result.data).to be_instance_of(Array)
124
-
125
- current_date = Time.now.to_date.to_s
126
-
127
- result.each do |item|
128
- expect(realpaths.include?(item.path)).to eq(true)
129
- expect(item.user).to eq(host_json['username'])
130
- expect(item.fsize).to eq(0)
131
- expect(item.last_modified.to_date.to_s).to eq(current_date)
132
- expect(item.last_access.to_date.to_s).to eq(current_date)
133
- expect(item.last_changed.to_date.to_s).to eq(current_date)
134
- end
135
- end
136
-
137
- it 'soft links file' do
138
- path = "#{spec_dir}/test-file.txt"
139
-
140
- result_a = host.touch(path)[0]
141
- expect(result_a.path).to eq(host.realpath(path).path)
142
-
143
- result_b = host.symlink(path, "#{spec_dir}/test-symlink.txt")
144
-
145
- expect(host.realpath(result_b.path).path).to eq(result_a.path)
146
- expect(result_b.file_type).to eq('symbolic link')
147
- end
148
-
149
- it 'hard links file' do
150
- path = "#{spec_dir}/test-file-ln.txt"
151
- host.touch(path)
152
-
153
- result_a = host.touch(path)[0]
154
- result_b = host.link(path, "#{spec_dir}/test-link.txt")
155
-
156
- expect(result_b.inode).to eq(result_a.inode)
157
- expect(result_b.file_type).to eq('regular empty file')
158
-
159
- result = host.find(inode: result_a.inode)
160
- files = result.map do |item|
161
- host.realpath(item.path).path
162
- end
163
-
164
- expect(files.include?(host.realpath(result_a.path).path)).to eq(true)
165
- expect(files.include?(host.realpath(result_b.path).path)).to eq(true)
166
-
167
- ## Can't hard link dir
168
- expect(host.link(spec_dir.to_s, "#{spec_dir}/tmpb")).to eq(false)
169
-
170
- host.rm("#{spec_dir}/test-link.txt")
171
- end
172
-
173
- it 'creates directory' do
174
- path = "#{spec_dir}/test-dir/"
175
- result = host.mkdir(path)
176
-
177
- expect(result).to be_success
178
- expect(result.path).to eq(path)
179
- expect(result.mode.numeric).to eq('755')
180
- expect(result.file_type).to eq('directory')
181
- expect(result.uid).to eq(1000)
182
- expect(result.user).to eq(host_json['username'])
183
-
184
- case os_name
185
- when 'sles', 'opensuse'
186
- expect(result.gid).to eq(100)
187
- expect(result.group).to eq('users')
188
- else
189
- expect(result.gid).to eq(1000)
190
- expect(result.group).to eq(host_json['username'])
191
- end
192
-
193
- result = host.ls(path: spec_dir)
194
- expect(result.success?).to eq(true)
195
- selected = result.find { |item| item.path == 'test-dir' }
196
-
197
- expect(selected.path).to eq('test-dir')
198
- end
199
-
200
- it 'copies a file' do
201
- path = "#{spec_dir}/remote-file.txt"
202
- copied_path = "#{spec_dir}/remote-file-copied.txt"
203
-
204
- file = host.file(path)
205
- file.touch
206
- file.append do |f|
207
- f << 'Hello'
208
- f << 'World'
209
- end
210
-
211
- result = host.cp(path, copied_path)
212
- expect(result.success?).to eq(true)
213
-
214
- result = host.cat(copied_path)
215
- expect(result.success?).to eq(true)
216
- expect(result.data).to eq(%w[Hello World])
217
- end
218
-
219
- it 'copies directories' do
220
- path = "#{spec_dir}/remote-dir"
221
- subdir_path = "#{path}/subdir"
222
- copied_path = "#{spec_dir}/copied-dir"
223
-
224
- result = host.mkdir(path)
225
- expect(result.success?).to eq(true)
226
-
227
- result = host.mkdir(subdir_path)
228
- expect(result.success?).to eq(true)
229
-
230
- file = host.file("#{subdir_path}/test-nested.txt")
231
- file.touch
232
- file.append do |f|
233
- f << 'This is a'
234
- f << 'test file...'
235
- end
236
-
237
- result = host.cp(path, copied_path, recursive: true)
238
- expect(result.success?).to eq(true)
239
- end
240
-
241
- it 'copies with a backup' do
242
- path = "#{spec_dir}/remote-file-to-backup.txt"
243
- copied_path = "#{spec_dir}/remote-file-copied-with-backup.txt"
244
-
245
- file = host.file(path)
246
- file.touch
247
- file.append do |f|
248
- f << 'Hello'
249
- f << 'World'
250
- end
251
-
252
- result = host.cp(path, copied_path)
253
- expect(result).to be_success
254
-
255
- file.append do |f|
256
- f << 'New Content'
257
- end
258
-
259
- result = host.cp(path, copied_path, backup: true)
260
- expect(result.success?).to eq(true)
261
-
262
- result = host.ls(path: spec_dir)
263
- backup = result.find { |f| f.path == 'remote-file-copied-with-backup.txt~' }
264
- expect(backup.path).to eq('remote-file-copied-with-backup.txt~')
265
- end
266
-
267
- it 'moves files' do
268
- path = "#{spec_dir}/remote-file-to-move.txt"
269
- new_path = "#{spec_dir}/remote-file-moved.txt"
270
-
271
- file = host.file(path)
272
- file.touch
273
- file.append do |f|
274
- f << 'Hello'
275
- f << 'World'
276
- end
277
-
278
- result = host.mv(path, new_path, no_target_directory: true)
279
- expect(result.success?).to eq(true)
280
-
281
- result = host.cat(new_path)
282
- expect(result).to be_success
283
- expect(result.data).to eq(%w[Hello World])
284
- end
285
-
286
- it 'moves files into a folder' do
287
- paths = ['file1.txt', 'file2.txt', 'file3.txt']
288
- paths = paths.map { |p| "#{spec_dir}/#{p}" }
289
- new_dir = "#{spec_dir}/new_dir"
290
-
291
- result = host.mkdir(new_dir)
292
- expect(result).to be_success
293
-
294
- paths.each do |path|
295
- file = host.file(path)
296
- file.touch
297
- file.append do |f|
298
- f << 'this is a file'
299
- end
300
- end
301
-
302
- result = host.mv(paths, new_dir, target_directory: true)
303
- expect(result).to be_success
304
- end
305
-
306
- it 'moves folders' do
307
- path = "#{spec_dir}/remote-dir-to-move"
308
- moved_path = "#{spec_dir}/moved-dir"
309
-
310
- result = host.mkdir(path)
311
- expect(result).to be_success
312
-
313
- result = host.mv(path, moved_path)
314
- expect(result).to be_success
315
- end
316
-
317
- it 'removes file' do
318
- path = "#{spec_dir}/test-rm-file.txt"
319
-
320
- result = host.touch(path)[0]
321
- expect(host.empty_file?(result.path)).to eq(true)
322
-
323
- result = host.rm(path)
324
- expect(result.success?).to eq(true)
325
- expect(host.empty_file?(path)).to eq(false)
326
- end
327
-
328
- it 'removes directories' do
329
- result = host.mkdir("#{spec_dir}/directory/1", silent: true)
330
- expect(result).to be_success
331
-
332
- result = host.mkdir("#{spec_dir}/directory/2", silent: true)
333
- expect(result).to be_success
334
-
335
- result = host.mkdir("#{spec_dir}/directory/3", silent: true)
336
- expect(result).to be_success
337
-
338
- result = host.rmdir(["#{spec_dir}/directory/1", "#{spec_dir}/directory/2"])
339
- expect(result).to be_success
340
-
341
- ## Can't delete non empty dir
342
- result = host.rmdir("#{spec_dir}/directory")
343
- expect(result).to be_failure
344
-
345
- result = host.rmdir("#{spec_dir}/directory/3")
346
- expect(result).to be_success
347
- end
348
-
349
- it 'counts a file' do
350
- result = host.wc('/etc/hosts')
351
-
352
- expect(result.success?).to eq(true)
353
- expect(result).to respond_to(:lines, :words, :characters)
354
-
355
- ## Need to remap data including newline chars to get byte size
356
- data = host.cat('/etc/hosts').command.raw_result
357
- doc = data.map(&:lines).flatten
358
-
359
- words = doc.map(&:split).flatten
360
- chars = doc.map(&:length).flatten
361
-
362
- expect(result.lines).to eq(doc.length)
363
- expect(result.words).to eq(words.length)
364
- expect(result.characters).to eq(chars.sum)
365
- end
366
- end
367
- end
368
- end
@@ -1,53 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Find do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
- let(:host) do
10
- Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
- end
16
-
17
- after do
18
- host.disconnect
19
- end
20
-
21
- it 'finds home directory' do
22
- host.su('root')
23
- result = host.find(paths: '/home')
24
- home = result.find { |item| item.path == host_json['home'] }
25
- expect(home.path).to eq(host_json['home'])
26
-
27
- result = host.find(paths: ['/home'])
28
- home = result.find { |item| item.path == host_json['home'] }
29
- expect(home.path).to eq(host_json['home'])
30
- end
31
-
32
- it 'finds /etc/hosts file' do
33
- host.su('root')
34
- result = host.find(paths: '/etc', type: 'file', name: 'hosts', uid: 0, gid: 0, writeable: true, maxdepth: 1)
35
- expect(result[0].path).to eq('/etc/hosts')
36
-
37
- file = host.stat(result[0].path)
38
- expect(file.uid).to eq(0)
39
- expect(file.gid).to eq(0)
40
- end
41
-
42
- it 'finds files with regex' do
43
- result = host.find(paths: '~', regex: '.*.\\(js\\|rb\\)')
44
- expect(result.data).to be_instance_of(Array)
45
- end
46
-
47
- it 'finds files by size' do
48
- result = host.find(paths: '~', size: '+2M', type: 'file')
49
- expect(result.data).to be_instance_of(Array)
50
- end
51
- end
52
- end
53
- end
@@ -1,65 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Group do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
- let(:host) do
10
- Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
- end
16
-
17
- after do
18
- host.disconnect
19
- end
20
-
21
- it 'gets gid for group' do
22
- case os_name
23
- when 'opensuse', 'sles'
24
- expect(host.get_gid('users').to_i).to eq(100)
25
- else
26
- expect(host.get_gid(host_json['username']).to_i).to eq(1000)
27
- end
28
-
29
- expect(host.get_gid('asdf').to_i).to eq(nil)
30
- end
31
-
32
- it 'gets group details' do
33
- case os_name
34
- when 'opensuse', 'sles'
35
- result = host.get_group('users')
36
- expect(result.success?).to eq(true)
37
- expect(result.gid).to eq(100)
38
- expect(result.name).to eq('users')
39
- else
40
- result = host.get_group(host_json['username'])
41
- expect(result.success?).to eq(true)
42
- expect(result.gid).to eq(1000)
43
- expect(result.name).to eq(host_json['username'])
44
- end
45
-
46
- expect(result).to respond_to(:users)
47
- end
48
-
49
- it 'manages a group' do
50
- ## Need priviledge escalation to manage group
51
- host.su('root')
52
-
53
- if host.group?('rspec')
54
- expect(host.delete_group('rspec').success?).to eq(true)
55
- elsif host.group?('minitest')
56
- expect(host.delete_group('minitest').success?).to eq(true)
57
- end
58
-
59
- expect(host.create_group('rspec').gid).to be >= 1000
60
- expect(host.update_group('rspec', gid: 1005, new_name: 'minitest').gid).to eq(1005)
61
- expect(host.delete_group('minitest').success?).to eq(true)
62
- end
63
- end
64
- end
65
- end
@@ -1,71 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::IP do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
- let(:host) do
10
- Kanrisuru::Remote::Host.new(
11
- host: host_json['hostname'],
12
- username: host_json['username'],
13
- keys: [host_json['ssh_key']]
14
- )
15
- end
16
-
17
- after do
18
- host.disconnect
19
- end
20
-
21
- describe 'ip address' do
22
- it 'show' do
23
- result = host.ip('address', 'show', stats: true)
24
- expect(result).to be_success
25
- end
26
- end
27
-
28
- describe 'ip link' do
29
- it 'show' do
30
- result = host.ip('link', 'show', stats: true)
31
- expect(result).to be_success
32
- end
33
- end
34
-
35
- describe 'ip addrlabel' do
36
- it 'list' do
37
- result = host.ip('addrlabel', 'list')
38
- expect(result).to be_success
39
- end
40
- end
41
-
42
- describe 'ip route' do
43
- it 'show' do
44
- result = host.ip('route', 'show')
45
- expect(result).to be_success
46
- end
47
- end
48
-
49
- describe 'ip rule' do
50
- it 'show' do
51
- result = host.ip('rule', 'show')
52
- expect(result).to be_success
53
- end
54
- end
55
-
56
- describe 'ip neighbour' do
57
- it 'show' do
58
- result = host.ip('neighbour', 'show', stats: true)
59
- expect(result).to be_success
60
- end
61
- end
62
-
63
- describe 'ip maddress' do
64
- it 'show' do
65
- result = host.ip('maddress', 'show')
66
- expect(result).to be_success
67
- end
68
- end
69
- end
70
- end
71
- end