kanrisuru 0.11.1 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (476) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -1
  3. data/CHANGELOG.md +21 -0
  4. data/README.md +13 -88
  5. data/kanrisuru.gemspec +1 -0
  6. data/lib/kanrisuru/command.rb +7 -0
  7. data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
  8. data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
  9. data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
  10. data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
  11. data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
  12. data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
  13. data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
  14. data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
  15. data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
  16. data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
  17. data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
  18. data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
  19. data/lib/kanrisuru/core/apt/commands.rb +14 -0
  20. data/lib/kanrisuru/core/apt/parser.rb +6 -0
  21. data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
  22. data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
  23. data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
  24. data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
  25. data/lib/kanrisuru/core/apt/types.rb +36 -0
  26. data/lib/kanrisuru/core/apt.rb +4 -284
  27. data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
  28. data/lib/kanrisuru/core/archive/commands.rb +3 -0
  29. data/lib/kanrisuru/core/archive/types.rb +9 -0
  30. data/lib/kanrisuru/core/archive.rb +3 -145
  31. data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
  32. data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
  33. data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
  34. data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
  35. data/lib/kanrisuru/core/disk/commands.rb +6 -0
  36. data/lib/kanrisuru/core/disk/parser.rb +6 -0
  37. data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
  38. data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
  39. data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
  40. data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
  41. data/lib/kanrisuru/core/disk/types.rb +21 -0
  42. data/lib/kanrisuru/core/disk.rb +5 -290
  43. data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
  44. data/lib/kanrisuru/core/dmi/commands.rb +3 -0
  45. data/lib/kanrisuru/core/dmi/parser.rb +3 -0
  46. data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
  47. data/lib/kanrisuru/core/dmi/types.rb +361 -0
  48. data/lib/kanrisuru/core/dmi.rb +4 -522
  49. data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
  50. data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
  51. data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
  52. data/lib/kanrisuru/core/file/commands/link.rb +25 -0
  53. data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
  54. data/lib/kanrisuru/core/file/commands/move.rb +48 -0
  55. data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
  56. data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
  57. data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
  58. data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
  59. data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
  60. data/lib/kanrisuru/core/file/commands.rb +29 -0
  61. data/lib/kanrisuru/core/file/parser.rb +3 -0
  62. data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
  63. data/lib/kanrisuru/core/file/types.rb +9 -0
  64. data/lib/kanrisuru/core/file.rb +4 -319
  65. data/lib/kanrisuru/core/find/commands/find.rb +97 -0
  66. data/lib/kanrisuru/core/find/commands.rb +3 -0
  67. data/lib/kanrisuru/core/find/constants.rb +9 -0
  68. data/lib/kanrisuru/core/find/parser.rb +3 -0
  69. data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
  70. data/lib/kanrisuru/core/find/types.rb +9 -0
  71. data/lib/kanrisuru/core/find.rb +5 -101
  72. data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
  73. data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
  74. data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
  75. data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
  76. data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
  77. data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
  78. data/lib/kanrisuru/core/group/commands.rb +8 -0
  79. data/lib/kanrisuru/core/group/parser.rb +4 -0
  80. data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
  81. data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
  82. data/lib/kanrisuru/core/group/types.rb +10 -0
  83. data/lib/kanrisuru/core/group.rb +4 -81
  84. data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
  85. data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
  86. data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
  87. data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
  88. data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
  89. data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
  90. data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
  91. data/lib/kanrisuru/core/ip/commands.rb +24 -0
  92. data/lib/kanrisuru/core/ip/constants.rb +13 -0
  93. data/lib/kanrisuru/core/ip/parser.rb +10 -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/types.rb +46 -0
  103. data/lib/kanrisuru/core/ip.rb +5 -995
  104. data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
  105. data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
  106. data/lib/kanrisuru/core/mount/commands.rb +49 -0
  107. data/lib/kanrisuru/core/mount.rb +2 -126
  108. data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
  109. data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
  110. data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
  111. data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
  112. data/lib/kanrisuru/core/path/commands/which.rb +19 -0
  113. data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
  114. data/lib/kanrisuru/core/path/commands.rb +8 -0
  115. data/lib/kanrisuru/core/path/parser.rb +4 -0
  116. data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
  117. data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
  118. data/lib/kanrisuru/core/path/types.rb +12 -0
  119. data/lib/kanrisuru/core/path.rb +4 -121
  120. data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
  121. data/lib/kanrisuru/core/socket/commands.rb +3 -0
  122. data/lib/kanrisuru/core/socket/constants.rb +29 -0
  123. data/lib/kanrisuru/core/socket/parser.rb +3 -0
  124. data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
  125. data/lib/kanrisuru/core/socket/types.rb +18 -0
  126. data/lib/kanrisuru/core/socket.rb +5 -164
  127. data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
  128. data/lib/kanrisuru/core/stat/commands.rb +3 -0
  129. data/lib/kanrisuru/core/stat/parser.rb +3 -0
  130. data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
  131. data/lib/kanrisuru/core/stat/types.rb +14 -0
  132. data/lib/kanrisuru/core/stat.rb +4 -81
  133. data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
  134. data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
  135. data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
  136. data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
  137. data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
  138. data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
  139. data/lib/kanrisuru/core/stream/commands.rb +27 -0
  140. data/lib/kanrisuru/core/stream/parser.rb +4 -0
  141. data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
  142. data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
  143. data/lib/kanrisuru/core/stream.rb +3 -105
  144. data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
  145. data/lib/kanrisuru/core/system/commands/free.rb +25 -0
  146. data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
  147. data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
  148. data/lib/kanrisuru/core/system/commands/last.rb +31 -0
  149. data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
  150. data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
  151. data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
  152. data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
  153. data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
  154. data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
  155. data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
  156. data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
  157. data/lib/kanrisuru/core/system/commands/w.rb +24 -0
  158. data/lib/kanrisuru/core/system/commands.rb +34 -0
  159. data/lib/kanrisuru/core/system/parser.rb +11 -0
  160. data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
  161. data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
  162. data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
  163. data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
  164. data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
  165. data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
  166. data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
  167. data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
  168. data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
  169. data/lib/kanrisuru/core/system/types.rb +108 -0
  170. data/lib/kanrisuru/core/system.rb +4 -687
  171. data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
  172. data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
  173. data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
  174. data/lib/kanrisuru/core/transfer/commands.rb +5 -0
  175. data/lib/kanrisuru/core/transfer/constants.rb +10 -0
  176. data/lib/kanrisuru/core/transfer.rb +3 -199
  177. data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
  178. data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
  179. data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
  180. data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
  181. data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
  182. data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
  183. data/lib/kanrisuru/core/user/commands.rb +8 -0
  184. data/lib/kanrisuru/core/user/parser.rb +4 -0
  185. data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
  186. data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
  187. data/lib/kanrisuru/core/user/types.rb +11 -0
  188. data/lib/kanrisuru/core/user.rb +4 -182
  189. data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
  190. data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
  191. data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
  192. data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
  193. data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
  194. data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
  195. data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
  196. data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
  197. data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
  198. data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
  199. data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
  200. data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
  201. data/lib/kanrisuru/core/yum/commands.rb +39 -0
  202. data/lib/kanrisuru/core/yum/parser.rb +7 -0
  203. data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
  204. data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
  205. data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
  206. data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
  207. data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
  208. data/lib/kanrisuru/core/yum/types.rb +41 -0
  209. data/lib/kanrisuru/core/yum.rb +4 -347
  210. data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
  211. data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
  212. data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
  213. data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
  214. data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
  215. data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
  216. data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
  217. data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
  218. data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
  219. data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
  220. data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
  221. data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
  222. data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
  223. data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
  224. data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
  225. data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
  226. data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
  227. data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
  228. data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
  229. data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
  230. data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
  231. data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
  232. data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
  233. data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
  234. data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
  235. data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
  236. data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
  237. data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
  238. data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
  239. data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
  240. data/lib/kanrisuru/core/zypper/commands.rb +109 -0
  241. data/lib/kanrisuru/core/zypper/constants.rb +19 -0
  242. data/lib/kanrisuru/core/zypper/parser.rb +11 -0
  243. data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
  244. data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
  245. data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
  246. data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
  247. data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
  248. data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
  249. data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
  250. data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
  251. data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
  252. data/lib/kanrisuru/core/zypper/types.rb +88 -0
  253. data/lib/kanrisuru/core/zypper.rb +5 -1015
  254. data/lib/kanrisuru/os_package/collection.rb +58 -0
  255. data/lib/kanrisuru/os_package/define.rb +34 -0
  256. data/lib/kanrisuru/os_package/include.rb +163 -0
  257. data/lib/kanrisuru/os_package.rb +3 -245
  258. data/lib/kanrisuru/remote/fstab.rb +1 -1
  259. data/lib/kanrisuru/result.rb +5 -4
  260. data/lib/kanrisuru/version.rb +1 -1
  261. data/spec/functional/core/archive_spec.rb +2 -1
  262. data/spec/functional/core/mount_spec.rb +121 -0
  263. data/spec/functional/result_spec.rb +150 -0
  264. data/spec/{hosts.json → helper/hosts.json} +0 -0
  265. data/spec/helper/simplecov.rb +21 -0
  266. data/spec/helper/stub_network.rb +1 -1
  267. data/spec/helper/test_hosts.rb +12 -2
  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 +4 -4
  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/command_spec.rb +18 -0
  450. data/spec/unit/util_spec.rb +16 -0
  451. metadata +433 -30
  452. data/spec/integration/core/apt_spec.rb +0 -120
  453. data/spec/integration/core/archive_spec.rb +0 -228
  454. data/spec/integration/core/disk_spec.rb +0 -94
  455. data/spec/integration/core/dmi_spec.rb +0 -37
  456. data/spec/integration/core/file_spec.rb +0 -368
  457. data/spec/integration/core/find_spec.rb +0 -53
  458. data/spec/integration/core/group_spec.rb +0 -65
  459. data/spec/integration/core/ip_spec.rb +0 -71
  460. data/spec/integration/core/path_spec.rb +0 -93
  461. data/spec/integration/core/socket_spec.rb +0 -31
  462. data/spec/integration/core/stat_spec.rb +0 -98
  463. data/spec/integration/core/stream_spec.rb +0 -117
  464. data/spec/integration/core/system_spec.rb +0 -143
  465. data/spec/integration/core/transfer_spec.rb +0 -108
  466. data/spec/integration/core/user_spec.rb +0 -76
  467. data/spec/integration/core/yum_spec.rb +0 -118
  468. data/spec/integration/core/zypper_spec.rb +0 -199
  469. data/spec/integration/remote/cpu_spec.rb +0 -41
  470. data/spec/integration/remote/env_spec.rb +0 -36
  471. data/spec/integration/remote/fstab_spec.rb +0 -92
  472. data/spec/integration/remote/host_spec.rb +0 -68
  473. data/spec/integration/remote/memory_spec.rb +0 -29
  474. data/spec/integration/remote/os_spec.rb +0 -63
  475. data/spec/integration/remote/remote_file_spec.rb +0 -180
  476. data/spec/zz_reboot_spec.rb +0 -46
