kanrisuru 0.12.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (475) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -1
  3. data/README.md +5 -5
  4. data/lib/kanrisuru/command.rb +10 -0
  5. data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
  6. data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
  7. data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
  8. data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
  9. data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
  10. data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
  11. data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
  12. data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
  13. data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
  14. data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
  15. data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
  16. data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
  17. data/lib/kanrisuru/core/apt/commands.rb +14 -0
  18. data/lib/kanrisuru/core/apt/parser.rb +6 -0
  19. data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
  20. data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
  21. data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
  22. data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
  23. data/lib/kanrisuru/core/apt/types.rb +36 -0
  24. data/lib/kanrisuru/core/apt.rb +4 -284
  25. data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
  26. data/lib/kanrisuru/core/archive/commands.rb +3 -0
  27. data/lib/kanrisuru/core/archive/types.rb +9 -0
  28. data/lib/kanrisuru/core/archive.rb +3 -121
  29. data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
  30. data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
  31. data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
  32. data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
  33. data/lib/kanrisuru/core/disk/commands.rb +6 -0
  34. data/lib/kanrisuru/core/disk/parser.rb +6 -0
  35. data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
  36. data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
  37. data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
  38. data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
  39. data/lib/kanrisuru/core/disk/types.rb +21 -0
  40. data/lib/kanrisuru/core/disk.rb +5 -290
  41. data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
  42. data/lib/kanrisuru/core/dmi/commands.rb +3 -0
  43. data/lib/kanrisuru/core/dmi/parser.rb +3 -0
  44. data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
  45. data/lib/kanrisuru/core/dmi/types.rb +361 -0
  46. data/lib/kanrisuru/core/dmi.rb +4 -522
  47. data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
  48. data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
  49. data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
  50. data/lib/kanrisuru/core/file/commands/link.rb +25 -0
  51. data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
  52. data/lib/kanrisuru/core/file/commands/move.rb +48 -0
  53. data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
  54. data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
  55. data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
  56. data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
  57. data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
  58. data/lib/kanrisuru/core/file/commands.rb +29 -0
  59. data/lib/kanrisuru/core/file/parser.rb +3 -0
  60. data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
  61. data/lib/kanrisuru/core/file/types.rb +9 -0
  62. data/lib/kanrisuru/core/file.rb +4 -312
  63. data/lib/kanrisuru/core/find/commands/find.rb +97 -0
  64. data/lib/kanrisuru/core/find/commands.rb +3 -0
  65. data/lib/kanrisuru/core/find/constants.rb +9 -0
  66. data/lib/kanrisuru/core/find/parser.rb +3 -0
  67. data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
  68. data/lib/kanrisuru/core/find/types.rb +9 -0
  69. data/lib/kanrisuru/core/find.rb +5 -97
  70. data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
  71. data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
  72. data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
  73. data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
  74. data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
  75. data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
  76. data/lib/kanrisuru/core/group/commands.rb +8 -0
  77. data/lib/kanrisuru/core/group/parser.rb +4 -0
  78. data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
  79. data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
  80. data/lib/kanrisuru/core/group/types.rb +10 -0
  81. data/lib/kanrisuru/core/group.rb +4 -81
  82. data/lib/kanrisuru/core/ip/commands/address.rb +86 -0
  83. data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
  84. data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
  85. data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
  86. data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
  87. data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
  88. data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
  89. data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
  90. data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
  91. data/lib/kanrisuru/core/ip/commands.rb +26 -0
  92. data/lib/kanrisuru/core/ip/constants.rb +25 -0
  93. data/lib/kanrisuru/core/ip/parser.rb +11 -0
  94. data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
  95. data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
  96. data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
  97. data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
  98. data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
  99. data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
  100. data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
  101. data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
  102. data/lib/kanrisuru/core/ip/parsers/version.rb +15 -0
  103. data/lib/kanrisuru/core/ip/types.rb +46 -0
  104. data/lib/kanrisuru/core/ip.rb +15 -1002
  105. data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
  106. data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
  107. data/lib/kanrisuru/core/mount/commands.rb +49 -0
  108. data/lib/kanrisuru/core/mount.rb +2 -125
  109. data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
  110. data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
  111. data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
  112. data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
  113. data/lib/kanrisuru/core/path/commands/which.rb +19 -0
  114. data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
  115. data/lib/kanrisuru/core/path/commands.rb +8 -0
  116. data/lib/kanrisuru/core/path/parser.rb +4 -0
  117. data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
  118. data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
  119. data/lib/kanrisuru/core/path/types.rb +12 -0
  120. data/lib/kanrisuru/core/path.rb +4 -121
  121. data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
  122. data/lib/kanrisuru/core/socket/commands.rb +3 -0
  123. data/lib/kanrisuru/core/socket/constants.rb +29 -0
  124. data/lib/kanrisuru/core/socket/parser.rb +3 -0
  125. data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
  126. data/lib/kanrisuru/core/socket/types.rb +18 -0
  127. data/lib/kanrisuru/core/socket.rb +5 -164
  128. data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
  129. data/lib/kanrisuru/core/stat/commands.rb +3 -0
  130. data/lib/kanrisuru/core/stat/parser.rb +3 -0
  131. data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
  132. data/lib/kanrisuru/core/stat/types.rb +14 -0
  133. data/lib/kanrisuru/core/stat.rb +4 -81
  134. data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
  135. data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
  136. data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
  137. data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
  138. data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
  139. data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
  140. data/lib/kanrisuru/core/stream/commands.rb +27 -0
  141. data/lib/kanrisuru/core/stream/parser.rb +4 -0
  142. data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
  143. data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
  144. data/lib/kanrisuru/core/stream.rb +3 -104
  145. data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
  146. data/lib/kanrisuru/core/system/commands/free.rb +25 -0
  147. data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
  148. data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
  149. data/lib/kanrisuru/core/system/commands/last.rb +31 -0
  150. data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
  151. data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
  152. data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
  153. data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
  154. data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
  155. data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
  156. data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
  157. data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
  158. data/lib/kanrisuru/core/system/commands/w.rb +24 -0
  159. data/lib/kanrisuru/core/system/commands.rb +34 -0
  160. data/lib/kanrisuru/core/system/parser.rb +11 -0
  161. data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
  162. data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
  163. data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
  164. data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
  165. data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
  166. data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
  167. data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
  168. data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
  169. data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
  170. data/lib/kanrisuru/core/system/types.rb +108 -0
  171. data/lib/kanrisuru/core/system.rb +4 -687
  172. data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
  173. data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
  174. data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
  175. data/lib/kanrisuru/core/transfer/commands.rb +5 -0
  176. data/lib/kanrisuru/core/transfer/constants.rb +10 -0
  177. data/lib/kanrisuru/core/transfer.rb +3 -199
  178. data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
  179. data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
  180. data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
  181. data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
  182. data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
  183. data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
  184. data/lib/kanrisuru/core/user/commands.rb +8 -0
  185. data/lib/kanrisuru/core/user/parser.rb +4 -0
  186. data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
  187. data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
  188. data/lib/kanrisuru/core/user/types.rb +11 -0
  189. data/lib/kanrisuru/core/user.rb +4 -182
  190. data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
  191. data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
  192. data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
  193. data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
  194. data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
  195. data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
  196. data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
  197. data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
  198. data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
  199. data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
  200. data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
  201. data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
  202. data/lib/kanrisuru/core/yum/commands.rb +39 -0
  203. data/lib/kanrisuru/core/yum/parser.rb +7 -0
  204. data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
  205. data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
  206. data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
  207. data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
  208. data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
  209. data/lib/kanrisuru/core/yum/types.rb +41 -0
  210. data/lib/kanrisuru/core/yum.rb +4 -347
  211. data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
  212. data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
  213. data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
  214. data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
  215. data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
  216. data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
  217. data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
  218. data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
  219. data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
  220. data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
  221. data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
  222. data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
  223. data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
  224. data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
  225. data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
  226. data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
  227. data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
  228. data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
  229. data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
  230. data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
  231. data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
  232. data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
  233. data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
  234. data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
  235. data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
  236. data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
  237. data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
  238. data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
  239. data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
  240. data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
  241. data/lib/kanrisuru/core/zypper/commands.rb +109 -0
  242. data/lib/kanrisuru/core/zypper/constants.rb +19 -0
  243. data/lib/kanrisuru/core/zypper/parser.rb +11 -0
  244. data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
  245. data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
  246. data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
  247. data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
  248. data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
  249. data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
  250. data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
  251. data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
  252. data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
  253. data/lib/kanrisuru/core/zypper/types.rb +88 -0
  254. data/lib/kanrisuru/core/zypper.rb +5 -998
  255. data/lib/kanrisuru/version.rb +1 -1
  256. data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
  257. data/spec/functional/core/ip/ip_address_spec.rb +95 -0
  258. data/spec/functional/core/ip/ip_link_spec.rb +814 -0
  259. data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
  260. data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
  261. data/spec/functional/core/ip/ip_route_spec.rb +174 -0
  262. data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
  263. data/spec/functional/core/ip/ip_spec.rb +27 -0
  264. data/spec/functional/result_spec.rb +150 -0
  265. data/spec/{hosts.json → helper/hosts.json} +0 -0
  266. data/spec/helper/simplecov.rb +21 -0
  267. data/spec/helper/test_hosts.rb +3 -3
  268. data/spec/integration/core/apt/debian_spec.rb +9 -0
  269. data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
  270. data/spec/integration/core/archive/centos_spec.rb +9 -0
  271. data/spec/integration/core/archive/debian_spec.rb +9 -0
  272. data/spec/integration/core/archive/fedora_spec.rb +9 -0
  273. data/spec/integration/core/archive/opensuse_spec.rb +9 -0
  274. data/spec/integration/core/archive/rhel_spec.rb +9 -0
  275. data/spec/integration/core/archive/sles_spec.rb +9 -0
  276. data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
  277. data/spec/integration/core/disk/centos_spec.rb +9 -0
  278. data/spec/integration/core/disk/debian_spec.rb +9 -0
  279. data/spec/integration/core/disk/fedora_spec.rb +9 -0
  280. data/spec/integration/core/disk/opensuse_spec.rb +9 -0
  281. data/spec/integration/core/disk/rhel_spec.rb +9 -0
  282. data/spec/integration/core/disk/sles_spec.rb +9 -0
  283. data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
  284. data/spec/integration/core/dmi/centos_spec.rb +9 -0
  285. data/spec/integration/core/dmi/debian_spec.rb +9 -0
  286. data/spec/integration/core/dmi/fedora_spec.rb +9 -0
  287. data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
  288. data/spec/integration/core/dmi/rhel_spec.rb +9 -0
  289. data/spec/integration/core/dmi/sles_spec.rb +9 -0
  290. data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
  291. data/spec/integration/core/file/centos_spec.rb +9 -0
  292. data/spec/integration/core/file/debian_spec.rb +9 -0
  293. data/spec/integration/core/file/fedora_spec.rb +9 -0
  294. data/spec/integration/core/file/opensuse_spec.rb +9 -0
  295. data/spec/integration/core/file/rhel_spec.rb +9 -0
  296. data/spec/integration/core/file/sles_spec.rb +9 -0
  297. data/spec/integration/core/file/ubuntu_spec.rb +9 -0
  298. data/spec/integration/core/find/centos_spec.rb +9 -0
  299. data/spec/integration/core/find/debian_spec.rb +9 -0
  300. data/spec/integration/core/find/fedora_spec.rb +9 -0
  301. data/spec/integration/core/find/opensuse_spec.rb +9 -0
  302. data/spec/integration/core/find/rhel_spec.rb +9 -0
  303. data/spec/integration/core/find/sles_spec.rb +9 -0
  304. data/spec/integration/core/find/ubuntu_spec.rb +9 -0
  305. data/spec/integration/core/group/centos_spec.rb +9 -0
  306. data/spec/integration/core/group/debian_spec.rb +9 -0
  307. data/spec/integration/core/group/fedora_spec.rb +9 -0
  308. data/spec/integration/core/group/opensuse_spec.rb +9 -0
  309. data/spec/integration/core/group/rhel_spec.rb +9 -0
  310. data/spec/integration/core/group/sles_spec.rb +9 -0
  311. data/spec/integration/core/group/ubuntu_spec.rb +9 -0
  312. data/spec/integration/core/ip/centos_spec.rb +9 -0
  313. data/spec/integration/core/ip/debian_spec.rb +9 -0
  314. data/spec/integration/core/ip/fedora_spec.rb +9 -0
  315. data/spec/integration/core/ip/opensuse_spec.rb +9 -0
  316. data/spec/integration/core/ip/rhel_spec.rb +9 -0
  317. data/spec/integration/core/ip/sles_spec.rb +9 -0
  318. data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
  319. data/spec/integration/core/path/centos_spec.rb +9 -0
  320. data/spec/integration/core/path/debian_spec.rb +9 -0
  321. data/spec/integration/core/path/fedora_spec.rb +9 -0
  322. data/spec/integration/core/path/opensuse_spec.rb +9 -0
  323. data/spec/integration/core/path/rhel_spec.rb +9 -0
  324. data/spec/integration/core/path/sles_spec.rb +9 -0
  325. data/spec/integration/core/path/ubuntu_spec.rb +9 -0
  326. data/spec/integration/core/socket/centos_spec.rb +9 -0
  327. data/spec/integration/core/socket/debian_spec.rb +9 -0
  328. data/spec/integration/core/socket/fedora_spec.rb +9 -0
  329. data/spec/integration/core/socket/opensuse_spec.rb +9 -0
  330. data/spec/integration/core/socket/rhel_spec.rb +9 -0
  331. data/spec/integration/core/socket/sles_spec.rb +9 -0
  332. data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
  333. data/spec/integration/core/stat/centos_spec.rb +9 -0
  334. data/spec/integration/core/stat/debian_spec.rb +9 -0
  335. data/spec/integration/core/stat/fedora_spec.rb +9 -0
  336. data/spec/integration/core/stat/opensuse_spec.rb +9 -0
  337. data/spec/integration/core/stat/rhel_spec.rb +9 -0
  338. data/spec/integration/core/stat/sles_spec.rb +9 -0
  339. data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
  340. data/spec/integration/core/stream/centos_spec.rb +9 -0
  341. data/spec/integration/core/stream/debian_spec.rb +9 -0
  342. data/spec/integration/core/stream/fedora_spec.rb +9 -0
  343. data/spec/integration/core/stream/opensuse_spec.rb +9 -0
  344. data/spec/integration/core/stream/rhel_spec.rb +9 -0
  345. data/spec/integration/core/stream/sles_spec.rb +9 -0
  346. data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
  347. data/spec/integration/core/system/centos_spec.rb +9 -0
  348. data/spec/integration/core/system/debian_spec.rb +9 -0
  349. data/spec/integration/core/system/fedora_spec.rb +9 -0
  350. data/spec/integration/core/system/opensuse_spec.rb +9 -0
  351. data/spec/integration/core/system/rhel_spec.rb +9 -0
  352. data/spec/integration/core/system/sles_spec.rb +9 -0
  353. data/spec/integration/core/system/ubuntu_spec.rb +9 -0
  354. data/spec/integration/core/transfer/centos_spec.rb +9 -0
  355. data/spec/integration/core/transfer/debian_spec.rb +9 -0
  356. data/spec/integration/core/transfer/fedora_spec.rb +9 -0
  357. data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
  358. data/spec/integration/core/transfer/rhel_spec.rb +9 -0
  359. data/spec/integration/core/transfer/sles_spec.rb +9 -0
  360. data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
  361. data/spec/integration/core/user/centos_spec.rb +9 -0
  362. data/spec/integration/core/user/debian_spec.rb +9 -0
  363. data/spec/integration/core/user/fedora_spec.rb +9 -0
  364. data/spec/integration/core/user/opensuse_spec.rb +9 -0
  365. data/spec/integration/core/user/rhel_spec.rb +9 -0
  366. data/spec/integration/core/user/sles_spec.rb +9 -0
  367. data/spec/integration/core/user/ubuntu_spec.rb +9 -0
  368. data/spec/integration/core/yum/centos_spec.rb +9 -0
  369. data/spec/integration/core/yum/fedora_spec.rb +9 -0
  370. data/spec/integration/core/yum/rhel_spec.rb +9 -0
  371. data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
  372. data/spec/integration/core/zypper/sles_spec.rb +9 -0
  373. data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
  374. data/spec/integration/remote/cpu/centos_spec.rb +9 -0
  375. data/spec/integration/remote/cpu/debian_spec.rb +9 -0
  376. data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
  377. data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
  378. data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
  379. data/spec/integration/remote/cpu/sles_spec.rb +9 -0
  380. data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
  381. data/spec/integration/remote/env/centos_spec.rb +9 -0
  382. data/spec/integration/remote/env/debian_spec.rb +9 -0
  383. data/spec/integration/remote/env/fedora_spec.rb +9 -0
  384. data/spec/integration/remote/env/opensuse_spec.rb +9 -0
  385. data/spec/integration/remote/env/rhel_spec.rb +9 -0
  386. data/spec/integration/remote/env/sles_spec.rb +9 -0
  387. data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
  388. data/spec/integration/remote/fstab/centos_spec.rb +9 -0
  389. data/spec/integration/remote/fstab/debian_spec.rb +9 -0
  390. data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
  391. data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
  392. data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
  393. data/spec/integration/remote/fstab/sles_spec.rb +9 -0
  394. data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
  395. data/spec/integration/remote/host/centos_spec.rb +9 -0
  396. data/spec/integration/remote/host/debian_spec.rb +9 -0
  397. data/spec/integration/remote/host/fedora_spec.rb +9 -0
  398. data/spec/integration/remote/host/opensuse_spec.rb +9 -0
  399. data/spec/integration/remote/host/rhel_spec.rb +9 -0
  400. data/spec/integration/remote/host/sles_spec.rb +9 -0
  401. data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
  402. data/spec/integration/remote/memory/centos_spec.rb +9 -0
  403. data/spec/integration/remote/memory/debian_spec.rb +9 -0
  404. data/spec/integration/remote/memory/fedora_spec.rb +9 -0
  405. data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
  406. data/spec/integration/remote/memory/rhel_spec.rb +9 -0
  407. data/spec/integration/remote/memory/sles_spec.rb +9 -0
  408. data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
  409. data/spec/integration/remote/os/centos_spec.rb +9 -0
  410. data/spec/integration/remote/os/debian_spec.rb +9 -0
  411. data/spec/integration/remote/os/fedora_spec.rb +9 -0
  412. data/spec/integration/remote/os/opensuse_spec.rb +9 -0
  413. data/spec/integration/remote/os/rhel_spec.rb +9 -0
  414. data/spec/integration/remote/os/sles_spec.rb +9 -0
  415. data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
  416. data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
  417. data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
  418. data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
  419. data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
  420. data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
  421. data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
  422. data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
  423. data/spec/spec_helper.rb +2 -11
  424. data/spec/support/shared_examples/integration/core/apt.rb +117 -0
  425. data/spec/support/shared_examples/integration/core/archive.rb +221 -0
  426. data/spec/support/shared_examples/integration/core/disk.rb +91 -0
  427. data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
  428. data/spec/support/shared_examples/integration/core/file.rb +357 -0
  429. data/spec/support/shared_examples/integration/core/find.rb +50 -0
  430. data/spec/support/shared_examples/integration/core/group.rb +62 -0
  431. data/spec/support/shared_examples/integration/core/ip.rb +68 -0
  432. data/spec/support/shared_examples/integration/core/path.rb +90 -0
  433. data/spec/support/shared_examples/integration/core/socket.rb +27 -0
  434. data/spec/support/shared_examples/integration/core/stat.rb +95 -0
  435. data/spec/support/shared_examples/integration/core/stream.rb +112 -0
  436. data/spec/support/shared_examples/integration/core/system.rb +155 -0
  437. data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
  438. data/spec/support/shared_examples/integration/core/user.rb +72 -0
  439. data/spec/support/shared_examples/integration/core/yum.rb +115 -0
  440. data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
  441. data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
  442. data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
  443. data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
  444. data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
  445. data/spec/support/shared_examples/integration/remote/host.rb +65 -0
  446. data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
  447. data/spec/support/shared_examples/integration/remote/os.rb +60 -0
  448. data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
  449. data/spec/unit/util_spec.rb +16 -0
  450. metadata +425 -29
  451. data/spec/integration/core/apt_spec.rb +0 -119
  452. data/spec/integration/core/archive_spec.rb +0 -223
  453. data/spec/integration/core/disk_spec.rb +0 -93
  454. data/spec/integration/core/dmi_spec.rb +0 -36
  455. data/spec/integration/core/file_spec.rb +0 -359
  456. data/spec/integration/core/find_spec.rb +0 -52
  457. data/spec/integration/core/group_spec.rb +0 -64
  458. data/spec/integration/core/ip_spec.rb +0 -70
  459. data/spec/integration/core/path_spec.rb +0 -92
  460. data/spec/integration/core/socket_spec.rb +0 -29
  461. data/spec/integration/core/stat_spec.rb +0 -97
  462. data/spec/integration/core/stream_spec.rb +0 -114
  463. data/spec/integration/core/system_spec.rb +0 -142
  464. data/spec/integration/core/transfer_spec.rb +0 -103
  465. data/spec/integration/core/user_spec.rb +0 -74
  466. data/spec/integration/core/yum_spec.rb +0 -117
  467. data/spec/integration/core/zypper_spec.rb +0 -198
  468. data/spec/integration/remote/cpu_spec.rb +0 -40
  469. data/spec/integration/remote/env_spec.rb +0 -35
  470. data/spec/integration/remote/fstab_spec.rb +0 -91
  471. data/spec/integration/remote/host_spec.rb +0 -67
  472. data/spec/integration/remote/memory_spec.rb +0 -29
  473. data/spec/integration/remote/os_spec.rb +0 -62
  474. data/spec/integration/remote/remote_file_spec.rb +0 -174
  475. data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,101 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'transfer' do |os_name, host_json, spec_dir|
