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,93 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Path 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 'lists files and directories' do
22
- result = host.ls(all: true)
23
- expect(result.data).to be_instance_of(Array)
24
-
25
- dir = result.find { |file| file.path == '.' }
26
- expect(dir.path).to eq('.')
27
-
28
- result = host.ls(path: host_json['home'], id: true, all: true)
29
- expect(result.data).to be_instance_of(Array)
30
-
31
- file = result.find { |f| f.path == '.bashrc' }
32
- expect(file.owner).to eq(1000)
33
-
34
- case os_name
35
- when 'opensuse', 'sles'
36
- expect(file.group).to eq(100)
37
- else
38
- expect(file.group).to eq(1000)
39
- end
40
- end
41
-
42
- it 'gets whoami' do
43
- expect(host.whoami.user).to eq(host_json['username'])
44
- end
45
-
46
- it 'gets pwd' do
47
- expect(host.pwd.path).to eq(host_json['home'])
48
- end
49
-
50
- it 'uses which to get path for bash' do
51
- result = host.which('bash', all: true)
52
- paths = result.map(&:path)
53
-
54
- case os_name
55
- when 'ubuntu'
56
- if host.os.version <= 18.04
57
- expect(paths).to include('/bin/bash')
58
- else
59
- expect(paths).to include('/usr/bin/bash', '/bin/bash')
60
- end
61
- when 'opensuse'
62
- ## Ignore for local testing
63
- when 'sles'
64
- expect(paths).to include('/bin/bash')
65
- else
66
- expect(paths).to include('/usr/bin/bash', '/bin/bash')
67
- end
68
- end
69
-
70
- it 'gets realpath for dir' do
71
- case os_name
72
- when 'sles'
73
- expect(host.realpath('/var/run').path).to eq('/run')
74
- when 'rhel'
75
- expect(host.realpath('/bin').path).to eq('/usr/bin')
76
- else
77
- expect(host.realpath('/etc/os-release').path).to eq('/usr/lib/os-release')
78
- end
79
- end
80
-
81
- it 'gets full path for dir with readlink' do
82
- case os_name
83
- when 'sles'
84
- expect(host.readlink('/var/run', canonicalize: true).path).to eq('/run')
85
- when 'rhel'
86
- expect(host.readlink('/bin', canonicalize: true).path).to eq('/usr/bin')
87
- else
88
- expect(host.readlink('/etc/os-release', canonicalize: true).path).to eq('/usr/lib/os-release')
89
- end
90
- end
91
- end
92
- end
93
- end
@@ -1,31 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Socket do
6
- TestHosts.each_os do |os_name|
7
- context "with #{os_name}" do
8
- let(:host_json) { TestHosts.host(os_name) }
9
-
10
- let(:host) do
11
- Kanrisuru::Remote::Host.new(
12
- host: host_json['hostname'],
13
- username: host_json['username'],
14
- keys: [host_json['ssh_key']]
15
- )
16
- end
17
-
18
- after do
19
- host.disconnect
20
- end
21
-
22
- it 'gets socket details' do
23
- result = host.ss
24
- expect(result).to be_success
25
-
26
- result = host.ss(state: 'listening')
27
- expect(result).to be_success
28
- end
29
- end
30
- end
31
- end
@@ -1,98 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Stat 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 'checks file type correctly' do
22
- expect(host.dir?('/')).to eq(true)
23
- expect(host.file?('/etc/hosts')).to eq(true)
24
-
25
- case os_name
26
- when 'sles'
27
- expect(host.block_device?('/dev/xvda')).to eq(true)
28
- else
29
- expect(host.block_device?('/dev/vda')).to eq(true)
30
- end
31
-
32
- expect(host.char_device?('/dev/tty')).to eq(true)
33
- expect(host.symlink?('/etc/mtab')).to eq(true)
34
- expect(host.inode?('/proc/uptime')).to eq(true)
35
- end
36
-
37
- it 'gets file stat' do
38
- result = host.stat(host_json['home'])
39
-
40
- expect(result.mode).to be_instance_of(Kanrisuru::Mode)
41
- expect(result.mode.directory?).to eq(true)
42
-
43
- case os_name
44
- when 'centos', 'rhel', 'fedora'
45
- expect(result.mode.numeric).to eq('700')
46
- expect(result.mode.to_i).to eq(0o700)
47
-
48
- expect(result.mode.group.read?).to eq(false)
49
- expect(result.mode.group.write?).to eq(false)
50
- expect(result.mode.group.execute?).to eq(false)
51
-
52
- expect(result.mode.other.read?).to eq(false)
53
- expect(result.mode.other.write?).to eq(false)
54
- expect(result.mode.other.execute?).to eq(false)
55
-
56
- expect(result.mode.owner.read?).to eq(true)
57
- expect(result.mode.owner.write?).to eq(true)
58
- expect(result.mode.owner.execute?).to eq(true)
59
-
60
- expect(result.mode.symbolic).to eq('drwx------')
61
- else
62
- expect(result.mode.numeric).to eq('755')
63
- expect(result.mode.to_i).to eq(0o755)
64
-
65
- expect(result.mode.group.read?).to eq(true)
66
- expect(result.mode.group.write?).to eq(false)
67
- expect(result.mode.group.execute?).to eq(true)
68
-
69
- expect(result.mode.other.read?).to eq(true)
70
- expect(result.mode.other.write?).to eq(false)
71
- expect(result.mode.other.execute?).to eq(true)
72
-
73
- expect(result.mode.owner.read?).to eq(true)
74
- expect(result.mode.owner.write?).to eq(true)
75
- expect(result.mode.owner.execute?).to eq(true)
76
-
77
- expect(result.mode.symbolic).to eq('drwxr-xr-x')
78
- end
79
-
80
- expect(result.file_type).to eq('directory')
81
-
82
- case os_name
83
- when 'opensuse', 'sles'
84
- expect(result.gid).to eq(100)
85
- expect(result.group).to eq('users')
86
- else
87
- expect(result.gid).to eq(1000)
88
- expect(result.group).to eq(host_json['username'])
89
- end
90
-
91
- expect(result.uid).to eq(1000)
92
- expect(result.user).to eq(host_json['username'])
93
-
94
- expect(result.fsize).to be >= 0
95
- end
96
- end
97
- end
98
- end
@@ -1,117 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe Kanrisuru::Core::Stream do
4
- TestHosts.each_os do |os_name|
5
- context "with #{os_name}" do
6
- before(:all) do
7
- host_json = TestHosts.host(os_name)
8
- host = Kanrisuru::Remote::Host.new(
9
- host: host_json['hostname'],
10
- username: host_json['username'],
11
- keys: [host_json['ssh_key']]
12
- )
13
-
14
- host.mkdir("#{host_json['home']}/.kanrisuru_spec_files", silent: true)
15
- host.disconnect
16
- end
17
-
18
- let(:host_json) { TestHosts.host(os_name) }
19
- let(:host) do
20
- Kanrisuru::Remote::Host.new(
21
- host: host_json['hostname'],
22
- username: host_json['username'],
23
- keys: [host_json['ssh_key']]
24
- )
25
- end
26
-
27
- let(:spec_dir) { "#{host_json['home']}/.kanrisuru_spec_files" }
28
-
29
- after do
30
- host.disconnect
31
- end
32
-
33
- after(:all) do
34
- host_json = TestHosts.host(os_name)
35
- host = Kanrisuru::Remote::Host.new(
36
- host: host_json['hostname'],
37
- username: host_json['username'],
38
- keys: [host_json['ssh_key']]
39
- )
40
-
41
- host.rmdir("#{host_json['home']}/.kanrisuru_spec_files")
42
- host.disconnect
43
- end
44
-
45
- it 'outputs beginning of a file' do
46
- file = host.file("#{spec_dir}/test-file.txt")
47
- file.touch
48
- file.append do |f|
49
- f << 'This'
50
- f << 'is'
51
- f << 'a'
52
- f << 'file!'
53
- end
54
-
55
- result = host.head("#{spec_dir}/test-file.txt", lines: 2)
56
- expect(result).to be_success
57
- expect(result.data.length).to eq(2)
58
- expect(result.data).to eq(%w[This is])
59
- end
60
-
61
- it 'outputs end of a file' do
62
- file = host.file("#{spec_dir}/test-file.txt")
63
- file.touch
64
- file.append do |f|
65
- f << 'This'
66
- f << 'is'
67
- f << 'a'
68
- f << 'file!'
69
- end
70
-
71
- result = host.tail("#{spec_dir}/test-file.txt", lines: 2)
72
- expect(result).to be_success
73
- expect(result.data.length).to eq(2)
74
- expect(result.data).to eq(['a', 'file!'])
75
- end
76
-
77
- it 'reads a chunk of text from a file' do
78
- file = host.file("#{spec_dir}/test-file-chunk.txt")
79
- file.touch
80
- file.append do |f|
81
- f << 'This'
82
- f << 'is'
83
- f << 'is'
84
- f << 'a'
85
- f << 'file'
86
- f << 'forever...'
87
- end
88
-
89
- result = host.read_file_chunk("#{spec_dir}/test-file-chunk.txt", 2, 4)
90
- expect(result).to be_success
91
- expect(result.data.length).to eq(3)
92
- expect(result.data).to eq(%w[is is a])
93
- end
94
-
95
- it 'cats a file' do
96
- result = host.cat('/etc/group')
97
- expect(result.success?).to eq(true)
98
- expect(result.data.include?('root:x:0:')).to eq(true)
99
- end
100
-
101
- it 'echoes to stdout' do
102
- result = host.echo('Hello world')
103
- expect(result.data).to eq('Hello world')
104
- end
105
-
106
- it 'seds file to stdout' do
107
- path = "#{spec_dir}/test-file.txt"
108
- result = host.echo("Hello world, this is a Cat test file.\nCat\nCat\nDog", new_file: path, mode: 'write')
109
- expect(result).to be_success
110
-
111
- result = host.sed(path, 'Cat', 'Dog')
112
- expect(result).to be_success
113
- expect(result.data).to eq("Hello world, this is a Dog test file.\nDog\nDog\nDog")
114
- end
115
- end
116
- end
117
- end
@@ -1,143 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::System 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 cpu details' do
22
- result = host.lscpu
23
- expect(result).to be_success
24
- expect(result.data).to be_instance_of(Kanrisuru::Core::System::CPUArchitecture)
25
- end
26
-
27
- it 'gets environment variables' do
28
- result = host.load_env
29
- expect(result).to be_success
30
- expect(result.data).to be_instance_of(Hash)
31
- end
32
-
33
- it 'gets open files' do
34
- host.su('root')
35
- result = host.lsof
36
- expect(result).to be_success
37
- expect(result.data).to be_instance_of(Array)
38
- end
39
-
40
- it 'gets uptime' do
41
- result = host.uptime
42
- expect(result).to be_success
43
-
44
- expect(result).to respond_to(
45
- :boot_time, :uptime, :seconds,
46
- :hours, :minutes, :days
47
- )
48
-
49
- expect(result.seconds).to be > 0
50
- expect(result.minutes).to be >= 0
51
- expect(result.hours).to be >= 0
52
- expect(result.days).to be >= 0
53
- end
54
-
55
- it 'kills pids' do
56
- command = 'sleep 100000 > /dev/null 2>&1 &'
57
-
58
- host.execute_shell("nohup #{command}")
59
- result = host.ps(user: host_json['username'])
60
- expect(result.success?).to eq(true)
61
-
62
- process = result.select do |proc|
63
- proc.command == 'sleep 100000'
64
- end
65
-
66
- pids = process.map(&:pid)
67
- result = host.kill('SIGKILL', pids)
68
- expect(result.success?).to eq(true)
69
-
70
- result = host.ps(user: host_json['username'])
71
- process = result.select do |proc|
72
- proc.command == 'sleep 100000'
73
- end
74
-
75
- expect(process).to be_empty
76
- end
77
-
78
- it 'gets kernel statistics' do
79
- result = host.kernel_statistics
80
- expect(result).to be_success
81
-
82
- expect(result.data).to respond_to(
83
- :cpu_total,
84
- :cpus,
85
- :interrupt_total,
86
- :interrupts,
87
- :ctxt,
88
- :btime,
89
- :processes,
90
- :procs_running,
91
- :procs_blocked,
92
- :softirq_total,
93
- :softirqs
94
- )
95
-
96
- expect(result.cpus.length).to eq(host.cpu.cores)
97
- end
98
-
99
- it 'gets login details' do
100
- host.su('root')
101
-
102
- result = host.last
103
- expect(result).to be_success
104
- end
105
-
106
- it 'gets failed login attempts' do
107
- host.su('root')
108
-
109
- result = host.last(failed_attempts: true)
110
- expect(result).to be_success
111
- end
112
-
113
- it 'gets process details' do
114
- result = host.ps
115
-
116
- expect(result.data).to be_instance_of(Array)
117
- process = result[0]
118
-
119
- expect(process).to respond_to(
120
- :uid, :user, :gid, :group,
121
- :pid, :ppid, :cpu_usage, :memory_usage,
122
- :stat, :priority, :flags, :policy_abbr, :policy,
123
- :cpu_time, :command
124
- )
125
-
126
- result = host.ps(user: [host_json['username']])
127
-
128
- expect(result.data).to be_instance_of(Array)
129
-
130
- process = result.find do |proc|
131
- proc.command == result.command.raw_command
132
- end
133
-
134
- expect(process.command).to eq(result.command.raw_command)
135
- end
136
-
137
- it 'gets information for users' do
138
- result = host.who
139
- expect(result.success?).to eq(true)
140
- end
141
- end
142
- end
143
- end
@@ -1,108 +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.rmdir("#{host_json['home']}/.kanrisuru_spec_files")
44
- host.disconnect
45
- end
46
-
47
- it 'uploads a template file' do
48
- path = '../templates/test.conf.erb'
49
- dest_path = "#{spec_dir}/test.conf"
50
-
51
- template = Kanrisuru::Template.new(path, array: %w[this is an array])
52
- result = host.upload(template.read, dest_path)
53
-
54
- expect(result).to be_success
55
- expect(result.mode.numeric).to eq('640')
56
- expect(result.user).to eq(host_json['username'])
57
-
58
- case os_name
59
- when 'sles', 'opensuse'
60
- expect(result.gid).to eq(100)
61
- expect(result.group).to eq('users')
62
- else
63
- expect(result.gid).to eq(1000)
64
- expect(result.group).to eq(host_json['username'])
65
- end
66
-
67
- expect(host.cat(dest_path).to_a).to eq([
68
- '<h1>Hello World</h1>',
69
- 'this',
70
- 'is',
71
- 'an',
72
- 'array'
73
- ])
74
- end
75
-
76
- it 'uploads a dir' do
77
- path = '../meta/'
78
- dest_path = "#{spec_dir}/meta"
79
-
80
- result = host.upload(path, dest_path, recursive: true)
81
- expect(result).to be_success
82
- end
83
-
84
- it 'downloads a file to local fs' do
85
- path = '../hosts-file'
86
- src_path = '/etc/hosts'
87
-
88
- result = host.download(src_path, path)
89
- expect(result).to eq(path)
90
- FileUtils.rm(path)
91
- end
92
-
93
- it 'downloads a file directly' do
94
- src_path = '/etc/hosts'
95
-
96
- result = host.download(src_path)
97
- expect(result).to be_instance_of(String)
98
- lines = result.split("\n")
99
- expect(lines.length).to be >= 1
100
- end
101
-
102
- it 'wgets url' do
103
- result = host.wget('https://example.com', directory_prefix: spec_dir)
104
- expect(result).to be_success
105
- end
106
- end
107
- end
108
- end
@@ -1,76 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::User 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
- after(:all) do
22
- host_json = TestHosts.host(os_name)
23
- host = Kanrisuru::Remote::Host.new(
24
- host: host_json['hostname'],
25
- username: host_json['username'],
26
- keys: [host_json['ssh_key']]
27
- )
28
-
29
- host.su('root')
30
- host.user?('rails')
31
- host.delete_user('rails').inspect if host.user?('rails')
32
- host.rmdir('/home/rails') if host.dir?('/home/rails')
33
- host.disconnect
34
- end
35
-
36
- it 'gets uid for user' do
37
- expect(host.get_uid(host_json['uername']).to_i).to eq(1000)
38
- expect(host.get_uid('asdf').to_i).to eq(nil)
39
- end
40
-
41
- it 'gets a user details' do
42
- result = host.get_user(host_json['username'])
43
- expect(result.uid).to eq(1000)
44
- expect(result.name).to eq(host_json['username'])
45
- expect(result.home.path).to eq(host_json['home'])
46
-
47
- case os_name
48
- when 'opensuse', 'sles'
49
- expect(result.groups[0]).to have_attributes(gid: 100, name: 'users')
50
- else
51
- expect(result.groups[0]).to have_attributes(gid: 1000, name: host_json['username'])
52
- end
53
- end
54
-
55
- it 'manages a user' do
56
- ## Need priviledge escalation to manage group
57
- host.su('root')
58
-
59
- result = host.create_user('rails', password: '123456', groups: %w[mail tty])
60
- expect(result.success?).to eq(true)
61
- expect(result.uid).to eq(1001)
62
- expect(result.groups.length).to eq(3)
63
- expect(result.shell.path).to eq('/bin/false')
64
- expect(result.home.path).to eq('/home/rails')
65
-
66
- result = host.update_user('rails', uid: 1002, shell: '/bin/bash', groups: ['audio'], append: true)
67
-
68
- expect(result.uid).to eq(1002)
69
- expect(result.shell.path).to eq('/bin/bash')
70
- expect(result.groups.length).to eq(4)
71
-
72
- expect(host.delete_user('rails').success?).to eq(true) if host.user?('rails')
73
- end
74
- end
75
- end
76
- end