@@ -28,4 +28,22 @@ RSpec.describe Kanrisuru::Command do
28
28
  expect(command).to respond_to(:append_flag)
29
29
  expect(command).to respond_to(:append_valid_exit_code)
30
30
  end
31
+
32
+ it 'does not append nil array values' do
33
+ command = described_class.new('hello')
34
+ command.append_array(nil)
35
+ expect(command.raw_command).to eq('hello')
36
+ end
37
+
38
+ it 'appends string array values' do
39
+ command = described_class.new('ls')
40
+ command.append_array('/etc')
41
+ expect(command.raw_command).to eq('ls /etc')
42
+ end
43
+
44
+ it 'appends array values' do
45
+ command = described_class.new('ls')
46
+ command.append_array(['/proc/', '/etc', '/var', '/dev'])
47
+ expect(command.raw_command).to eq('ls /proc/ /etc /var /dev')
48
+ end
31
49
  end
@@ -15,6 +15,22 @@ RSpec.describe Kanrisuru::Util do
15
15
  expect(described_class.present?(nil)).to eq(false)
16
16
  end
17
17
 
18
+ it 'joins strings into array' do
19
+ expect(described_class.array_join_string(%w[opt1 opt2 opt3])).to eq('opt1,opt2,opt3')
20
+ expect(described_class.array_join_string(%w[opt1 opt2 opt3], ' | ')).to eq('opt1 | opt2 | opt3')
21
+ expect(described_class.array_join_string('opt1, opt2, opt3')).to eq('opt1, opt2, opt3')
22
+ end
23
+
24
+ it 'still joins string with depecrated method' do
25
+ allow(Kanrisuru.logger).to receive(:info)
26
+ expect(Kanrisuru.logger).to receive(:info) do |&block|
27
+ expect(block.call).to eq('DEPRECATION WARNING: string_join_array will be removed in the upcoming major release. Use array_join_string instead.')
28
+ end
29
+
30
+ expect(described_class.string_join_array('a')).to eq('a')
31
+ expect(described_class.string_join_array(%w[a b c])).to eq('a,b,c')
32
+ end
33
+
18
34
  it 'camelizes strings' do