6
+ context "with #{os_name}" do
7
+ before(:all) do
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(spec_dir, silent: true)
15
+ host.disconnect
16
+ end
17
+
18
+ let(:host) do
19
+ Kanrisuru::Remote::Host.new(
20
+ host: host_json['hostname'],
21
+ username: host_json['username'],
22
+ keys: [host_json['ssh_key']]
23
+ )
24
+ end
25
+
26
+ after do
27
+ host.disconnect
28
+ end
29
+
30
+ after(:all) do
31
+ host = Kanrisuru::Remote::Host.new(
32
+ host: host_json['hostname'],
33
+ username: host_json['username'],
34
+ keys: [host_json['ssh_key']]
35
+ )
36
+
37
+ host.rmdir(spec_dir)
38
+ host.disconnect
39
+ end
40
+
41
+ it 'uploads a template file' do
42
+ path = '../templates/test.conf.erb'
43
+ dest_path = "#{spec_dir}/test.conf"
44
+
45
+ template = Kanrisuru::Template.new(path, array: %w[this is an array])
46
+ result = host.upload(template.read, dest_path)
47
+
48
+ expect(result).to be_success
49
+ expect(result.mode.numeric).to eq('640')
50
+ expect(result.user).to eq(host_json['username'])
51
+
52
+ case os_name
53
+ when 'sles', 'opensuse'
54
+ expect(result.gid).to eq(100)
55
+ expect(result.group).to eq('users')
56
+ else
57
+ expect(result.gid).to eq(1000)
58
+ expect(result.group).to eq(host_json['username'])
59
+ end
60
+
61
+ expect(host.cat(dest_path).to_a).to eq([
62
+ '<h1>Hello World</h1>',
63
+ 'this',
64
+ 'is',
65
+ 'an',
66
+ 'array'
67
+ ])
68
+ end
69
+
70
+ it 'uploads a dir' do
71
+ path = '../meta/'
72
+ dest_path = "#{spec_dir}/meta"
73
+
74
+ result = host.upload(path, dest_path, recursive: true)
75
+ expect(result).to be_success
76
+ end
77
+
78
+ it 'downloads a file to local fs' do
79
+ path = "../hosts-file.#{os_name}.txt"
80
+ src_path = '/etc/hosts'
81
+
82
+ result = host.download(src_path, path)
83
+ expect(result).to eq(path)
84
+ FileUtils.rm(path)
85
+ end
86
+
87
+ it 'downloads a file directly' do
88
+ src_path = '/etc/hosts'
89
+
90
+ result = host.download(src_path)
91
+ expect(result).to be_instance_of(String)
92
+ lines = result.split("\n")
93
+ expect(lines.length).to be >= 1
94
+ end
95
+
96
+ it 'wgets url' do
97
+ result = host.wget('https://example.com', directory_prefix: spec_dir)
98
+ expect(result).to be_success
99
+ end
100
+ end
101
+ end
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'user' do |os_name, host_json, _spec_dir|
6
+ context "with #{os_name}" do
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
+ after(:all) do
20
+ host = Kanrisuru::Remote::Host.new(
21
+ host: host_json['hostname'],
22
+ username: host_json['username'],
23
+ keys: [host_json['ssh_key']]
24
+ )
25
+
26
+ host.su('root')
27
+ host.user?('rails')
28
+ host.delete_user('rails').inspect if host.user?('rails')
29
+ host.rmdir('/home/rails') if host.dir?('/home/rails')
30
+ host.disconnect
31
+ end
32
+
33
+ it 'gets uid for user' do
34
+ expect(host.get_uid(host_json['uername']).to_i).to eq(1000)
35
+ expect(host.get_uid('asdf').to_i).to eq(nil)
36
+ end
37
+
38
+ it 'gets a user details' do
39
+ result = host.get_user(host_json['username'])
40
+ expect(result.uid).to eq(1000)
41
+ expect(result.name).to eq(host_json['username'])
42
+ expect(result.home.path).to eq(host_json['home'])
43
+
44
+ case os_name
45
+ when 'opensuse', 'sles'
46
+ expect(result.groups[0]).to have_attributes(gid: 100, name: 'users')
47
+ else
48
+ expect(result.groups[0]).to have_attributes(gid: 1000, name: host_json['username'])
49
+ end
50
+ end
51
+
52
+ it 'manages a user' do
53
+ ## Need priviledge escalation to manage group
54
+ host.su('root')
55
+
56
+ result = host.create_user('rails', password: '123456', groups: %w[mail tty])
57
+ expect(result.success?).to eq(true)
58
+ expect(result.uid).to eq(1001)
59
+ expect(result.groups.length).to eq(3)
60
+ expect(result.shell.path).to eq('/bin/false')
61
+ expect(result.home.path).to eq('/home/rails')
62
+
63
+ result = host.update_user('rails', uid: 1002, shell: '/bin/bash', groups: ['audio'], append: true)
64
+
65
+ expect(result.uid).to eq(1002)
66
+ expect(result.shell.path).to eq('/bin/bash')
67
+ expect(result.groups.length).to eq(4)
68
+
69
+ expect(host.delete_user('rails').success?).to eq(true) if host.user?('rails')
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,115 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'yum' do |os_name, host_json, _spec_dir|
6
+ context "with #{os_name}" do
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 'upgrades packages' do
20
+ host.su('root')
21
+ result = host.yum('upgrade')
22
+ expect(result).to be_success
23
+ end
24
+
25
+ it 'updates packages' do
26
+ host.su('root')
27
+ result = host.yum('update')
28
+ expect(result).to be_success
29
+ end
30
+
31
+ it 'installs local package from RPM' do
32
+ case os_name
33
+ when 'fedora'
34
+ package = 'rpmfusion-free-release-32.noarch.rpm'
35
+ url = "https://download1.rpmfusion.org/free/fedora/#{package}"
36
+
37
+ result = host.wget(url)
38
+ expect(result).to be_success
39
+ file = host.file("~/#{package}")
40
+ expect(file).to be_exists
41
+
42
+ host.su('root')
43
+ result = host.yum('localinstall', repos: file.expand_path)
44
+ expect(result).to be_success
45
+ end
46
+ end
47
+
48
+ it 'lists installed packages' do
49
+ result = host.yum('list', installed: true)
50
+ expect(result).to be_success
51
+ end
52
+
53
+ it 'lists repos' do
54
+ result = host.yum('repolist')
55
+ expect(result).to be_success
56
+ end
57
+
58
+ it 'lists installed repos' do
59
+ result = host.yum('repolist', repos: 'updates')
60
+ expect(result).to be_success
61
+ end
62
+
63
+ it 'searches a single package' do
64
+ result = host.yum('search', packages: 'curl')
65
+ expect(result).to be_success
66
+ end
67
+
68
+ it 'searches all packages' do
69
+ result = host.yum('search', all: true, packages: %w[curl ffmpeg])
70
+ expect(result).to be_success
71
+ end
72
+
73
+ it 'installs a package' do
74
+ host.su('root')
75
+ result = host.yum('install', packages: %(ffmpeg curl))
76
+ expect(result).to be_success
77
+ end
78
+
79
+ it 'removes installed packages' do
80
+ host.su('root')
81
+ result = host.yum('remove', packages: ['ffmpeg'])
82
+ expect(result).to be_success
83
+ end
84
+
85
+ it 'purges installed packages' do
86
+ host.su('root')
87
+ result = host.yum('erase', packages: ['ffmpeg'])
88
+ expect(result).to be_success
89
+ end
90
+
91
+ it 'gets info for one package' do
92
+ host.su('root')
93
+ result = host.yum('info', packages: 'yum')
94
+ expect(result).to be_success
95
+ end
96
+
97
+ it 'gets info for installed packages' do
98
+ host.su('root')
99
+ result = host.yum('info', installed: true)
100
+ expect(result).to be_success
101
+ end
102
+
103
+ it 'cleans packages' do
104
+ host.su('root')
105
+ result = host.yum('clean', all: true)
106
+ expect(result).to be_success
107
+ end
108
+
109
+ it 'autoremoves packages' do
110
+ host.su('root')
111
+ result = host.yum('autoremove')
112
+ expect(result).to be_success
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,196 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'zypper' do |os_name, host_json, _spec_dir|
6
+ context "with #{os_name}" do
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
+ def find_repo(host, repo_name)
20
+ repos = host.zypper('repos').data
21
+ repos.find { |repo| repo.alias == repo_name }
22
+ end
23
+
24
+ it 'lists repos' do
25
+ result = host.zypper('repos')
26
+ expect(result).to be_success
27
+ end
28
+
29
+ it 'installs a package' do
30
+ host.su('root')
31
+ result = host.zypper('install', packages: 'nginx')
32
+ expect(result).to be_success
33
+ end
34
+
35
+ it 'installs multiple packages' do
36
+ host.su('root')
37
+ result = host.zypper('install', packages: %w[curl nginx])
38
+ expect(result).to be_success
39
+ end
40
+
41
+ it 'removes a package' do
42
+ host.su('root')
43
+ result = host.zypper('remove', packages: ['nginx'])
44
+ expect(result).to be_success
45
+ end
46
+
47
+ it 'lists updates' do
48
+ result = host.zypper('list-updates')
49
+ expect(result).to be_success
50
+ end
51
+
52
+ it 'lists patches' do
53
+ result = host.zypper('list-patches')
54
+ expect(result).to be_success
55
+ end
56
+
57
+ it 'lists important and secure patches' do
58
+ result = host.zypper('list-patches', category: ['security'], severity: %w[important moderate])
59
+ expect(result).to be_success
60
+ end
61
+
62
+ it 'lists patch check counts' do
63
+ result = host.zypper('patch-check')
64
+ expect(result).to be_success
65
+ end
66
+
67
+ it 'updates a package' do
68
+ host.su('root')
69
+ result = host.zypper('update', packages: 'curl')
70
+ expect(result).to be_success
71
+ end
72
+
73
+ it 'gets info for one package' do
74
+ result = host.zypper('info', packages: 'curl')
75
+ expect(result).to be_success
76
+ end
77
+
78
+ it 'gets info for multiple packages' do
79
+ result = host.zypper('info', packages: %w[curl wget git sudo])
80
+ expect(result).to be_success
81
+ end
82
+
83
+ it 'gets info for type' do
84
+ result = host.zypper('info', type: 'package', packages: 'gc*')
85
+ expect(result).to be_success
86
+ end
87
+
88
+ it 'patches system' do
89
+ host.su('root')
90
+ result = host.zypper('patch', severity: 'moderate')
91
+ expect(result).to be_success
92
+ end
93
+
94
+ it 'performs a dist-upgrade' do
95
+ case os_name
96
+ when 'opensuse'
97
+ host.su('root')
98
+ result = host.zypper('dist-upgrade', dry_run: true)
99
+ expect(result).to be_success
100
+ when 'sles'
101
+ host.su('root')
102
+ result = host.zypper('dist-upgrade', dry_run: true, auto_agree_with_licenses: true)
103
+ expect(result).to be_success
104
+ end
105
+ end
106
+
107
+ it 'searches for single package with match' do
108
+ result = host.zypper('search', packages: 'gc*', sort_by_name: true)
109
+ expect(result).to be_success
110
+ end
111
+
112
+ it 'searches for multiple packages' do
113
+ result = host.zypper('search', packages: %w[nginx ffmpeg], sort_by_repo: true)
114
+ expect(result).to be_success
115
+ end
116
+
117
+ it 'manages a repo' do
118
+ repo_alias = 'graphics'
119
+ if os_name == 'opensuse'
120
+ repo_name = 'Graphics Project (openSUSE_Leap_15.2)'
121
+ repo_uri = 'https://download.opensuse.org/repositories/graphics/openSUSE_Leap_15.2/'
122
+ else
123
+ repo_name = 'Graphics Project (openSUSE_Leap_15.3)'
124
+ repo_uri = 'https://download.opensuse.org/repositories/graphics/openSUSE_Leap_15.3/'
125
+ end
126
+
127
+ url = "#{repo_uri}/#{repo_alias}.repo"
128
+
129
+ host.su('root')
130
+ result = host.zypper('addrepo', repos: url)
131
+ expect(result).to be_success
132
+
133
+ repo = find_repo(host, repo_alias)
134
+
135
+ expect(repo).to be_instance_of(Kanrisuru::Core::Zypper::Repo)
136
+ expect(repo.uri).to eq(repo_uri)
137
+ expect(repo.name).to eq(repo_name)
138
+
139
+ new_repo_alias = 'graphics-repo'
140
+ result = host.zypper('renamerepo', repo: repo_alias, alias: new_repo_alias)
141
+ expect(result).to be_success
142
+ repo = find_repo(host, new_repo_alias)
143
+ expect(repo.alias).to eq(new_repo_alias)
144
+
145
+ result = host.zypper('modifyrepo', repos: new_repo_alias, disable: true)
146
+ expect(result).to be_success
147
+ repo = find_repo(host, new_repo_alias)
148
+ expect(repo.enabled).to be_falsey
149
+
150
+ result = host.zypper('removerepo', repos: new_repo_alias)
151
+ expect(result).to be_success
152
+
153
+ repo = find_repo(host, new_repo_alias)
154
+ expect(repo).to be_nil
155
+ end
156
+
157
+ it 'refreshes repos' do
158
+ host.su('root')
159
+ result = host.zypper('refresh')
160
+ expect(result).to be_success
161
+ end
162
+
163
+ it 'cleans repo caches' do
164
+ host.su('root')
165
+ result = host.zypper('clean')
166
+ expect(result).to be_success
167
+ end
168
+
169
+ it 'lists services' do
170
+ result = host.zypper('services')
171
+ expect(result).to be_success
172
+ end
173
+
174
+ it 'refreshes services' do
175
+ host.su('root')
176
+ result = host.zypper('refresh-services')
177
+ expect(result).to be_success
178
+ end
179
+
180
+ it 'manages locks' do
181
+ host.su('root')
182
+ result = host.zypper('addlock', lock: 'nginx', type: 'package')
183
+ expect(result).to be_success
184
+
185
+ result = host.zypper('locks')
186
+ expect(result).to be_success
187
+
188
+ lock = result.first
189
+ expect(lock.name).to eq('nginx')
190
+ expect(lock.type).to eq('package')
191
+
192
+ result = host.zypper('removelock', lock: 'nginx')
193
+ expect(result).to be_success
194
+ end
195
+ end
196
+ end
@@ -2,8 +2,8 @@
2
2
 
