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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb936ab5bcccbaa1d4f4b3d97b7bd810aba4e0a1915027e87d5e62fdb1bc8fbb
4
- data.tar.gz: 5ea1754c5c23dbc4c1d3af3ee922e840b60ac4938573528e66773405d183f60d
3
+ metadata.gz: 29120990eb0245c731d92af7b9905b1357309e157938274f87032ead18230c42
4
+ data.tar.gz: 03a75d2d70f1aa5f72f1c9d2039e9f4002d06ca13eb0ad8b67d7e60e41a9a2e4
5
5
  SHA512:
6
- metadata.gz: 2af6ba4a5774c8f78fe051aaa0cb57ddcb4914d3c633e5b47febfa84d9291ae421f317d800faca714c8442574d77150e6a2b5d3c4dfc308a93dc538e666a83c5
7
- data.tar.gz: 3b8316665eba3a34c3f961c890df1be79f1cb3772a7dbd1838cda6dfe1b2b5db983476122ef8e0f1f3262fba5e8d0580821006f8f39181112a3b03f0fe0ad7b5
6
+ metadata.gz: f3f0a9244cf44b5d722662b56afefa823f305e3f86eda08224369bd70fce5f88cdf84fad7dd9222a60d143a7b3bcc61f27ef57a9e54076b551655223d9e94a15
7
+ data.tar.gz: 4cfa00635d6daeeb0d4bbaa97c5a7c09ccd001b9dc53072d55ddd025086209701dbd3c3739650eb501cf22f94c3aaf471f877016cc6870add3c2b4a075c58dc2
data/.rspec CHANGED
@@ -1,3 +1,3 @@
1
- --format documentation
1
+ --format progress
2
2
  --color
3
3
  --require spec_helper
data/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## Kanrisuru 0.14.0 (December 08, 2021) ##
2
+ * Add additional unit test cases for `util` methods.
3
+ * Refactor the `core` module commands into smaller files, with each command split up. Also refactor parsing code into separate `Parser` class.
4
+
5
+ ## Kanrisuru 0.13.0 (December 06, 2021) ##
6
+ * Add functional test cases for `Kanrisuru::Result` class.
7
+ * Refactor integration tests for better parallelization with the `parallel_tests` gem. This dropped overall test time from 35 minutes, to 22 minutes after first integration with 1 processor. After scaling upto 8 core machine, the run time dropped to 16 minutes, but was still sending the entire test file to a processor. By splitting up each host test into a seperate file, the run time dropped to a little over 9 minutes. There's probably a way to optimize which test gets run together, but overall a much better scenario.
8
+
9
+ ## Kanrisuru 0.12.1 (December 05, 2021) ##
10
+ * Fix typo in spec.
11
+ * Cleanup bad code style.
12
+
13
+ ## Kanrisuru 0.12.0 (December 05, 2021) ##
14
+ * Add functional test cases for `mount` command.
15
+ * Fix typos and command preperation for `mount` command.
16
+ * Refactor `os_package` module into smaller modules for `Kanrisuru::OsPackage::Collection`, `Kanrisuru::OsPackage::Define`, and `Kanrisuru::OsPackage::Include`.
17
+ * Add `append_array` to `command` class for easy string to array conversion for variable option passing.
18
+ * Cleanup bad coding styles.
19
+ * Add parallel testing support for long running integration tests on remote servers.
20
+ * Refactor specs to use variable spec_dir path for parallel testing on remote hosts with possible overwriting at the same time.
21
+
1
22
  ## Kanrisuru 0.11.1 (December 04, 2021) ##
2
23
  * Cleanup self-assignment branches
3
24
  * Fix linting issues.