19
35
  expect(described_class.camelize('hello_world')).to eq('HelloWorld')
20
36
  expect(described_class.camelize('helloworld')).to eq('Helloworld')
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kanrisuru
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Mammina
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-04 00:00:00.000000000 Z
11
+ date: 2021-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: parallel_tests
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rspec
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -150,26 +164,258 @@ files:
150
164
  - lib/kanrisuru/command.rb
151
165
  - lib/kanrisuru/core.rb
152
166
  - lib/kanrisuru/core/apt.rb
167
+ - lib/kanrisuru/core/apt/commands.rb
168
+ - lib/kanrisuru/core/apt/commands/autoclean.rb
169
+ - lib/kanrisuru/core/apt/commands/autoremove.rb
170
+ - lib/kanrisuru/core/apt/commands/clean.rb
171
+ - lib/kanrisuru/core/apt/commands/full_upgrade.rb
172
+ - lib/kanrisuru/core/apt/commands/install.rb
173
+ - lib/kanrisuru/core/apt/commands/list.rb
174
+ - lib/kanrisuru/core/apt/commands/purge.rb
175
+ - lib/kanrisuru/core/apt/commands/remove.rb
176
+ - lib/kanrisuru/core/apt/commands/search.rb
177
+ - lib/kanrisuru/core/apt/commands/show.rb
178
+ - lib/kanrisuru/core/apt/commands/update.rb
179
+ - lib/kanrisuru/core/apt/commands/upgrade.rb
180
+ - lib/kanrisuru/core/apt/parser.rb
181
+ - lib/kanrisuru/core/apt/parsers/base.rb
182
+ - lib/kanrisuru/core/apt/parsers/list.rb
183
+ - lib/kanrisuru/core/apt/parsers/search.rb
184
+ - lib/kanrisuru/core/apt/parsers/show.rb
185
+ - lib/kanrisuru/core/apt/types.rb
153
186
  - lib/kanrisuru/core/archive.rb
187
+ - lib/kanrisuru/core/archive/commands.rb
188
+ - lib/kanrisuru/core/archive/commands/tar.rb
189
+ - lib/kanrisuru/core/archive/types.rb
154
190
  - lib/kanrisuru/core/disk.rb
191
+ - lib/kanrisuru/core/disk/commands.rb
192
+ - lib/kanrisuru/core/disk/commands/blkid.rb
193
+ - lib/kanrisuru/core/disk/commands/df.rb
194
+ - lib/kanrisuru/core/disk/commands/du.rb
195
+ - lib/kanrisuru/core/disk/commands/lsblk.rb
196
+ - lib/kanrisuru/core/disk/parser.rb
197
+ - lib/kanrisuru/core/disk/parsers/blkid.rb
198
+ - lib/kanrisuru/core/disk/parsers/df.rb
199
+ - lib/kanrisuru/core/disk/parsers/du.rb
200
+ - lib/kanrisuru/core/disk/parsers/lsblk.rb
201
+ - lib/kanrisuru/core/disk/types.rb
155
202
  - lib/kanrisuru/core/dmi.rb
203
+ - lib/kanrisuru/core/dmi/commands.rb
204
+ - lib/kanrisuru/core/dmi/commands/dmi.rb
205
+ - lib/kanrisuru/core/dmi/parser.rb
206
+ - lib/kanrisuru/core/dmi/parsers/dmi.rb
207
+ - lib/kanrisuru/core/dmi/types.rb
156
208
  - lib/kanrisuru/core/file.rb
209
+ - lib/kanrisuru/core/file/commands.rb
210
+ - lib/kanrisuru/core/file/commands/chmod.rb
211
+ - lib/kanrisuru/core/file/commands/chown.rb
212
+ - lib/kanrisuru/core/file/commands/copy.rb
213
+ - lib/kanrisuru/core/file/commands/link.rb
214
+ - lib/kanrisuru/core/file/commands/mkdir.rb
215
+ - lib/kanrisuru/core/file/commands/move.rb
216
+ - lib/kanrisuru/core/file/commands/rm.rb
217
+ - lib/kanrisuru/core/file/commands/symlink.rb
218
+ - lib/kanrisuru/core/file/commands/touch.rb
219
+ - lib/kanrisuru/core/file/commands/unlink.rb
220
+ - lib/kanrisuru/core/file/commands/wc.rb
221
+ - lib/kanrisuru/core/file/parser.rb
222
+ - lib/kanrisuru/core/file/parsers/wc.rb
223
+ - lib/kanrisuru/core/file/types.rb
157
224
  - lib/kanrisuru/core/find.rb