3
3
  require 'spec_helper'
4
4
 
5
- RSpec.describe Kanrisuru::Remote::Cluster do
6
- context 'with ubuntu' do
5
+ RSpec.shared_examples 'cluster' do |os_name, _host_json, _spec_dir|
6
+ context "with #{os_name}" do
7
7
  it 'gets hostname for cluster' do
8
8
  cluster = described_class.new({
9
9
  host: 'localhost',
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'cpu' do |os_name, host_json, _spec_dir|
6
+ context "with #{os_name}" do
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 'gets cpu details' do
20
+ expect(host.cpu.cores).to eq(1)
21
+ expect(host.cpu.total).to eq(1)
22
+ expect(host.cpu.count).to eq(1)
23
+
24
+ expect(host.cpu.threads_per_core).to eq(1)
25
+ expect(host.cpu.cores_per_socket).to eq(1)
26
+ expect(host.cpu.sockets).to eq(1)
27
+
28
+ expect(host.cpu.hyperthreading?).to eq(false)
29
+ end
30
+
31
+ it 'gets cpu load average' do
32
+ expect(host.cpu.load_average).to be_instance_of(Array)
33
+ expect(host.cpu.load_average1).to be_instance_of(Float)
34
+ expect(host.cpu.load_average5).to be_instance_of(Float)
35
+ expect(host.cpu.load_average15).to be_instance_of(Float)
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.shared_examples 'env' do |os_name, host_json, _spec_dir|
6
+ context "with #{os_name}" do
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 'sets env var' do
20
+ host.env['HELLO'] = 'world'
21
+ host.env['KANRISURU'] = 'manage'
22
+
23
+ expect(host.env['KANRISURU']).to eq('manage')
24
+ expect(host.env.to_s).to eq('export HELLO=world; export KANRISURU=manage;')
25
+ expect(host.env.to_h).to eq({ 'HELLO' => 'world', 'KANRISURU' => 'manage' })
26
+
27
+ command = Kanrisuru::Command.new('echo $KANRISURU $HELLO')
28
+ host.execute_shell(command)
29
+
30
+ expect(command.to_s).to eq('manage world')
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,89 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.shared_examples 'fstab' do |os_name, host_json, _spec_dir|
4
+ context "with #{os_name}" do
5
+ let(:host) do
6
+ Kanrisuru::Remote::Host.new(
7
+ host: host_json['hostname'],
8
+ username: host_json['username'],
9
+ keys: [host_json['ssh_key']]
10
+ )
11
+ end
12
+
13
+ after do
14
+ host.disconnect
15
+ end
16
+
17
+ it 'outputs string version of fstab' do
18
+ host.su('root')
19
+
20
+ result = host.cat('/etc/fstab')
21
+ expect(result).to be_success
22
+ raw_file_lines = []
23
+ result.each do |line|
24
+ next if line.match(/^#/) || line == ''
25
+
26
+ raw_file_lines << line.split.join(' ')
27
+ end
28
+
29
+ raw_file_output = raw_file_lines.join("\n")
30
+ expect(raw_file_output).to eq(host.fstab.to_s)
31
+ end
32
+
33
+ it 'parses fstab' do
34
+ host.su('root')
35
+ fstab = host.fstab
36
+
37
+ entry =
38
+ case os_name
39
+ when 'opensuse'
40
+ fstab['/dev/vda3']
41
+ when 'sles'
42
+ fstab['/dev/xvda1']
43
+ else
44
+ fstab['/dev/vda1']
45
+ end
46
+
47
+ expect(fstab.get_entry(entry.uuid)).to eq(entry)
48
+ expect(fstab.get_entry(entry.label)).to eq(entry)
49
+
50
+ fstab << Kanrisuru::Remote::Fstab::Entry.new(
51
+ device: '/dev/vda14',
52
+ mount_point: '/mnt/test',
53
+ type: 'ext4',
54
+ opts: { defaults: true },
55
+ freq: '0',
56
+ passno: '0'
57
+ )
58
+
59
+ entry = fstab['/dev/vda14']
60
+ expect(entry.to_s).to eq('/dev/vda14 /mnt/test ext4 defaults 0 0')
61
+ expect(entry.device).to eq('/dev/vda14')
62
+ expect(entry.mount_point).to eq('/mnt/test')
63
+ expect(entry.type).to eq('ext4')
64
+ expect(entry.opts.to_s).to eq('defaults')
65
+ expect(entry.freq).to eq('0')
66
+ expect(entry.passno).to eq('0')
67
+
68
+ entry.opts['defaults'] = false
69
+ entry.opts['user'] = true
70
+ entry.opts['exec'] = true
71
+ entry.opts['rw'] = true
72
+ entry.opts['auto'] = true
73
+ entry.opts['relatime'] = true
74
+ entry.opts['async'] = true
75
+ entry.opts[:nodev] = true
76
+ entry.opts[:nosuid] = true
77
+ entry.opts[:owner] = true
78
+ entry.opts[:group] = true
79
+
80
+ entry.mount_point = '/mnt/test3'
81
+
82
+ expect(fstab['/dev/vda14'].to_s).to eq '/dev/vda14 /mnt/test3 ext4 ' \
83
+ 'user,exec,rw,auto,relatime,async,nodev,nosuid,owner,group 0 0'
84
+
85
+ fstab << '/dev/vda16 /mnt/test2 fat defaults,user,uid=1000,gid=1000 0 0'
86
+ expect(fstab['/dev/vda16'].to_s).to eq('/dev/vda16 /mnt/test2 fat defaults,user,uid=1000,gid=1000 0 0')
87
+ end
88
+ end
89
+ end