data/README.md CHANGED
@@ -1,13 +1,20 @@
1
- [![Latest version](https://img.shields.io/gem/v/kanrisuru?style=flat-square)](https://rubygems.org/gems/kanrisuru) 
2
- [![Latest version](https://img.shields.io/github/license/avamia/kanrisuru)](https://github.com/avamia/kanrisuru/blob/main/LICENSE.txt) 
3
- ![GitHub repo size](https://img.shields.io/github/repo-size/avamia/kanrisuru) 
4
- ![Codecov](https://img.shields.io/codecov/c/gh/avamia/kanrisuru?token=2Q1BE106B2) 
5
- ![Codacy grade](https://img.shields.io/codacy/grade/9e839eb160bc445ea4e81b64cef22b27) 
6
-
7
1
  <p align='center'>
8
2
  <img src="https://s3.us-east-2.amazonaws.com/kanrisuru.com/kanrisuru-banner-02.png" width="600" />
9
3
  </p>
10
4
 
5
+ <p align="center">
6
+ <a href="https://rubygems.org/gems/kanrisuru">
7
+ <img src="https://img.shields.io/gem/v/kanrisuru?style=flat-square" alt="Latest version" />
8
+ </a>
9
+ <a href="https://github.com/avamia/kanrisuru/blob/main/LICENSE.txt">
10
+ <img src="https://img.shields.io/github/license/avamia/kanrisuru" alt="Latest version" />
11
+ </a>
12
+ <img src="https://img.shields.io/github/repo-size/avamia/kanrisuru" alt="GitHub repo size" />
13
+ <img src="https://img.shields.io/codecov/c/gh/avamia/kanrisuru?token=2Q1BE106B2" alt="Codecov" />
14
+ <img src="https://img.shields.io/codacy/grade/9e839eb160bc445ea4e81b64cef22b27" alt="Codacy grade" />
15
+ <img src="https://img.shields.io/codeclimate/maintainability/avamia/kanrisuru" alt="Code Climate maintainability" />
16
+ </p>
17
+
11
18
  # Kanrisuru
12
19
 
13
20
  Kanrisuru (manage) helps you remotely control infrastructure using Ruby. This is done over SSH. I'm working on building up some basic functionality to help quickly provision, deploy and manage a single host or cluster of hosts.
@@ -82,88 +89,6 @@ cluster = Kanrisuru::Remote::Cluster.new(host, {host: 'host2', username: 'alice'
82
89
  cluster.execute('uname') #=> {host: 'host1', result: 'Linux'}, {host: 'host2', result: 'Linux'}
83
90
  ```
84
91
 
85
- ## Methods and Testing
86
-
87
- | Description | Ruby | Shell | Module | Man | Debian | Ubuntu | Fedora | Centos | RHEL | openSUSE | SLES |
88
- |---------------------------------------|------------------|--------------------|--------|--------------------------------------|--------|--------|--------|--------|------|----------|------|
89
- | **System** | | | | | | | | | | | |
90
- | Get CPU Info | cpu_info | lscpu | core | https://linux.die.net/man/1/lscpu | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
91
- | Get CPU architecture | lscpu | lscpu | core | https://linux.die.net/man/1/lscpu | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
92
- | Get kernel stastics | kernel_statistics | cat /proc/stat | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
93
- | Get hardware BIOS info | dmi | dmidecode | core | https://linux.die.net/man/8/dmidecode | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
94
- | Get open file details for processes | lsof | lsof | core | https://linux.die.net/man/8/lsof | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
95
- | Get Load Average | load_average | cat /proc/load_avg | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
96
- | Get RAM Available | free | cat /proc/meminfo | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
97
- | Get list of processes | ps | ps | core | https://linux.die.net/man/1/ps | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
98
- | Get Env vars | load_env | env | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
99
- | Kill process | kill | kill | core | https://linux.die.net/man/1/kill | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
100
- | Get uptime of system | uptime | cat /proc/uptime | core | https://linux.die.net/man/1/uptime | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
101
- | Get who's logged in | w | w | core | https://linux.die.net/man/1/w | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
102
- | Reboot machine | reboot | shutdown | core | https://linux.die.net/man/8/reboot | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
103
- | Poweroff machine | poweroff | shutdown | core | https://linux.die.net/man/8/shutdown | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
104
- | **Disk** | | | | | | | | | | | |
105
- | Get Disk Space | df | df | core | https://linux.die.net/man/1/df | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
106
- | Get Disk Usage | du | du | core | https://linux.die.net/man/1/du | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
107
- | List block devices | lsblk | lsblk | core | https://linux.die.net/man/8/lsblk | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
108
- | Get block device attributes | blkid | blikd | core | https://linux.die.net/man/8/blkid | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
109
- | **Mount** | | | | | | | | | | | |
110
- | Mount a filesystem | mount | mount | core | https://linux.die.net/man/8/mount | | | | | | | |
111
- | Unmount a filesystem | umount | umount | core | https://linux.die.net/man/8/umount | | | | | | | |
112
- | **Group** | | | | | | | | | | | |
113
- | Get Group Id | get_gid | getent group | core | https://linux.die.net/man/1/getent | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
114
- | Get Group | get_group | grep /etc/group | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
115
- | Create Group | create_group | groupadd | core | https://linux.die.net/man/8/groupadd | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
116
- | Update Group | update_group | groupmod | core | https://linux.die.net/man/8/groupmod | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
117
- | Delete Group | delete_group | groupdel | core | https://linux.die.net/man/8/groupdel | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
118
- | **User** | | | | | | | | | | | |
119
- | Get User Id | get_uid | id -u | core | https://linux.die.net/man/1/id | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
120
- | Get User | get_user | id | core | https://linux.die.net/man/1/id | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
121
- | Create User | create_user | useradd | core | https://linux.die.net/man/8/useradd | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
122
- | Update User | update_user | usermod | core | https://linux.die.net/man/8/usermod | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
123
- | Delete User | delete_user | userdel | core | https://linux.die.net/man/8/userdel | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
124
- | **Path** | | | | | | | | | | | |
125
- | List files and directories | ls | ls | core | https://linux.die.net/man/1/ls | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
126
- | Get Current Dir | pwd | pwd | core | https://linux.die.net/man/1/pwd | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
127
- | Get Current User | whoami | whoami | core | https://linux.die.net/man/1/whoami | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
128
- | Get Full Path of Shell Command | which | which | core | https://linux.die.net/man/1/which | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
129
- | Real Path | realpath | realpath | core | https://linux.die.net/man/1/realpath | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
130
- | Read link | readlink | readlink | core | https://linux.die.net/man/1/readlink | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
131
- | Change Dir | cd | cd | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
132
- | **File** | | | | | | | | | | | |
133
- | "Find file, dir, special file device" | find | find | core | https://linux.die.net/man/1/find | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
134
- | Stat file info | stat | stat | core | https://linux.die.net/man/1/stat | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
135
- | Change Permission of file / folder | chmod | chmod | core | https://linux.die.net/man/1/chmod | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
136
- | Change Ownership of file / folder | chown | chown | core | https://linux.die.net/man/1/chown | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
137
- | Hard Link File | ln | ln | core | https://linux.die.net/man/1/ln | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
138
- | Soft Link File / Dir | ln_s | ln | core | https://linux.die.net/man/1/ln | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
139
- | Create Directory | mkdir | mkdir | core | https://linux.die.net/man/1/mkdir | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
140
- | Remove file / directory | rm | rm | core | https://linux.die.net/man/1/rm | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
141
- | Remove Directory | rmdir | rm | core | https://linux.die.net/man/1/rm | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
142
- | Touch File | touch | touch | core | https://linux.die.net/man/1/touch | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
143
- | Copy file / directory | cp | cp | core | https://linux.die.net/man/1/cp | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
144
- | Move file / directory | mv | mv | core | https://linux.die.net/man/1/mv | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
145
- | "Get file line, word, and char count" | wc | wc | core | https://linux.die.net/man/1/wc | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
146
- | **Stream** | | | | | | | | | | | |
147
- | Get content from beginning of file | head | head | core | https://linux.die.net/man/1/head | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
148
- | Get content from end of file | tail | tail | core | https://linux.die.net/man/1/tail | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
149
- | Read a chunk from a file by lines | reach_file_chunk | tail and head | core | | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
150
- | Echo to stdout or to file | echo | echo | core | https://linux.die.net/man/1/echo | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
151
- | Get all content from a file | cat | cat | core | https://linux.die.net/man/1/cat | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
152
- | Sed | sed | sed | core | https://linux.die.net/man/1/sed | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
153
- | **Archive** | | | | | | | | | | | |
154
- | Tar Files | tar | tar | core | https://linux.die.net/man/1/tar | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
155
- | **Network** | | | | | | | | | | | |
156
- | Manage network devices | ip | ip | core | https://linux.die.net/man/8/ip | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
157
- | Get Socket Details | ss | ss | core | https://linux.die.net/man/8/ss | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
158
- | **Transfer** | | | | | | | | | | | |
159
- | Upload to remote server | upload | scp | core | https://linux.die.net/man/1/scp | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
160
- | Download from remote server | download | scp | core | https://linux.die.net/man/1/scp | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
161
- | Wget | wget | wget | core | https://linux.die.net/man/1/wget | [x] | [x] | [x] | [x] | [x] | [x] | [x] |
162
- | **Packages** | | | | | | | | | | | |
163
- | Apt | apt | apt | core | https://linux.die.net/man/1/apt | [x] | [x] | | | | | |
164
- | Yum | yum | yum | core | https://linux.die.net/man/1/yum | | | [x] | [x] | [x] | | |
165
- | Zypper | zypper | zypper | core | https://en.opensuse.org/SDB:Zypper_manual | | | | | | [x] | [x] |
166
-
167
92
  ## Development
168
93
 
169
94
  After checking out the repo, run `bin/setup` to install dependencies.
data/kanrisuru.gemspec CHANGED
@@ -14,6 +14,7 @@ Gem::Specification.new do |gem|
14
14
 
15
15
  gem.required_ruby_version = '>= 2.5.0'
16
16
 
17
+ gem.add_development_dependency 'parallel_tests', '~> 3.7'
17
18
  gem.add_development_dependency 'rspec', '~> 3.10'
18
19
  gem.add_development_dependency 'rubocop', '~> 1.12'
19
20
  gem.add_development_dependency 'rubocop-rspec', '~> 2.2'
@@ -84,6 +84,13 @@ module Kanrisuru
84
84
  append_value("| #{value}")
85
85
  end
86
86
 
87
+ def append_array(value)
88
+ return unless Kanrisuru::Util.present?(value)
89
+
90
+ value = [value] if value.instance_of?(String)
91
+ append_value(value.join(' '))
92
+ end
93
+
87
94
  def append_value(value)
88
95
  @raw_command = "#{@raw_command} #{value}"
89
96
  end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_autoclean(_opts)
7
+ command = Kanrisuru::Command.new('apt-get autoclean')
8
+ execute_shell(command)
9
+ Kanrisuru::Result.new(command)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_autoremove(_opts)
7
+ command = Kanrisuru::Command.new('apt-get autoremove')
8
+ command.append_flag('-y')
9
+
10
+ execute_shell(command)
11
+ Kanrisuru::Result.new(command)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_clean(_opts)
7
+ command = Kanrisuru::Command.new('apt-get clean')
8
+ execute_shell(command)
9
+ Kanrisuru::Result.new(command)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_full_upgrade(_opts)
7
+ command = Kanrisuru::Command.new('apt full-upgrade')
8
+ command.append_flag('-y')
9
+ execute_shell(command)
10
+ Kanrisuru::Result.new(command)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_install(opts)
7
+ command = Kanrisuru::Command.new('apt-get install')
8
+ command.append_flag('-y')
9
+
10
+ command.append_flag('--no-upgrade', opts[:no_upgrade])
11
+ command.append_flag('--only-upgrade', opts[:only_upgrade])
12
+ command.append_flag('--reinstall', opts[:reinstall])
13
+
14
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
15
+ command << packages
16
+
17
+ execute_shell(command)
18
+ Kanrisuru::Result.new(command)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_list(opts)
7
+ command = Kanrisuru::Command.new('apt list')
8
+ command.append_flag('--installed', opts[:installed])
9
+ command.append_flag('--upgradeable', opts[:upgradeable])
10
+ command.append_flag('--all-versions', opts[:all_versions])
11
+ command.append_arg('-a', opts[:package_name])
12
+
13
+ execute_shell(command)
14
+
15
+ Kanrisuru::Result.new(command) do |cmd|
16
+ Parser::List.parse(cmd)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_purge(opts)
7
+ command = Kanrisuru::Command.new('apt-get purge')
8
+ command.append_flag('-y')
9
+
10
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
11
+ command << packages
12
+
13
+ execute_shell(command)
14
+ Kanrisuru::Result.new(command)
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_remove(opts)
7
+ command = Kanrisuru::Command.new('apt-get remove')
8
+ command.append_flag('-y')
9
+
10
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
11
+ command << packages
12
+
13
+ execute_shell(command)
14
+ Kanrisuru::Result.new(command)
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_search(opts)
7
+ command = Kanrisuru::Command.new('apt search')
8
+ command << opts[:query]
9
+
10
+ execute_shell(command)
11
+
12
+ Kanrisuru::Result.new(command) do |cmd|
13
+ Parser::Search.parse(cmd)
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_show(opts)
7
+ command = Kanrisuru::Command.new('apt show')
8
+ command.append_flag('-a')
9
+
10
+ packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
11
+ command << packages
12
+
13
+ execute_shell(command)
14
+
15
+ Kanrisuru::Result.new(command) do |cmd|
16
+ Parser::Show.parse(cmd)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_update(_opts)
7
+ command = Kanrisuru::Command.new('apt-get update')
8
+ command.append_flag('-y')
9
+ execute_shell(command)
10
+ Kanrisuru::Result.new(command)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ def apt_upgrade(_opts)
7
+ command = Kanrisuru::Command.new('apt-get upgrade')
8
+ command.append_flag('-y')
9
+ execute_shell(command)
10
+ Kanrisuru::Result.new(command)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'commands/autoclean'
4
+ require_relative 'commands/autoremove'
5
+ require_relative 'commands/clean'
6
+ require_relative 'commands/full_upgrade'
7
+ require_relative 'commands/install'
8
+ require_relative 'commands/list'
9
+ require_relative 'commands/purge'
10
+ require_relative 'commands/remove'
11
+ require_relative 'commands/search'
12
+ require_relative 'commands/show'
13
+ require_relative 'commands/update'
14
+ require_relative 'commands/upgrade'
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'parsers/base'
4
+ require_relative 'parsers/list'
5
+ require_relative 'parsers/search'
6
+ require_relative 'parsers/show'
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ module Parser
7
+ class Base
8
+ class << self
9
+ def extract_single_line(line)
10
+ line.split(': ')[1]
11
+ end
12
+
13
+ def parse_comma_values(string)
14
+ string.split(', ')
15
+ end
16
+
17
+ def parse_apt_sources(string)
18
+ url, dist, architecture, = string.split
19
+ Source.new(url, dist, architecture)
20
+ end
21
+
22
+ def parse_apt_line(line)
23
+ values = line.split('/')
24
+ return if values.length < 2
25
+
26
+ package = values[0]
27
+
28
+ values = values[1].split
29
+ suites = values[0].split(',')
30
+ version = values[1]
31
+ architecture = values[2]
32
+
33
+ installed = false
34
+ upgradeable = false
35
+ automatic = false
36
+
37
+ if values.length > 3
38
+ installed = values[3].include?('installed')
39
+ upgradeable = values[3].include?('upgradeable')
40
+ automatic = values[3].include?('automatic')
41
+ end
42
+
43
+ Kanrisuru::Core::Apt::PackageOverview.new(package, version, suites, architecture, installed, upgradeable,
44
+ automatic)
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ module Parser
7
+ class List < Base
8
+ class << self
9
+ def parse(command)
10
+ lines = command.to_a
11
+ lines.shift
12
+
13
+ result = []
14
+ lines.each do |line|
15
+ item = parse_apt_line(line)
16
+ next unless item
17
+
18
+ result << item
19
+ end
20
+
21
+ result
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ module Parser
7
+ class Search < Base
8
+ class << self
9
+ def parse(command)
10
+ lines = command.to_a
11
+ lines.shift
12
+ lines.shift
13
+
14
+ result = []
15
+
16
+ lines.each do |line|
17
+ next unless line.include?('/')
18
+
19
+ item = parse_apt_line(line)
20
+ next unless item
21
+
22
+ result << item
23
+ end
24
+
25
+ result
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,90 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Apt
6
+ module Parser
7
+ class Show < Base
8
+ class << self
9
+ def parse(command)
10
+ lines = command.to_a
11
+ rows = []
12
+
13
+ current_row = nil
14
+ description = ''
15
+
16
+ lines.each do |line|
17
+ next if line == 'WARNING: apt does not have a stable CLI interface. Use with caution in scripts.'
18
+ next if ['', nil, '.'].include?(line)
19
+
20
+ case line
21
+ when /^Package:/
22
+ unless current_row.nil?
23
+ current_row.description = description.strip
24
+ description = ''
25
+ rows << current_row
26
+ end
27
+
28
+ current_row = Kanrisuru::Core::Apt::PackageDetail.new
29
+ current_row.package = extract_single_line(line)
30
+ when /^Version:/
31
+ current_row.version = extract_single_line(line)
32
+ when /^Priority:/
33
+ current_row.priority = extract_single_line(line)
34
+ when /^Section:/
35
+ current_row.section = extract_single_line(line)
36
+ when /^Origin:/
37
+ current_row.origin = extract_single_line(line)
38
+ when /^Maintainer:/
39
+ current_row.maintainer = extract_single_line(line)
40
+ when /^Original-Maintainer:/
41
+ current_row.original_maintainer = extract_single_line(line)
42
+ when /^Bugs:/
43
+ current_row.bugs = extract_single_line(line)
44
+ when /^Installed-Size:/
45
+ size = Kanrisuru::Util::Bits.normalize_size(extract_single_line(line))
46
+ current_row.install_size = size
47
+ when /^Download-Size:/
48
+ size = Kanrisuru::Util::Bits.normalize_size(extract_single_line(line))
49
+ current_row.download_size = size
50
+ when /^Depends:/
51
+ current_row.dependencies = parse_comma_values(extract_single_line(line))
52
+ when /^Provides:/
53
+ current_row.provides = parse_comma_values(extract_single_line(line))
54
+ when /^Recommends:/
55
+ current_row.recommends = parse_comma_values(extract_single_line(line))
56
+ when /^Suggests:/
57
+ current_row.suggests = parse_comma_values(extract_single_line(line))
58
+ when /^Breaks:/
59
+ current_row.breaks = parse_comma_values(extract_single_line(line))
60
+ when /^Conflicts:/
61
+ current_row.conflicts = parse_comma_values(extract_single_line(line))
62
+ when /^Replaces:/
63
+ current_row.replaces = parse_comma_values(extract_single_line(line))
64
+ when /^Homepage:/
65
+ current_row.homepage = extract_single_line(line)
66
+ when /^Task:/
67
+ current_row.task = parse_comma_values(extract_single_line(line))
68
+ when /^Supported:/
69
+ current_row.supported = extract_single_line(line)
70
+ when /^APT-Sources:/
71
+ current_row.apt_sources = parse_apt_sources(extract_single_line(line))
72
+ when /^APT-Manual-Installed:/
73
+ current_row.apt_manual_installed = extract_single_line(line) == 'yes'
74
+ when /^Description:/
75
+ current_row.summary = extract_single_line(line)
76
+ else
77
+ description += " #{line.strip}"
78
+ end
79
+ end
80
+
81
+ current_row.description = description.strip
82
+ rows << current_row
83
+ rows
84
+ end
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end
90
+ end