225
+ - lib/kanrisuru/core/find/commands.rb
226
+ - lib/kanrisuru/core/find/commands/find.rb
227
+ - lib/kanrisuru/core/find/constants.rb
228
+ - lib/kanrisuru/core/find/parser.rb
229
+ - lib/kanrisuru/core/find/parsers/find.rb
230
+ - lib/kanrisuru/core/find/types.rb
158
231
  - lib/kanrisuru/core/group.rb
232
+ - lib/kanrisuru/core/group/commands.rb
233
+ - lib/kanrisuru/core/group/commands/create_group.rb
234
+ - lib/kanrisuru/core/group/commands/delete_group.rb
235
+ - lib/kanrisuru/core/group/commands/get_gid.rb
236
+ - lib/kanrisuru/core/group/commands/get_group.rb
237
+ - lib/kanrisuru/core/group/commands/is_group.rb
238
+ - lib/kanrisuru/core/group/commands/update_group.rb
239
+ - lib/kanrisuru/core/group/parser.rb
240
+ - lib/kanrisuru/core/group/parsers/gid.rb
241
+ - lib/kanrisuru/core/group/parsers/group.rb
242
+ - lib/kanrisuru/core/group/types.rb
159
243
  - lib/kanrisuru/core/ip.rb
244
+ - lib/kanrisuru/core/ip/commands.rb
245
+ - lib/kanrisuru/core/ip/commands/address.rb
246
+ - lib/kanrisuru/core/ip/commands/address_label.rb
247
+ - lib/kanrisuru/core/ip/commands/link.rb
248
+ - lib/kanrisuru/core/ip/commands/maddress.rb
249
+ - lib/kanrisuru/core/ip/commands/neighbour.rb
250
+ - lib/kanrisuru/core/ip/commands/route.rb
251
+ - lib/kanrisuru/core/ip/commands/rule.rb
252
+ - lib/kanrisuru/core/ip/constants.rb
253
+ - lib/kanrisuru/core/ip/parser.rb
254
+ - lib/kanrisuru/core/ip/parsers/address.rb
255
+ - lib/kanrisuru/core/ip/parsers/address_label.rb
256
+ - lib/kanrisuru/core/ip/parsers/base.rb
257
+ - lib/kanrisuru/core/ip/parsers/link.rb
258
+ - lib/kanrisuru/core/ip/parsers/maddress.rb
259
+ - lib/kanrisuru/core/ip/parsers/neighbour.rb
260
+ - lib/kanrisuru/core/ip/parsers/route.rb
261
+ - lib/kanrisuru/core/ip/parsers/rule.rb
262
+ - lib/kanrisuru/core/ip/types.rb
160
263
  - lib/kanrisuru/core/mount.rb
264
+ - lib/kanrisuru/core/mount/commands.rb
265
+ - lib/kanrisuru/core/mount/commands/mount.rb
266
+ - lib/kanrisuru/core/mount/commands/umount.rb
161
267
  - lib/kanrisuru/core/path.rb
268
+ - lib/kanrisuru/core/path/commands.rb
269
+ - lib/kanrisuru/core/path/commands/ls.rb
270
+ - lib/kanrisuru/core/path/commands/pwd.rb
271
+ - lib/kanrisuru/core/path/commands/readlink.rb
272
+ - lib/kanrisuru/core/path/commands/realpath.rb
273
+ - lib/kanrisuru/core/path/commands/which.rb
274
+ - lib/kanrisuru/core/path/commands/whoami.rb
275
+ - lib/kanrisuru/core/path/parser.rb
276
+ - lib/kanrisuru/core/path/parsers/ls.rb
277
+ - lib/kanrisuru/core/path/parsers/which.rb
278
+ - lib/kanrisuru/core/path/types.rb
162
279
  - lib/kanrisuru/core/socket.rb
280
+ - lib/kanrisuru/core/socket/commands.rb
281
+ - lib/kanrisuru/core/socket/commands/ss.rb
282
+ - lib/kanrisuru/core/socket/constants.rb
283
+ - lib/kanrisuru/core/socket/parser.rb
284
+ - lib/kanrisuru/core/socket/parsers/ss.rb
285
+ - lib/kanrisuru/core/socket/types.rb
163
286
  - lib/kanrisuru/core/stat.rb
287
+ - lib/kanrisuru/core/stat/commands.rb
288
+ - lib/kanrisuru/core/stat/commands/stat.rb
289
+ - lib/kanrisuru/core/stat/parser.rb
290
+ - lib/kanrisuru/core/stat/parsers/stat.rb
291
+ - lib/kanrisuru/core/stat/types.rb
164
292
  - lib/kanrisuru/core/stream.rb
293
+ - lib/kanrisuru/core/stream/commands.rb
294
+ - lib/kanrisuru/core/stream/commands/cat.rb
295
+ - lib/kanrisuru/core/stream/commands/echo.rb
296
+ - lib/kanrisuru/core/stream/commands/head.rb
297
+ - lib/kanrisuru/core/stream/commands/read_file_chunk.rb
298
+ - lib/kanrisuru/core/stream/commands/sed.rb
299
+ - lib/kanrisuru/core/stream/commands/tail.rb
300
+ - lib/kanrisuru/core/stream/parser.rb
301
+ - lib/kanrisuru/core/stream/parsers/echo.rb
302
+ - lib/kanrisuru/core/stream/parsers/sed.rb
165
303
  - lib/kanrisuru/core/system.rb
