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,118 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Yum do
6
- TestHosts.each_os(only: %w[fedora rhel centos]) 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 'upgrades packages' do
22
- host.su('root')
23
- result = host.yum('upgrade')
24
- expect(result).to be_success
25
- end
26
-
27
- it 'updates packages' do
28
- host.su('root')
29
- result = host.yum('update')
30
- expect(result).to be_success
31
- end
32
-
33
- it 'installs local package from RPM' do
34
- case os_name
35
- when 'fedora'
36
- package = 'rpmfusion-free-release-32.noarch.rpm'
37
- url = "https://download1.rpmfusion.org/free/fedora/#{package}"
38
-
39
- result = host.wget(url)
40
- expect(result).to be_success
41
- file = host.file("~/#{package}")
42
- expect(file).to be_exists
43
-
44
- host.su('root')
45
- result = host.yum('localinstall', repos: file.expand_path)
46
- expect(result).to be_success
47
- end
48
- end
49
-
50
- it 'lists installed packages' do
51
- result = host.yum('list', installed: true)
52
- expect(result).to be_success
53
- end
54
-
55
- it 'lists repos' do
56
- result = host.yum('repolist')
57
- expect(result).to be_success
58
- end
59
-
60
- it 'lists installed repos' do
61
- result = host.yum('repolist', repos: 'updates')
62
- expect(result).to be_success
63
- end
64
-
65
- it 'searches a single package' do
66
- result = host.yum('search', packages: 'curl')
67
- expect(result).to be_success
68
- end
69
-
70
- it 'searches all packages' do
71
- result = host.yum('search', all: true, packages: %w[curl ffmpeg])
72
- expect(result).to be_success
73
- end
74
-
75
- it 'installs a package' do
76
- host.su('root')
77
- result = host.yum('install', packages: %(ffmpeg curl))
78
- expect(result).to be_success
79
- end
80
-
81
- it 'removes installed packages' do
82
- host.su('root')
83
- result = host.yum('remove', packages: ['ffmpeg'])
84
- expect(result).to be_success
85
- end
86
-
87
- it 'purges installed packages' do
88
- host.su('root')
89
- result = host.yum('erase', packages: ['ffmpeg'])
90
- expect(result).to be_success
91
- end
92
-
93
- it 'gets info for one package' do
94
- host.su('root')
95
- result = host.yum('info', packages: 'yum')
96
- expect(result).to be_success
97
- end
98
-
99
- it 'gets info for installed packages' do
100
- host.su('root')
101
- result = host.yum('info', installed: true)
102
- expect(result).to be_success
103
- end
104
-
105
- it 'cleans packages' do
106
- host.su('root')
107
- result = host.yum('clean', all: true)
108
- expect(result).to be_success
109
- end
110
-
111
- it 'autoremoves packages' do
112
- host.su('root')
113
- result = host.yum('autoremove')
114
- expect(result).to be_success
115
- end
116
- end
117
- end
118
- end
@@ -1,199 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Core::Zypper do
6
- TestHosts.each_os(only: %w[sles opensuse]) 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
- def find_repo(host, repo_name)
22
- repos = host.zypper('repos').data
23
- repos.find { |repo| repo.alias == repo_name }
24
- end
25
-
26
- it 'lists repos' do
27
- result = host.zypper('repos')
28
- expect(result).to be_success
29
- end
30
-
31
- it 'installs a package' do
32
- host.su('root')
33
- result = host.zypper('install', packages: 'nginx')
34
- expect(result).to be_success
35
- end
36
-
37
- it 'installs multiple packages' do
38
- host.su('root')
39
- result = host.zypper('install', packages: %w[curl nginx])
40
- expect(result).to be_success
41
- end
42
-
43
- it 'removes a package' do
44
- host.su('root')
45
- result = host.zypper('remove', packages: ['nginx'])
46
- expect(result).to be_success
47
- end
48
-
49
- it 'lists updates' do
50
- result = host.zypper('list-updates')
51
- expect(result).to be_success
52
- end
53
-
54
- it 'lists patches' do
55
- result = host.zypper('list-patches')
56
- expect(result).to be_success
57
- end
58
-
59
- it 'lists important and secure patches' do
60
- result = host.zypper('list-patches', category: ['security'], severity: %w[important moderate])
61
- expect(result).to be_success
62
- end
63
-
64
- it 'lists patch check counts' do
65
- result = host.zypper('patch-check')
66
- expect(result).to be_success
67
- end
68
-
69
- it 'updates a package' do
70
- host.su('root')
71
- result = host.zypper('update', packages: 'curl')
72
- expect(result).to be_success
73
- end
74
-
75
- it 'gets info for one package' do
76
- result = host.zypper('info', packages: 'curl')
77
- expect(result).to be_success
78
- end
79
-
80
- it 'gets info for multiple packages' do
81
- result = host.zypper('info', packages: %w[curl wget git sudo])
82
- expect(result).to be_success
83
- end
84
-
85
- it 'gets info for type' do
86
- result = host.zypper('info', type: 'package', packages: 'gc*')
87
- expect(result).to be_success
88
- end
89
-
90
- it 'patches system' do
91
- host.su('root')
92
- result = host.zypper('patch', severity: 'moderate')
93
- expect(result).to be_success
94
- end
95
-
96
- it 'performs a dist-upgrade' do
97
- case os_name
98
- when 'opensuse'
99
- host.su('root')
100
- result = host.zypper('dist-upgrade', dry_run: true)
101
- expect(result).to be_success
102
- when 'sles'
103
- host.su('root')
104
- result = host.zypper('dist-upgrade', dry_run: true, auto_agree_with_licenses: true)
105
- expect(result).to be_success
106
- end
107
- end
108
-
109
- it 'searches for single package with match' do
110
- result = host.zypper('search', packages: 'gc*', sort_by_name: true)
111
- expect(result).to be_success
112
- end
113
-
114
- it 'searches for multiple packages' do
115
- result = host.zypper('search', packages: %w[nginx ffmpeg], sort_by_repo: true)
116
- expect(result).to be_success
117
- end
118
-
119
- it 'manages a repo' do
120
- repo_alias = 'graphics'
121
- if os_name == 'opensuse'
122
- repo_name = 'Graphics Project (openSUSE_Leap_15.2)'
123
- repo_uri = 'https://download.opensuse.org/repositories/graphics/openSUSE_Leap_15.2/'
124
- else
125
- repo_name = 'Graphics Project (openSUSE_Leap_15.3)'
126
- repo_uri = 'https://download.opensuse.org/repositories/graphics/openSUSE_Leap_15.3/'
127
- end
128
-
129
- url = "#{repo_uri}/#{repo_alias}.repo"
130
-
131
- host.su('root')
132
- result = host.zypper('addrepo', repos: url)
133
- expect(result).to be_success
134
-
135
- repo = find_repo(host, repo_alias)
136
-
137
- expect(repo).to be_instance_of(Kanrisuru::Core::Zypper::Repo)
138
- expect(repo.uri).to eq(repo_uri)
139
- expect(repo.name).to eq(repo_name)
140
-
141
- new_repo_alias = 'graphics-repo'
142
- result = host.zypper('renamerepo', repo: repo_alias, alias: new_repo_alias)
143
- expect(result).to be_success
144
- repo = find_repo(host, new_repo_alias)
145
- expect(repo.alias).to eq(new_repo_alias)
146
-
147
- result = host.zypper('modifyrepo', repos: new_repo_alias, disable: true)
148
- expect(result).to be_success
149
- repo = find_repo(host, new_repo_alias)
150
- expect(repo.enabled).to be_falsey
151
-
152
- result = host.zypper('removerepo', repos: new_repo_alias)
153
- expect(result).to be_success
154
-
155
- repo = find_repo(host, new_repo_alias)
156
- expect(repo).to be_nil
157
- end
158
-
159
- it 'refreshes repos' do
160
- host.su('root')
161
- result = host.zypper('refresh')
162
- expect(result).to be_success
163
- end
164
-
165
- it 'cleans repo caches' do
166
- host.su('root')
167
- result = host.zypper('clean')
168
- expect(result).to be_success
169
- end
170
-
171
- it 'lists services' do
172
- result = host.zypper('services')
173
- expect(result).to be_success
174
- end
175
-
176
- it 'refreshes services' do
177
- host.su('root')
178
- result = host.zypper('refresh-services')
179
- expect(result).to be_success
180
- end
181
-
182
- it 'manages locks' do
183
- host.su('root')
184
- result = host.zypper('addlock', lock: 'nginx', type: 'package')
185
- expect(result).to be_success
186
-
187
- result = host.zypper('locks')
188
- expect(result).to be_success
189
-
190
- lock = result.first
191
- expect(lock.name).to eq('nginx')
192
- expect(lock.type).to eq('package')
193
-
194
- result = host.zypper('removelock', lock: 'nginx')
195
- expect(result).to be_success
196
- end
197
- end
198
- end
199
- end
@@ -1,41 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Remote::Cpu 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
- expect(host.cpu.cores).to eq(1)
23
- expect(host.cpu.total).to eq(1)
24
- expect(host.cpu.count).to eq(1)
25
-
26
- expect(host.cpu.threads_per_core).to eq(1)
27
- expect(host.cpu.cores_per_socket).to eq(1)
28
- expect(host.cpu.sockets).to eq(1)
29
-
30
- expect(host.cpu.hyperthreading?).to eq(false)
31
- end
32
-
33
- it 'gets cpu load average' do
34
- expect(host.cpu.load_average).to be_instance_of(Array)
35
- expect(host.cpu.load_average1).to be_instance_of(Float)
36
- expect(host.cpu.load_average5).to be_instance_of(Float)
37
- expect(host.cpu.load_average15).to be_instance_of(Float)
38
- end
39
- end
40
- end
41
- end
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Remote::Env 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 'sets env var' do
22
- host.env['HELLO'] = 'world'
23
- host.env['KANRISURU'] = 'manage'
24
-
25
- expect(host.env['KANRISURU']).to eq('manage')
26
- expect(host.env.to_s).to eq('export HELLO=world; export KANRISURU=manage;')
27
- expect(host.env.to_h).to eq({ 'HELLO' => 'world', 'KANRISURU' => 'manage' })
28
-
29
- command = Kanrisuru::Command.new('echo $KANRISURU $HELLO')
30
- host.execute_shell(command)
31
-
32
- expect(command.to_s).to eq('manage world')
33
- end
34
- end
35
- end
36
- end
@@ -1,92 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec.describe Kanrisuru::Remote::Fstab do
4
- TestHosts.each_os do |os_name|
5
- context "with #{os_name}" do
6
- let(:host_json) { TestHosts.host(os_name) }
7
- let(:host) do
8
- Kanrisuru::Remote::Host.new(
9
- host: host_json['hostname'],
10
- username: host_json['username'],
11
- keys: [host_json['ssh_key']]
12
- )
13
- end
14
-
15
- after do
16
- host.disconnect
17
- end
18
-
19
- it 'outputs string version of fstab' do
20
- host.su('root')
21
-
22
- result = host.cat('/etc/fstab')
23
- expect(result).to be_success
24
- raw_file_lines = []
25
- result.each do |line|
26
- next if line.match(/^#/) || line == ''
27
-
28
- raw_file_lines << line.split.join(' ')
29
- end
30
-
31
- raw_file_output = raw_file_lines.join("\n")
32
- expect(raw_file_output).to eq(host.fstab.to_s)
33
- end
34
-
35
- it 'parses fstab' do
36
- host.su('root')
37
- fstab = host.fstab
38
-
39
- entry =
40
- case os_name
41
- when 'opensuse'
42
- fstab['/dev/vda3']
43
- when 'sles'
44
- fstab['/dev/xvda1']
45
- else
46
- fstab['/dev/vda1']
47
- end
48
-
49
- expect(fstab.get_entry(entry.uuid)).to eq(entry)
50
- expect(fstab.get_entry(entry.label)).to eq(entry)
51
-
52
- fstab << Kanrisuru::Remote::Fstab::Entry.new(
53
- device: '/dev/vda14',
54
- mount_point: '/mnt/test',
55
- type: 'ext4',
56
- opts: { defaults: true },
57
- freq: '0',
58
- passno: '0'
59
- )
60
-
61
- entry = fstab['/dev/vda14']
62
- expect(entry.to_s).to eq('/dev/vda14 /mnt/test ext4 defaults 0 0')
63
- expect(entry.device).to eq('/dev/vda14')
64
- expect(entry.mount_point).to eq('/mnt/test')
65
- expect(entry.type).to eq('ext4')
66
- expect(entry.opts.to_s).to eq('defaults')
67
- expect(entry.freq).to eq('0')
68
- expect(entry.passno).to eq('0')
69
-
70
- entry.opts['defaults'] = false
71
- entry.opts['user'] = true
72
- entry.opts['exec'] = true
73
- entry.opts['rw'] = true
74
- entry.opts['auto'] = true
75
- entry.opts['relatime'] = true
76
- entry.opts['async'] = true
77
- entry.opts[:nodev] = true
78
- entry.opts[:nosuid] = true
79
- entry.opts[:owner] = true
80
- entry.opts[:group] = true
81
-
82
- entry.mount_point = '/mnt/test3'
83
-
84
- expect(fstab['/dev/vda14'].to_s).to eq '/dev/vda14 /mnt/test3 ext4 ' \
85
- 'user,exec,rw,auto,relatime,async,nodev,nosuid,owner,group 0 0'
86
-
87
- fstab << '/dev/vda16 /mnt/test2 fat defaults,user,uid=1000,gid=1000 0 0'
88
- expect(fstab['/dev/vda16'].to_s).to eq('/dev/vda16 /mnt/test2 fat defaults,user,uid=1000,gid=1000 0 0')
89
- end
90
- end
91
- end
92
- end
@@ -1,68 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Remote::Host 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
- described_class.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 'can ping localhost' do
22
- expect(host.ping?).to eq(true)
23
- end
24
-
25
- it 'gets hostname' do
26
- expect(host.hostname).to eq(host_json['hostname'])
27
- end
28
-
29
- it 'changes directories' do
30
- expect(host.pwd.path).to eq(host_json['home'])
31
-
32
- host.cd('../')
33
- expect(host.pwd.path).to eq('/home')
34
-
35
- host.cd('../')
36
- expect(host.pwd.path).to eq('/')
37
-
38
- host.cd('~')
39
-
40
- expect(host.pwd.path).to eq(host_json['home'])
41
-
42
- host.su('root')
43
- host.cd('/root/../etc')
44
-
45
- result = host.ls
46
- paths = result.map(&:path)
47
-
48
- expect(paths).to include('hosts')
49
- expect(paths).to include('shadow')
50
- expect(paths).to include('ssh')
51
-
52
- host.cd('default')
53
- expect(host.pwd.path).to eq('/etc/default')
54
-
55
- host.su(host_json['username'])
56
-
57
- host.cd('.')
58
- expect(host.pwd.path).to eq('/etc/default')
59
-
60
- result = host.ls(path: '/home')
61
- expect(result[0].path).to eq(host_json['username'])
62
-
63
- host.cd('/bin')
64
- expect(host.pwd.path).to eq('/bin')
65
- end
66
- end
67
- end
68
- end
@@ -1,29 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Remote::Memory 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 memory details' do
22
- expect(host.memory.total(:gb)).to be >= 0.5
23
- expect(host.memory.free(:mb)).to be >= 10.0
24
- expect(host.memory.swap).to be_instance_of(Integer)
25
- expect(host.memory.swap_free).to be_instance_of(Integer)
26
- end
27
- end
28
- end
29
- end
@@ -1,63 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'spec_helper'
4
-
5
- RSpec.describe Kanrisuru::Remote::Os 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 'detects os specs' do
22
- expect(host.os.kernel).to eq(host_json['kernel'])
23
- expect(host.os.processor).to eq('x86_64')
24
-
25
- case os_name
26
- when 'opensuse'
27
- expect(host.os.release).to eq('opensuse_leap')
28
- else
29
- expect(host.os.release).to eq(os_name)
30
- end
31
-
32
- expect(host.os.version).to be > 0.00
33
-
34
- case os_name
35
- when 'debian'
36
- expect(host.os.version).to eq(10)
37
- when 'ubuntu'
38
- expect(host.os.version).to eq(18.04)
39
- when 'fedora'
40
- expect(host.os.version).to eq(32)
41
- when 'centos'
42
- expect(host.os.version).to eq(7)
43
- when 'opensuse'
44
- expect(host.os.version).to eq(15.2)
45
- when 'rhel'
46
- expect(host.os.version).to eq(7.9)
47
- end
48
- end
49
-
50
- it 'gets uname' do
51
- expect(host.os.uname).to eq(host_json['kernel'])
52
- end
53
-
54
- it 'gets uname details' do
55
- host.os.uname(
56
- kernel_name: true,
57
- hardware_platform: true,
58
- operating_system: true
59
- )
60
- end
61
- end
62
- end
63
- end