304
+ - lib/kanrisuru/core/system/commands.rb
305
+ - lib/kanrisuru/core/system/commands/cpu_info.rb
306
+ - lib/kanrisuru/core/system/commands/free.rb
307
+ - lib/kanrisuru/core/system/commands/kernel_statistics.rb
308
+ - lib/kanrisuru/core/system/commands/kill.rb
309
+ - lib/kanrisuru/core/system/commands/last.rb
310
+ - lib/kanrisuru/core/system/commands/load_average.rb
311
+ - lib/kanrisuru/core/system/commands/load_env.rb
312
+ - lib/kanrisuru/core/system/commands/lscpu.rb
313
+ - lib/kanrisuru/core/system/commands/lsof.rb
314
+ - lib/kanrisuru/core/system/commands/poweroff.rb
315
+ - lib/kanrisuru/core/system/commands/ps.rb
316
+ - lib/kanrisuru/core/system/commands/reboot.rb
317
+ - lib/kanrisuru/core/system/commands/uptime.rb
318
+ - lib/kanrisuru/core/system/commands/w.rb
319
+ - lib/kanrisuru/core/system/parser.rb
320
+ - lib/kanrisuru/core/system/parsers/kernel_statistics.rb
321
+ - lib/kanrisuru/core/system/parsers/last.rb
322
+ - lib/kanrisuru/core/system/parsers/load_average.rb
323
+ - lib/kanrisuru/core/system/parsers/load_env.rb
324
+ - lib/kanrisuru/core/system/parsers/lscpu.rb
325
+ - lib/kanrisuru/core/system/parsers/lsof.rb
326
+ - lib/kanrisuru/core/system/parsers/ps.rb
327
+ - lib/kanrisuru/core/system/parsers/uptime.rb
328
+ - lib/kanrisuru/core/system/parsers/w.rb
329
+ - lib/kanrisuru/core/system/types.rb
166
330
  - lib/kanrisuru/core/transfer.rb
331
+ - lib/kanrisuru/core/transfer/commands.rb
332
+ - lib/kanrisuru/core/transfer/commands/download.rb
333
+ - lib/kanrisuru/core/transfer/commands/upload.rb
334
+ - lib/kanrisuru/core/transfer/commands/wget.rb
335
+ - lib/kanrisuru/core/transfer/constants.rb
167
336
  - lib/kanrisuru/core/user.rb
337
+ - lib/kanrisuru/core/user/commands.rb
338
+ - lib/kanrisuru/core/user/commands/create_user.rb
339
+ - lib/kanrisuru/core/user/commands/delete_user.rb
340
+ - lib/kanrisuru/core/user/commands/get_uid.rb
341
+ - lib/kanrisuru/core/user/commands/get_user.rb
342
+ - lib/kanrisuru/core/user/commands/is_user.rb
343
+ - lib/kanrisuru/core/user/commands/update_user.rb
344
+ - lib/kanrisuru/core/user/parser.rb
345
+ - lib/kanrisuru/core/user/parsers/getent.rb
346
+ - lib/kanrisuru/core/user/parsers/groups.rb
347
+ - lib/kanrisuru/core/user/types.rb
168
348
  - lib/kanrisuru/core/yum.rb
349
+ - lib/kanrisuru/core/yum/commands.rb
350
+ - lib/kanrisuru/core/yum/commands/autoremove.rb
351
+ - lib/kanrisuru/core/yum/commands/clean.rb
352
+ - lib/kanrisuru/core/yum/commands/erase.rb
353
+ - lib/kanrisuru/core/yum/commands/info.rb
354
+ - lib/kanrisuru/core/yum/commands/install.rb
355
+ - lib/kanrisuru/core/yum/commands/list.rb
356
+ - lib/kanrisuru/core/yum/commands/localinstall.rb
357
+ - lib/kanrisuru/core/yum/commands/remove.rb
358
+ - lib/kanrisuru/core/yum/commands/repolist.rb
359
+ - lib/kanrisuru/core/yum/commands/search.rb
360
+ - lib/kanrisuru/core/yum/commands/update.rb
361
+ - lib/kanrisuru/core/yum/commands/upgrade.rb
362
+ - lib/kanrisuru/core/yum/parser.rb
363
+ - lib/kanrisuru/core/yum/parsers/base.rb
364
+ - lib/kanrisuru/core/yum/parsers/info.rb
365
+ - lib/kanrisuru/core/yum/parsers/list.rb
366
+ - lib/kanrisuru/core/yum/parsers/repolist.rb
367
+ - lib/kanrisuru/core/yum/parsers/search.rb
368
+ - lib/kanrisuru/core/yum/types.rb
169
369
  - lib/kanrisuru/core/zypper.rb
370
+ - lib/kanrisuru/core/zypper/commands.rb
371
+ - lib/kanrisuru/core/zypper/commands/add_lock.rb
372
+ - lib/kanrisuru/core/zypper/commands/add_repo.rb
373
+ - lib/kanrisuru/core/zypper/commands/add_service.rb
374
+ - lib/kanrisuru/core/zypper/commands/clean_cache.rb
375
+ - lib/kanrisuru/core/zypper/commands/clean_locks.rb
376
+ - lib/kanrisuru/core/zypper/commands/dist_upgrade.rb
377
+ - lib/kanrisuru/core/zypper/commands/info.rb
378
+ - lib/kanrisuru/core/zypper/commands/install.rb
379
+ - lib/kanrisuru/core/zypper/commands/install_new_recommends.rb
380
+ - lib/kanrisuru/core/zypper/commands/list_locks.rb
381
+ - lib/kanrisuru/core/zypper/commands/list_patches.rb
382
+ - lib/kanrisuru/core/zypper/commands/list_repos.rb
383
+ - lib/kanrisuru/core/zypper/commands/list_services.rb
384
+ - lib/kanrisuru/core/zypper/commands/list_updates.rb
385
+ - lib/kanrisuru/core/zypper/commands/modify_repo.rb
386
+ - lib/kanrisuru/core/zypper/commands/modify_service.rb
387
+ - lib/kanrisuru/core/zypper/commands/patch.rb
388
+ - lib/kanrisuru/core/zypper/commands/patch_check.rb
389
+ - lib/kanrisuru/core/zypper/commands/purge_kernels.rb
390
+ - lib/kanrisuru/core/zypper/commands/refresh_repos.rb
391
+ - lib/kanrisuru/core/zypper/commands/refresh_services.rb
392
+ - lib/kanrisuru/core/zypper/commands/remove.rb
393
+ - lib/kanrisuru/core/zypper/commands/remove_lock.rb
394
+ - lib/kanrisuru/core/zypper/commands/remove_repo.rb
395
+ - lib/kanrisuru/core/zypper/commands/remove_service.rb
396
+ - lib/kanrisuru/core/zypper/commands/rename_repo.rb
397
+ - lib/kanrisuru/core/zypper/commands/search.rb
398
+ - lib/kanrisuru/core/zypper/commands/source_install.rb
399
+ - lib/kanrisuru/core/zypper/commands/update.rb
400
+ - lib/kanrisuru/core/zypper/commands/verify.rb
401
+ - lib/kanrisuru/core/zypper/constants.rb
402
+ - lib/kanrisuru/core/zypper/parser.rb
403
+ - lib/kanrisuru/core/zypper/parsers/base.rb
404
+ - lib/kanrisuru/core/zypper/parsers/info.rb
405
+ - lib/kanrisuru/core/zypper/parsers/list_locks.rb
406
+ - lib/kanrisuru/core/zypper/parsers/list_patches.rb
407
+ - lib/kanrisuru/core/zypper/parsers/list_repos.rb
408
+ - lib/kanrisuru/core/zypper/parsers/list_services.rb
409
+ - lib/kanrisuru/core/zypper/parsers/list_updates.rb
410
+ - lib/kanrisuru/core/zypper/parsers/patch_check.rb
411
+ - lib/kanrisuru/core/zypper/parsers/search.rb
412
+ - lib/kanrisuru/core/zypper/types.rb
170
413
  - lib/kanrisuru/logger.rb
171
414
  - lib/kanrisuru/mode.rb
172
415
  - lib/kanrisuru/os_package.rb
416
+ - lib/kanrisuru/os_package/collection.rb
417
+ - lib/kanrisuru/os_package/define.rb
418
+ - lib/kanrisuru/os_package/include.rb
173
419
  - lib/kanrisuru/remote.rb
174
420
  - lib/kanrisuru/remote/cluster.rb
175
421
  - lib/kanrisuru/remote/cpu.rb
@@ -191,6 +437,7 @@ files:
191
437
  - spec/functional/core/apt_spec.rb
192
438
  - spec/functional/core/archive_spec.rb
193
439
  - spec/functional/core/find_spec.rb
440
+ - spec/functional/core/mount_spec.rb
194
441
  - spec/functional/core/path_spec.rb
195
442
  - spec/functional/core/socket_spec.rb
196
443
  - spec/functional/core/stat_spec.rb
@@ -200,37 +447,194 @@ files:
200
447
  - spec/functional/remote/cluster_spec.rb
201
448
  - spec/functional/remote/cpu_spec.rb
202
449
  - spec/functional/remote/env_spec.rb
450
+ - spec/functional/result_spec.rb
203
451
  - spec/helper/expect_helpers.rb
452
+ - spec/helper/hosts.json
453
+ - spec/helper/simplecov.rb
204
454
  - spec/helper/stub_network.rb
205
455
  - spec/helper/test_hosts.rb
206
- - spec/hosts.json
207
- - spec/integration/core/apt_spec.rb
208
- - spec/integration/core/archive_spec.rb
209
- - spec/integration/core/disk_spec.rb
210
- - spec/integration/core/dmi_spec.rb
211
- - spec/integration/core/file_spec.rb
212
- - spec/integration/core/find_spec.rb
213
- - spec/integration/core/group_spec.rb
214
- - spec/integration/core/ip_spec.rb
215
- - spec/integration/core/path_spec.rb
216
- - spec/integration/core/socket_spec.rb
217
- - spec/integration/core/stat_spec.rb
218
- - spec/integration/core/stream_spec.rb
219
- - spec/integration/core/system_spec.rb
220
- - spec/integration/core/transfer_spec.rb
221
- - spec/integration/core/user_spec.rb
222
- - spec/integration/core/yum_spec.rb
223
- - spec/integration/core/zypper_spec.rb
456
+ - spec/integration/core/apt/debian_spec.rb
457
+ - spec/integration/core/apt/ubuntu_spec.rb
458
+ - spec/integration/core/archive/centos_spec.rb
459
+ - spec/integration/core/archive/debian_spec.rb
460
+ - spec/integration/core/archive/fedora_spec.rb
461
+ - spec/integration/core/archive/opensuse_spec.rb
462
+ - spec/integration/core/archive/rhel_spec.rb
463
+ - spec/integration/core/archive/sles_spec.rb
464
+ - spec/integration/core/archive/ubuntu_spec.rb
465
+ - spec/integration/core/disk/centos_spec.rb
466
+ - spec/integration/core/disk/debian_spec.rb
467
+ - spec/integration/core/disk/fedora_spec.rb
468
+ - spec/integration/core/disk/opensuse_spec.rb
469
+ - spec/integration/core/disk/rhel_spec.rb
470
+ - spec/integration/core/disk/sles_spec.rb
471
+ - spec/integration/core/disk/ubuntu_spec.rb
472
+ - spec/integration/core/dmi/centos_spec.rb
473
+ - spec/integration/core/dmi/debian_spec.rb
474
+ - spec/integration/core/dmi/fedora_spec.rb
475
+ - spec/integration/core/dmi/opensuse_spec.rb
476
+ - spec/integration/core/dmi/rhel_spec.rb
477
+ - spec/integration/core/dmi/sles_spec.rb
478
+ - spec/integration/core/dmi/ubuntu_spec.rb
479
+ - spec/integration/core/file/centos_spec.rb
480
+ - spec/integration/core/file/debian_spec.rb
481
+ - spec/integration/core/file/fedora_spec.rb
482
+ - spec/integration/core/file/opensuse_spec.rb
483
+ - spec/integration/core/file/rhel_spec.rb
484
+ - spec/integration/core/file/sles_spec.rb
485
+ - spec/integration/core/file/ubuntu_spec.rb
486
+ - spec/integration/core/find/centos_spec.rb
487
+ - spec/integration/core/find/debian_spec.rb
488
+ - spec/integration/core/find/fedora_spec.rb
489
+ - spec/integration/core/find/opensuse_spec.rb
490
+ - spec/integration/core/find/rhel_spec.rb
491
+ - spec/integration/core/find/sles_spec.rb
492
+ - spec/integration/core/find/ubuntu_spec.rb
493
+ - spec/integration/core/group/centos_spec.rb
494
+ - spec/integration/core/group/debian_spec.rb
495
+ - spec/integration/core/group/fedora_spec.rb
496
+ - spec/integration/core/group/opensuse_spec.rb
497
+ - spec/integration/core/group/rhel_spec.rb
498
+ - spec/integration/core/group/sles_spec.rb
499
+ - spec/integration/core/group/ubuntu_spec.rb
500
+ - spec/integration/core/ip/centos_spec.rb
501
+ - spec/integration/core/ip/debian_spec.rb
502
+ - spec/integration/core/ip/fedora_spec.rb
503
+ - spec/integration/core/ip/opensuse_spec.rb
504
+ - spec/integration/core/ip/rhel_spec.rb
505
+ - spec/integration/core/ip/sles_spec.rb
506
+ - spec/integration/core/ip/ubuntu_spec.rb
507
+ - spec/integration/core/path/centos_spec.rb
508
+ - spec/integration/core/path/debian_spec.rb
509
+ - spec/integration/core/path/fedora_spec.rb
510
+ - spec/integration/core/path/opensuse_spec.rb
511
+ - spec/integration/core/path/rhel_spec.rb
512
+ - spec/integration/core/path/sles_spec.rb
513
+ - spec/integration/core/path/ubuntu_spec.rb
514
+ - spec/integration/core/socket/centos_spec.rb
515
+ - spec/integration/core/socket/debian_spec.rb
516
+ - spec/integration/core/socket/fedora_spec.rb
517
+ - spec/integration/core/socket/opensuse_spec.rb
518
+ - spec/integration/core/socket/rhel_spec.rb
519
+ - spec/integration/core/socket/sles_spec.rb
520
+ - spec/integration/core/socket/ubuntu_spec.rb
521
+ - spec/integration/core/stat/centos_spec.rb
522
+ - spec/integration/core/stat/debian_spec.rb
523
+ - spec/integration/core/stat/fedora_spec.rb
524
+ - spec/integration/core/stat/opensuse_spec.rb
525
+ - spec/integration/core/stat/rhel_spec.rb
526
+ - spec/integration/core/stat/sles_spec.rb
527
+ - spec/integration/core/stat/ubuntu_spec.rb
528
+ - spec/integration/core/stream/centos_spec.rb
529
+ - spec/integration/core/stream/debian_spec.rb
530
+ - spec/integration/core/stream/fedora_spec.rb
531
+ - spec/integration/core/stream/opensuse_spec.rb
532
+ - spec/integration/core/stream/rhel_spec.rb
533
+ - spec/integration/core/stream/sles_spec.rb
534
+ - spec/integration/core/stream/ubuntu_spec.rb
535
+ - spec/integration/core/system/centos_spec.rb
536
+ - spec/integration/core/system/debian_spec.rb
537
+ - spec/integration/core/system/fedora_spec.rb
538
+ - spec/integration/core/system/opensuse_spec.rb
539
+ - spec/integration/core/system/rhel_spec.rb
540
+ - spec/integration/core/system/sles_spec.rb
541
+ - spec/integration/core/system/ubuntu_spec.rb
542
+ - spec/integration/core/transfer/centos_spec.rb
543
+ - spec/integration/core/transfer/debian_spec.rb
544
+ - spec/integration/core/transfer/fedora_spec.rb
545
+ - spec/integration/core/transfer/opensuse_spec.rb
546
+ - spec/integration/core/transfer/rhel_spec.rb
547
+ - spec/integration/core/transfer/sles_spec.rb
548
+ - spec/integration/core/transfer/ubuntu_spec.rb
549
+ - spec/integration/core/user/centos_spec.rb
550
+ - spec/integration/core/user/debian_spec.rb
551
+ - spec/integration/core/user/fedora_spec.rb
552
+ - spec/integration/core/user/opensuse_spec.rb
553
+ - spec/integration/core/user/rhel_spec.rb
554
+ - spec/integration/core/user/sles_spec.rb
555
+ - spec/integration/core/user/ubuntu_spec.rb
556
+ - spec/integration/core/yum/centos_spec.rb
557
+ - spec/integration/core/yum/fedora_spec.rb
558
+ - spec/integration/core/yum/rhel_spec.rb
559
+ - spec/integration/core/zypper/opensuse_spec.rb
560
+ - spec/integration/core/zypper/sles_spec.rb
224
561
  - spec/integration/os_package_spec.rb
225
- - spec/integration/remote/cluster_spec.rb
226
- - spec/integration/remote/cpu_spec.rb
227
- - spec/integration/remote/env_spec.rb
228
- - spec/integration/remote/fstab_spec.rb
229
- - spec/integration/remote/host_spec.rb
230
- - spec/integration/remote/memory_spec.rb
231
- - spec/integration/remote/os_spec.rb
232
- - spec/integration/remote/remote_file_spec.rb
562
+ - spec/integration/remote/cluster/ubuntu_spec.rb
563
+ - spec/integration/remote/cpu/centos_spec.rb
564
+ - spec/integration/remote/cpu/debian_spec.rb
565
+ - spec/integration/remote/cpu/fedora_spec.rb
566
+ - spec/integration/remote/cpu/opensuse_spec.rb
567
+ - spec/integration/remote/cpu/rhel_spec.rb
568
+ - spec/integration/remote/cpu/sles_spec.rb
569
+ - spec/integration/remote/cpu/ubuntu_spec.rb
570
+ - spec/integration/remote/env/centos_spec.rb
571
+ - spec/integration/remote/env/debian_spec.rb
572
+ - spec/integration/remote/env/fedora_spec.rb
573
+ - spec/integration/remote/env/opensuse_spec.rb
574
+ - spec/integration/remote/env/rhel_spec.rb
575
+ - spec/integration/remote/env/sles_spec.rb
576
+ - spec/integration/remote/env/ubuntu_spec.rb
577
+ - spec/integration/remote/fstab/centos_spec.rb
578
+ - spec/integration/remote/fstab/debian_spec.rb
579
+ - spec/integration/remote/fstab/fedora_spec.rb
580
+ - spec/integration/remote/fstab/opensuse_spec.rb
581
+ - spec/integration/remote/fstab/rhel_spec.rb
582
+ - spec/integration/remote/fstab/sles_spec.rb
583
+ - spec/integration/remote/fstab/ubuntu_spec.rb
584
+ - spec/integration/remote/host/centos_spec.rb
585
+ - spec/integration/remote/host/debian_spec.rb
586
+ - spec/integration/remote/host/fedora_spec.rb
587
+ - spec/integration/remote/host/opensuse_spec.rb
588
+ - spec/integration/remote/host/rhel_spec.rb
589
+ - spec/integration/remote/host/sles_spec.rb
590
+ - spec/integration/remote/host/ubuntu_spec.rb
591
+ - spec/integration/remote/memory/centos_spec.rb
592
+ - spec/integration/remote/memory/debian_spec.rb
593
+ - spec/integration/remote/memory/fedora_spec.rb
594
+ - spec/integration/remote/memory/opensuse_spec.rb
595
+ - spec/integration/remote/memory/rhel_spec.rb
596
+ - spec/integration/remote/memory/sles_spec.rb
597
+ - spec/integration/remote/memory/ubuntu_spec.rb
598
+ - spec/integration/remote/os/centos_spec.rb
599
+ - spec/integration/remote/os/debian_spec.rb
600
+ - spec/integration/remote/os/fedora_spec.rb
601
+ - spec/integration/remote/os/opensuse_spec.rb
602
+ - spec/integration/remote/os/rhel_spec.rb
603
+ - spec/integration/remote/os/sles_spec.rb
604
+ - spec/integration/remote/os/ubuntu_spec.rb
605
+ - spec/integration/remote/remote_file/centos_spec.rb
606
+ - spec/integration/remote/remote_file/debian_spec.rb
607
+ - spec/integration/remote/remote_file/fedora_spec.rb
608
+ - spec/integration/remote/remote_file/opensuse_spec.rb
609
+ - spec/integration/remote/remote_file/rhel_spec.rb
610
+ - spec/integration/remote/remote_file/sles_spec.rb
611
+ - spec/integration/remote/remote_file/ubuntu_spec.rb
233
612
  - spec/spec_helper.rb
613
+ - spec/support/shared_examples/integration/core/apt.rb
614
+ - spec/support/shared_examples/integration/core/archive.rb
615
+ - spec/support/shared_examples/integration/core/disk.rb
616
+ - spec/support/shared_examples/integration/core/dmi.rb
617
+ - spec/support/shared_examples/integration/core/file.rb
618
+ - spec/support/shared_examples/integration/core/find.rb
619
+ - spec/support/shared_examples/integration/core/group.rb
620
+ - spec/support/shared_examples/integration/core/ip.rb
621
+ - spec/support/shared_examples/integration/core/path.rb
622
+ - spec/support/shared_examples/integration/core/socket.rb
623
+ - spec/support/shared_examples/integration/core/stat.rb
624
+ - spec/support/shared_examples/integration/core/stream.rb
625
+ - spec/support/shared_examples/integration/core/system.rb
626
+ - spec/support/shared_examples/integration/core/transfer.rb
627
+ - spec/support/shared_examples/integration/core/user.rb
628
+ - spec/support/shared_examples/integration/core/yum.rb
629
+ - spec/support/shared_examples/integration/core/zypper.rb
630
+ - spec/support/shared_examples/integration/remote/cluster.rb
631
+ - spec/support/shared_examples/integration/remote/cpu.rb
632
+ - spec/support/shared_examples/integration/remote/env_spec.rb
633
+ - spec/support/shared_examples/integration/remote/fstab.rb
634
+ - spec/support/shared_examples/integration/remote/host.rb
635
+ - spec/support/shared_examples/integration/remote/memory.rb
636
+ - spec/support/shared_examples/integration/remote/os.rb
637
+ - spec/support/shared_examples/integration/remote/remote_file.rb
234
638
  - spec/unit/command_spec.rb
235
639
  - spec/unit/core/apt_spec.rb
236
640
  - spec/unit/core/archive_spec.rb
@@ -256,7 +660,6 @@ files:
256
660
  - spec/unit/remote/fstab_spec.rb
257
661
  - spec/unit/template_spec.rb
258
662
  - spec/unit/util_spec.rb
259
- - spec/zz_reboot_spec.rb
260
663
  homepage: https://github.com/avamia/kanrisuru
261
664
  licenses:
262
665
  - MIT
@@ -278,7 +681,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
681
  - !ruby/object:Gem::Version
279
682
  version: '0'
280
683
  requirements: []
281
- rubygems_version: 3.1.2
684
+ rubygems_version: 3.2.32
282
685
  signing_key:
283
686
  specification_version: 4
284
687
  summary: Manage remote servers over ssh with ruby.