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
@@ -2,6 +2,11 @@
2
2
 
3
3
  require 'date'
4
4
 
5
+ require_relative 'zypper/constants'
6
+ require_relative 'zypper/types'
7
+ require_relative 'zypper/parser'
8
+ require_relative 'zypper/commands'
9
+
5
10
  module Kanrisuru
6
11
  module Core
7
12
  module Zypper
@@ -9,99 +14,6 @@ module Kanrisuru
9
14
 
10
15
  os_define :sles, :zypper
11
16
 
12
- PACKAGE_TYPES = %w[package patch pattern product srcpackage application].freeze
13
- PATCH_CATEGORIES = %w[security recommended optional feature document yast].freeze
14
- PATCH_SEVERITIES = %w[critical important moderate low unspecified].freeze
15
- SOLVER_FOCUS_MODES = %w[job installed update].freeze
16
- MEDIUM_TYPES = %w[dir file cd dvd nfs iso http https ftp cifs smb hd].freeze
17
-
18
- EXIT_INF_UPDATE_NEEDED = 100
19
- EXIT_INF_SEC_UPDATE_NEEDED = 101
20
- EXIT_INF_REBOOT_NEEDED = 102
21
- EXIT_INF_RESTART_NEEDED = 103
22
- EXIT_INF_CAP_NOT_FOUND = 104
23
-
24
- Repo = Struct.new(
25
- :number,
26
- :alias,
27
- :name,
28
- :enabled,
29
- :gpg_check,
30
- :refresh,
31
- :priority,
32
- :type,
33
- :uri,
34
- :service
35
- )
36
-
37
- Service = Struct.new(
38
- :number,
39
- :alias,
40
- :name,
41
- :enabled,
42
- :gpg_check,
43
- :refresh,
44
- :priority,
45
- :type,
46
- :uri
47
- )
48
-
49
- SearchResult = Struct.new(
50
- :repository,
51
- :package,
52
- :status,
53
- :type,
54
- :version,
55
- :architecture
56
- )
57
-
58
- PackageDetail = Struct.new(
59
- :repository,
60
- :package,
61
- :version,
62
- :architecture,
63
- :vendor,
64
- :support_level,
65
- :install_size,
66
- :installed,
67
- :status,
68
- :source_package,
69
- :summary,
70
- :description
71
- )
72
-
73
- PackageUpdate = Struct.new(
74
- :repository,
75
- :package,
76
- :current_version,
77
- :available_version,
78
- :architecture
79
- )
80
-
81
- PatchUpdate = Struct.new(
82
- :repository,
83
- :patch,
84
- :category,
85
- :severity,
86
- :interactive,
87
- :status,
88
- :summary
89
- )
90
-
91
- PatchCount = Struct.new(
92
- :category,
93
- :updatestack,
94
- :patches
95
- )
96
-
97
- Lock = Struct.new(
98
- :number,
99
- :name,
100
- :matches,
101
- :type,
102
- :repository
103
- )
104
-
105
17
  def zypper(action, opts = {})
106
18
  case action
107
19
  when 'repos', 'lr'
@@ -170,928 +82,6 @@ module Kanrisuru
170
82
  zypper_update(opts)
171
83
  end
172
84
  end
173
-
174
- private
175
-
176
- def zypper_clean_cache(opts)
177
- command = Kanrisuru::Command.new('zypper')
178
- zypper_global_opts(command, opts)
179
-
180
- command << 'clean'
181
- command.append_flag('--metadata', opts[:metadata])
182
- command.append_flag('--raw-metadata', opts[:raw_metadata])
183
- command.append_flag('--all', opts[:all])
184
-
185
- command << opts[:repos]
186
-
187
- execute_shell(command)
188
-
189
- Kanrisuru::Result.new(command)
190
- end
191
-
192
- def zypper_list_repos(opts)
193
- command = Kanrisuru::Command.new('zypper')
194
- zypper_global_opts(command, opts)
195
-
196
- command << 'repos'
197
- command.append_flag('--details')
198
-
199
- execute_shell(command)
200
-
201
- Kanrisuru::Result.new(command) do |cmd|
202
- lines = cmd.to_a
203
-
204
- rows = []
205
- lines.each do |line|
206
- next unless line.match(/^\d/)
207
-
208
- values = line.split('|')
209
- values = values.map(&:strip)
210
-
211
- rows << Repo.new(
212
- values[0].to_i,
213
- values[1],
214
- values[2],
215
- values[3] == 'Yes',
216
- values[4].include?('Yes'),
217
- values[5] == 'Yes',
218
- values[6].to_i,
219
- values[7],
220
- values[8],
221
- values.length == 10 ? values[9] : nil
222
- )
223
- end
224
- rows
225
- end
226
- end
227
-
228
- def zypper_refresh_repos(opts)
229
- command = Kanrisuru::Command.new('zypper')
230
- zypper_global_opts(command, opts)
231
-
232
- command << 'refresh'
233
-
234
- command.append_flag('--force', opts[:force])
235
- command.append_flag('--force-build', opts[:force_build])
236
- command.append_flag('--force-download', opts[:force_download])
237
- command.append_flag('--build-only', opts[:build_only])
238
- command.append_flag('--download-only', opts[:download_only])
239
-
240
- execute_shell(command)
241
-
242
- Kanrisuru::Result.new(command)
243
- end
244
-
245
- def zypper_modify_repo(opts)
246
- command = Kanrisuru::Command.new('zypper')
247
- zypper_global_opts(command, opts)
248
-
249
- command << 'modifyrepo'
250
-
251
- command.append_arg('--name', opts[:name])
252
- command.append_arg('--priority', opts[:priority])
253
-
254
- command.append_flag('--enable', opts[:enable])
255
- command.append_flag('--disable', opts[:disable])
256
- command.append_flag('--refresh', opts[:refresh])
257
- command.append_flag('--no-refresh', opts[:no_refresh])
258
- command.append_flag('--keep-packages', opts[:keep_packages])
259
- command.append_flag('--no-keep-packages', opts[:no_keep_packages])
260
-
261
- command.append_flag('--gpgcheck', opts[:gpgcheck])
262
- command.append_flag('--gpgcheck-strict', opts[:gpgcheck_strict])
263
- command.append_flag('--gpgcheck-allow-unsigned', opts[:gpgcheck_allow_unsigned])
264
- command.append_flag('--gpgcheck-allow-unsigned-repo', opts[:gpgcheck_allow_unsigned_repo])
265
- command.append_flag('--gpgcheck-allow-unsigned-package', opts[:gpgcheck_allow_unsigned_package])
266
- command.append_flag('--no-gpgcheck', opts[:no_gpgcheck])
267
- command.append_flag('--default-gpgcheck', opts[:default_gpgcheck])
268
-
269
- command.append_flag('--all', opts[:all])
270
- command.append_flag('--local', opts[:local])
271
- command.append_flag('--remote', opts[:remote])
272
-
273
- if Kanrisuru::Util.present?(opts[:medium_type])
274
- raise ArgumentError, 'Invalid medium type' unless MEDIUM_TYPES.include?(opts[:medium_type])
275
-
276
- command.append_arg('--medium-type', opts[:medium_type])
277
- end
278
-
279
- repos = opts[:repos]
280
- if Kanrisuru::Util.present?(repos)
281
- repos = [repos] if repos.instance_of?(String)
282
- command << repos.join(' ')
283
- end
284
-
285
- execute_shell(command)
286
-
287
- Kanrisuru::Result.new(command)
288
- end
289
-
290
- def zypper_add_repo(opts)
291
- command = Kanrisuru::Command.new('zypper')
292
- zypper_global_opts(command, opts)
293
-
294
- command << 'addrepo'
295
-
296
- command.append_flag('--check', opts[:check])
297
- command.append_flag('--no-check', opts[:no_check])
298
- command.append_flag('--enable', opts[:enable])
299
- command.append_flag('--disable', opts[:disable])
300
- command.append_flag('--refresh', opts[:refresh])
301
- command.append_flag('--no-refresh', opts[:no_refresh])
302
- command.append_flag('--keep-packages', opts[:keep_packages])
303
- command.append_flag('--no-keep-packages', opts[:no_keep_packages])
304
- command.append_flag('--gpgcheck', opts[:gpgcheck])
305
- command.append_flag('--gpgcheck-strict', opts[:gpgcheck_strict])
306
- command.append_flag('--gpgcheck-allow-unsigned', opts[:gpgcheck_allow_unsigned])
307
- command.append_flag('--gpgcheck-allow-unsigned-repo', opts[:gpgcheck_allow_unsigned_repo])
308
- command.append_flag('--gpgcheck-allow-unsigned-package', opts[:gpgcheck_allow_unsigned_package])
309
- command.append_flag('--no-gpgcheck', opts[:no_gpgcheck])
310
- command.append_flag('--default-gpgcheck', opts[:default_gpgcheck])
311
-
312
- command.append_arg('--priority', opts[:priority])
313
-
314
- zypper_repos_opt(command, opts)
315
-
316
- execute_shell(command)
317
-
318
- Kanrisuru::Result.new(command)
319
- end
320
-
321
- def zypper_remove_repo(opts)
322
- command = Kanrisuru::Command.new('zypper')
323
- zypper_global_opts(command, opts)
324
-
325
- command << 'removerepo'
326
-
327
- command.append_flag('--loose-auth', opts[:loose_auth])
328
- command.append_flag('--loose-query', opts[:loose_query])
329
- command.append_flag('--all', opts[:all])
330
- command.append_flag('--local', opts[:local])
331
- command.append_flag('--remote', opts[:remote])
332
-
333
- if Kanrisuru::Util.present?(opts[:media_type])
334
- raise ArgumentError, 'Invalid media type' unless ZYPPER_MEDIA_TYPES.include?(opts[:media_type])
335
-
336
- command.append_arg('--media-type', opts[:media_type])
337
- end
338
-
339
- repos = opts[:repos]
340
- if Kanrisuru::Util.present?(repos)
341
- repos = repos.instance_of?(String) ? [repos] : repos
342
- command << repos.join(' ')
343
- end
344
-
345
- execute_shell(command)
346
-
347
- Kanrisuru::Result.new(command)
348
- end
349
-
350
- def zypper_rename_repo(opts)
351
- command = Kanrisuru::Command.new('zypper')
352
- zypper_global_opts(command, opts)
353
-
354
- command << 'renamerepo'
355
- command << opts[:repo]
356
- command << opts[:alias]
357
-
358
- execute_shell(command)
359
-
360
- Kanrisuru::Result.new(command)
361
- end
362
-
363
- def zypper_add_service(opts)
364
- command = Kanrisuru::Command.new('zypper')
365
- zypper_global_opts(command, opts)
366
- command << 'addservice'
367
-
368
- command.append_arg('--name', opts[:name])
369
-
370
- command.append_flag('--enable', opts[:enable])
371
- command.append_flag('--disable', opts[:disable])
372
- command.append_flag('--refresh', opts[:refresh])
373
- command.append_flag('--no-refresh', opts[:no_refresh])
374
-
375
- services = opts[:services]
376
- if Kanrisuru::Util.present?(services)
377
- services = [services] if services.instance_of?(String)
378
- command << services.join(' ')
379
- end
380
-
381
- execute_shell(command)
382
-
383
- Kanrisuru::Result.new(command)
384
- end
385
-
386
- def zypper_remove_service(opts)
387
- command = Kanrisuru::Command.new('zypper')
388
- zypper_global_opts(command, opts)
389
- command << 'removeservice'
390
- command.append_flag('--loose-auth', opts[:loose_auth])
391
- command.append_flag('--loose-query', opts[:loose_query])
392
-
393
- services = opts[:services]
394
- if Kanrisuru::Util.present?(services)
395
- services = [services] if services.instance_of?(String)
396
- command << services.join(' ')
397
- end
398
-
399
- execute_shell(command)
400
-
401
- Kanrisuru::Result.new(command)
402
- end
403
-
404
- def zypper_modify_service(opts)
405
- command = Kanrisuru::Command.new('zypper')
406
- zypper_global_opts(command, opts)
407
-
408
- command << 'modifyservice'
409
- command.append_arg('--name', opts[:name])
410
-
411
- command.append_flag('--enable', opts[:enable])
412
- command.append_flag('--disable', opts[:disable])
413
- command.append_flag('--refresh', opts[:refresh])
414
- command.append_flag('--no-refresh', opts[:no_refresh])
415
- command.append_flag('--all', opts[:all])
416
- command.append_flag('--local', opts[:local])
417
- command.append_flag('--remote', opts[:remote])
418
-
419
- command.append_arg('--ar-to-enable', opts[:ar_to_enable])
420
- command.append_arg('--ar-to-disable', opts[:ar_to_disable])
421
- command.append_arg('--rr-to-enable', opts[:rr_to_enable])
422
- command.append_arg('--rr-to-disable', opts[:rr_to_disable])
423
- command.append_arg('--cl-to-enable', opts[:cl_to_enable])
424
- command.append_arg('--cl-to-disable', opts[:cl_to_disable])
425
-
426
- if Kanrisuru::Util.present?(opts[:medium_type])
427
- raise ArgumentError, 'Invalid medium type' unless MEDIUM_TYPES.include?(opts[:medium_type])
428
-
429
- command.append_arg('--medium-type', opts[:medium_type])
430
- end
431
-
432
- execute_shell(command)
433
-
434
- Kanrisuru::Result.new(command)
435
- end
436
-
437
- def zypper_list_services(opts)
438
- command = Kanrisuru::Command.new('zypper')
439
- zypper_global_opts(command, opts)
440
-
441
- command << 'services'
442
- command.append_flag('--details')
443
-
444
- execute_shell(command)
445
-
446
- Kanrisuru::Result.new(command) do |cmd|
447
- lines = cmd.to_a
448
-
449
- rows = []
450
- lines.each do |line|
451
- next unless line.match(/^\d/)
452
-
453
- values = line.split('|')
454
- values = values.map(&:strip)
455
-
456
- rows << Service.new(
457
- values[0].to_i,
458
- values[1],
459
- values[2],
460
- values[3] == 'Yes',
461
- values[4].include?('Yes'),
462
- values[5] == 'Yes',
463
- values[6].to_i,
464
- values[7],
465
- values[8]
466
- )
467
- end
468
- rows
469
- end
470
- end
471
-
472
- def zypper_refresh_services(opts)
473
- command = Kanrisuru::Command.new('zypper')
474
- zypper_global_opts(command, opts)
475
-
476
- command << 'refresh-services'
477
- command.append_flag('--force', opts[:force])
478
- command.append_flag('--with-repos', opts[:with_repos])
479
- command.append_flag('--restore-status', opts[:restore_status])
480
-
481
- execute_shell(command)
482
-
483
- Kanrisuru::Result.new(command)
484
- end
485
-
486
- def zypper_add_lock(opts)
487
- command = Kanrisuru::Command.new('zypper')
488
- zypper_global_opts(command, opts)
489
- command << 'addlock'
490
-
491
- command.append_arg('--repo', opts[:repo])
492
- zypper_package_type_opt(command, opts)
493
-
494
- command << opts[:lock]
495
-
496
- execute_shell(command)
497
-
498
- Kanrisuru::Result.new(command)
499
- end
500
-
501
- def zypper_remove_lock(opts)
502
- command = Kanrisuru::Command.new('zypper')
503
- zypper_global_opts(command, opts)
504
- command << 'removelock'
505
-
506
- command.append_arg('--repo', opts[:repo])
507
- zypper_package_type_opt(command, opts)
508
-
509
- command << opts[:lock]
510
-
511
- execute_shell(command)
512
-
513
- Kanrisuru::Result.new(command)
514
- end
515
-
516
- def zypper_list_locks(opts)
517
- command = Kanrisuru::Command.new('zypper')
518
- zypper_global_opts(command, opts)
519
- command.append_flag('--quiet')
520
- command << 'locks'
521
-
522
- command.append_flag('--matches')
523
-
524
- execute_shell(command)
525
-
526
- Kanrisuru::Result.new(command) do |cmd|
527
- lines = cmd.to_a
528
-
529
- rows = []
530
- lines.each do |line|
531
- next if line == ''
532
-
533
- values = line.split(' | ')
534
- next if values.length != 5
535
- next if values[0] == '#' && values[4] == 'Repository'
536
-
537
- values = values.map(&:strip)
538
-
539
- rows << Lock.new(
540
- values[0].to_i,
541
- values[1],
542
- values[2].to_i,
543
- values[3],
544
- values[4]
545
- )
546
- end
547
-
548
- rows
549
- end
550
- end
551
-
552
- def zypper_clean_locks(opts)
553
- command = Kanrisuru::Command.new('zypper')
554
- zypper_global_opts(command, opts)
555
- command << 'cleanlocks'
556
-
557
- execute_shell(command)
558
-
559
- Kanrisuru::Result.new(command)
560
- end
561
-
562
- def zypper_info(opts)
563
- command = Kanrisuru::Command.new('zypper')
564
- zypper_global_opts(command, opts)
565
- command << 'info'
566
-
567
- zypper_repos_opt(command, opts)
568
- zypper_package_type_opt(command, opts)
569
-
570
- packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
571
- command << packages
572
-
573
- execute_shell(command)
574
-
575
- Kanrisuru::Result.new(command) do |cmd|
576
- lines = cmd.to_a
577
-
578
- rows = []
579
- current_row = nil
580
- description = ''
581
- skip_description = false
582
-
583
- lines.each do |line|
584
- case line
585
- when /^Repository/
586
- repository = extract_single_zypper_line(line)
587
- next if repository == ''
588
-
589
- unless current_row.nil?
590
- skip_description = false
591
- current_row.description = description.strip
592
- description = ''
593
- rows << current_row
594
- end
595
-
596
- current_row = PackageDetail.new
597
- current_row.repository = repository
598
- when /^Name/
599
- current_row.package = extract_single_zypper_line(line)
600
- when /^Version/
601
- current_row.version = extract_single_zypper_line(line)
602
- when /^Arch/
603
- current_row.architecture = extract_single_zypper_line(line)
604
- when /^Vendor/
605
- current_row.vendor = extract_single_zypper_line(line)
606
- when /^Support Level/
607
- current_row.support_level = extract_single_zypper_line(line)
608
- when /^Installed Size/
609
- size = Kanrisuru::Util::Bits.normalize_size(extract_single_zypper_line(line))
610
- current_row.install_size = size
611
- when /^Installed/
612
- value = extract_single_zypper_line(line)
613
- current_row.installed = value == 'Yes'
614
- when /^Status/
615
- current_row.status = extract_single_zypper_line(line)
616
- when /^Source package/
617
- current_row.source_package = extract_single_zypper_line(line)
618
- when /^Summary/
619
- current_row.summary = extract_single_zypper_line(line)
620
- when /^Description/
621
- description = extract_single_zypper_line(line)
622
- when /^Builds binary package/, /^Contents/
623
- skip_description = true
624
- else
625
- next if line == ''
626
- next if line.include?('Information for package')
627
- next if line.include?('---------------------------')
628
-
629
- description += " #{line.strip}" unless skip_description
630
- end
631
- end
632
-
633
- if current_row
634
- current_row.description = description.strip
635
- rows << current_row
636
- end
637
-
638
- rows
639
- end
640
- end
641
-
642
- def zypper_install(opts)
643
- command = Kanrisuru::Command.new('zypper')
644
- zypper_global_opts(command, opts)
645
- command << 'install'
646
-
647
- zypper_repos_opt(command, opts)
648
- zypper_package_type_opt(command, opts)
649
-
650
- command.append_arg('-n', opts[:name])
651
- command.append_arg('-f', opts[:force])
652
- command.append_flag('--oldpackage', opts[:oldpackage])
653
- command.append_arg('--from', opts[:from])
654
- command.append_arg('--capability', opts[:capability])
655
- command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
656
- command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
657
- command.append_flag('--replacefiles', opts[:replacefiles])
658
-
659
- command.append_flag('--dry-run', opts[:dry_run])
660
- command.append_flag('--allow-unsigned-rpm', opts[:allow_unsigned_rpm])
661
-
662
- zypper_solver_opts(command, opts)
663
- zypper_download_and_install_opts(command, opts)
664
- zypper_expert_opts(command, opts)
665
-
666
- packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
667
- command << packages
668
-
669
- execute_shell(command)
670
-
671
- Kanrisuru::Result.new(command)
672
- end
673
-
674
- def zypper_verify(opts)
675
- command = Kanrisuru::Command.new('zypper')
676
- zypper_global_opts(command, opts)
677
- command << 'verify'
678
-
679
- command.append_flag('--dry-run', opts[:dry_run])
680
-
681
- zypper_repos_opt(command, opts)
682
- zypper_solver_opts(command, opts)
683
- zypper_expert_opts(command, opts)
684
-
685
- execute_shell(command)
686
-
687
- Kanrisuru::Result.new(command)
688
- end
689
-
690
- def zypper_source_install(opts)
691
- command = Kanrisuru::Command.new('zypper')
692
- zypper_global_opts(command, opts)
693
- command << 'sourceinstall'
694
-
695
- zypper_repos_opt(command, opts)
696
- command.append_flag('--build-deps-only', opts[:build_deps_only])
697
- command.append_flag('--no-build-deps', opts[:no_build_deps])
698
- command.append_flag('--download-only', opts[:download_only])
699
-
700
- execute_shell(command)
701
-
702
- Kanrisuru::Result.new(command)
703
- end
704
-
705
- def zypper_remove(opts)
706
- command = Kanrisuru::Command.new('zypper')
707
- zypper_global_opts(command, opts)
708
- command << 'remove'
709
-
710
- command.append_flag('--dry-run', opts[:dry_run])
711
- command.append_flag('--capability', opts[:capability])
712
-
713
- zypper_repos_opt(command, opts)
714
- zypper_package_type_opt(command, opts)
715
- zypper_solver_opts(command, opts)
716
-
717
- packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
718
- command << packages
719
-
720
- execute_shell(command)
721
- Kanrisuru::Result.new(command)
722
- end
723
-
724
- def zypper_install_new_recommends(opts)
725
- command = Kanrisuru::Command.new('zypper')
726
- zypper_global_opts(command, opts)
727
- command << 'install-new-recommends'
728
-
729
- command.append_flag('--dry-run', opts[:dry_run])
730
-
731
- zypper_repos_opt(command, opts)
732
- zypper_solver_opts(command, opts)
733
- zypper_expert_opts(command, opts)
734
-
735
- execute_shell(command)
736
-
737
- Kanrisuru::Result.new(command)
738
- end
739
-
740
- def zypper_purge_kernels(opts)
741
- command = Kanrisuru::Command.new('zypper')
742
- zypper_global_opts(command, opts)
743
- command << 'purge-kernels'
744
- command.append_flag('--dry-run', opts[:dry_run])
745
-
746
- execute_shell(command)
747
-
748
- Kanrisuru::Result.new(command)
749
- end
750
-
751
- def zypper_search(opts)
752
- command = Kanrisuru::Command.new('zypper')
753
- zypper_global_opts(command, opts)
754
- command << 'search'
755
-
756
- command.append_flag('--details')
757
- command.append_flag('--match-substrings', opts[:match_substrings])
758
- command.append_flag('--match-words', opts[:match_words])
759
- command.append_flag('--match-exact', opts[:match_exact])
760
- command.append_flag('--provides', opts[:provides])
761
- command.append_flag('--requires', opts[:requires])
762
- command.append_flag('--recommends', opts[:recommends])
763
- command.append_flag('--suggests', opts[:suggests])
764
- command.append_flag('--conflicts', opts[:conflicts])
765
- command.append_flag('--obsoletes', opts[:obsoletes])
766
- command.append_flag('--supplements', opts[:supplements])
767
- command.append_flag('--provides-pkg', opts[:provides_pkg])
768
- command.append_flag('--requires-pkg', opts[:requires_pkg])
769
- command.append_flag('--recommends-pkg', opts[:recommends_pkg])
770
- command.append_flag('--supplements-pkg', opts[:supplements_pkg])
771
- command.append_flag('--conflicts-pkg', opts[:conflicts_pkg])
772
- command.append_flag('--obsoletes-pkg', opts[:obsoletes_pkg])
773
- command.append_flag('--suggests-pkg', opts[:suggests_pkg])
774
- command.append_flag('--name', opts[:name])
775
- command.append_flag('--file-list', opts[:file_list])
776
- command.append_flag('--search-descriptions', opts[:search_descriptions])
777
- command.append_flag('--case-sensitive', opts[:case_sensitive])
778
- command.append_flag('--installed-only', opts[:installed_only])
779
- command.append_flag('--not-installed-only', opts[:not_installed_only])
780
- command.append_flag('--sort-by-name', opts[:sort_by_name])
781
- command.append_flag('--sort-by-repo', opts[:sort_by_repo])
782
-
783
- zypper_repos_opt(command, opts)
784
- zypper_package_type_opt(command, opts)
785
-
786
- packages = Kanrisuru::Util.array_join_string(opts[:packages], ' ')
787
- command << packages
788
-
789
- execute_shell(command)
790
-
791
- Kanrisuru::Result.new(command) do |cmd|
792
- lines = cmd.to_a
793
-
794
- rows = []
795
- lines.each do |line|
796
- next if line == ''
797
-
798
- values = line.split('|')
799
- next if values.length != 6
800
-
801
- values = values.map(&:strip)
802
- next if values[0] == 'S' && values[5] == 'Repository'
803
-
804
- rows << SearchResult.new(
805
- values[5],
806
- values[1],
807
- values[0],
808
- values[2],
809
- values[3],
810
- values[4]
811
- )
812
- end
813
-
814
- rows
815
- end
816
- end
817
-
818
- def zypper_update(opts)
819
- command = Kanrisuru::Command.new('zypper')
820
- zypper_global_opts(command, opts)
821
- command << 'update'
822
-
823
- zypper_repos_opt(command, opts)
824
- zypper_package_type_opt(command, opts)
825
-
826
- command.append_flag('--replacefiles', opts[:replacefiles])
827
- command.append_flag('--dry-run', opts[:dry_run])
828
- command.append_flag('--best-effort', opts[:best_effort])
829
-
830
- zypper_solver_opts(command, opts)
831
- zypper_expert_opts(command, opts)
832
-
833
- execute_shell(command)
834
-
835
- Kanrisuru::Result.new(command)
836
- end
837
-
838
- def zypper_list_updates(opts)
839
- return zypper_list_patches(opts) if opts[:type] == 'patch'
840
-
841
- command = Kanrisuru::Command.new('zypper')
842
- zypper_global_opts(command, opts)
843
- command.append_flag('--quiet')
844
- command << 'list-updates'
845
-
846
- zypper_repos_opt(command, opts)
847
- zypper_package_type_opt(command, opts)
848
-
849
- command.append_flag('--all', opts[:all])
850
- command.append_flag('--best-effort', opts[:best_effort])
851
-
852
- zypper_expert_opts(command, opts)
853
-
854
- execute_shell(command)
855
-
856
- Kanrisuru::Result.new(command) do |cmd|
857
- lines = cmd.to_a
858
- lines.shift
859
-
860
- rows = []
861
- lines.each do |line|
862
- values = line.split(' | ')
863
- values = values.map(&:strip)
864
-
865
- rows << PackageUpdate.new(
866
- values[1],
867
- values[2],
868
- values[3],
869
- values[4],
870
- values[5]
871
- )
872
- end
873
-
874
- rows
875
- end
876
- end
877
-
878
- def zypper_list_patches(opts)
879
- command = Kanrisuru::Command.new('zypper')
880
- zypper_global_opts(command, opts)
881
- command.append_flag('--quiet')
882
- command << 'list-patches'
883
-
884
- command.append_arg('--bugzilla', opts[:bugzilla])
885
- command.append_arg('--cve', opts[:cve])
886
- command.append_arg('--date', opts[:date])
887
-
888
- zypper_patch_category_opt(command, opts)
889
- zypper_patch_severity_opt(command, opts)
890
-
891
- command.append_flag('--issues', opts[:issues])
892
- command.append_flag('--all', opts[:all])
893
- command.append_flag('--with-optional', opts[:with_optional])
894
- command.append_flag('--without-optional', opts[:without_optional])
895
-
896
- zypper_repos_opt(command, opts)
897
-
898
- execute_shell(command)
899
-
900
- Kanrisuru::Result.new(command) do |cmd|
901
- lines = cmd.to_a
902
- lines.shift
903
- lines.shift
904
-
905
- rows = []
906
- lines.each do |line|
907
- next if line == ''
908
-
909
- values = line.split(' | ')
910
- next if values.length != 7
911
-
912
- values = values.map(&:strip)
913
- next if values[0] == 'Repository' && values[6] == 'Summary'
914
-
915
- rows << PatchUpdate.new(
916
- values[0],
917
- values[1],
918
- values[2],
919
- values[3],
920
- values[4] == '---' ? '' : values[4],
921
- values[5],
922
- values[6]
923
- )
924
- end
925
-
926
- rows
927
- end
928
- end
929
-
930
- def zypper_patch_check(opts)
931
- command = Kanrisuru::Command.new('zypper')
932
- command.append_valid_exit_code(EXIT_INF_UPDATE_NEEDED)
933
- command.append_valid_exit_code(EXIT_INF_SEC_UPDATE_NEEDED)
934
-
935
- zypper_global_opts(command, opts)
936
- command.append_flag('--quiet')
937
- command << 'patch-check'
938
-
939
- command.append_flag('--updatestack-only', opts[:updatestack_only])
940
- command.append_flag('--with-optional', opts[:with_optional])
941
- command.append_flag('--without-optional', opts[:without_optional])
942
-
943
- zypper_repos_opt(command, opts)
944
-
945
- execute_shell(command)
946
-
947
- Kanrisuru::Result.new(command) do |cmd|
948
- lines = cmd.to_a
949
-
950
- rows = []
951
- lines.each do |line|
952
- next if line == ''
953
-
954
- values = line.split(' | ')
955
- next if values.length != 3
956
-
957
- values = values.map(&:strip)
958
- next if values[0] == 'Category'
959
-
960
- rows << PatchCount.new(
961
- values[0],
962
- values[1].to_i,
963
- values[2].to_i
964
- )
965
- end
966
-
967
- rows
968
- end
969
- end
970
-
971
- def zypper_patch(opts)
972
- command = Kanrisuru::Command.new('zypper')
973
- command.append_valid_exit_code(EXIT_INF_REBOOT_NEEDED)
974
- command.append_valid_exit_code(EXIT_INF_RESTART_NEEDED)
975
- zypper_global_opts(command, opts)
976
-
977
- command << 'patch'
978
-
979
- command.append_flag('--updatestack-only', opts[:updatestack_only])
980
- command.append_flag('--with-update', opts[:with_update])
981
- command.append_flag('--with-optional', opts[:with_optional])
982
- command.append_flag('--without-optional', opts[:without_optional])
983
- command.append_flag('--replacefiles', opts[:replacefiles])
984
- command.append_flag('--dry-run', opts[:dry_run])
985
-
986
- command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
987
- command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
988
-
989
- command.append_arg('--bugzilla', opts[:bugzilla])
990
- command.append_arg('--cve', opts[:cve])
991
- command.append_arg('--date', opts[:date])
992
-
993
- zypper_patch_category_opt(command, opts)
994
- zypper_patch_severity_opt(command, opts)
995
- zypper_repos_opt(command, opts)
996
- zypper_solver_opts(command, opts)
997
- zypper_expert_opts(command, opts)
998
-
999
- execute_shell(command)
1000
-
1001
- Kanrisuru::Result.new(command)
1002
- end
1003
-
1004
- def zypper_dist_upgrade(opts)
1005
- command = Kanrisuru::Command.new('zypper')
1006
- zypper_global_opts(command, opts)
1007
- command << 'dist-upgrade'
1008
-
1009
- command.append_flag('--auto-agree-with-licenses', opts[:auto_agree_with_licenses])
1010
- command.append_flag('--auto-agree-with-product-licenses', opts[:auto_agree_with_product_licenses])
1011
- command.append_flag('--dry-run', opts[:dry_run])
1012
-
1013
- zypper_repos_opt(command, opts)
1014
- zypper_solver_opts(command, opts)
1015
- zypper_expert_opts(command, opts)
1016
-
1017
- execute_shell(command)
1018
-
1019
- Kanrisuru::Result.new(command)
1020
- end
1021
-
1022
- def zypper_global_opts(command, opts)
1023
- command.append_flag('--non-interactive')
1024
- command.append_flag('--ignore-unknown')
1025
- command.append_flag('--no-color')
1026
- command.append_flag('--no-abbrev')
1027
- command.append_arg('--config', opts[:config_file])
1028
- end
1029
-
1030
- def zypper_solver_opts(command, opts)
1031
- command.append_flag('--debug-solver', opts[:debug_solver])
1032
- command.append_flag('--force-resolution', opts[:force_resolution])
1033
- command.append_flag('--no-force-resolution', opts[:no_force_resolution])
1034
-
1035
- solver_focus_mode = opts[:solver_focus_mode]
1036
- if Kanrisuru::Util.present?(solver_focus_mode) && SOLVER_FOCUS_MODES.include?(solver_focus_mode)
1037
- command.append_arg('--solver-focus', solver_focus_mode)
1038
- end
1039
-
1040
- command.append_flag('--clean-deps', opts[:clean_deps])
1041
- command.append_flag('--no-clean-deps', opts[:no_clean_deps])
1042
- end
1043
-
1044
- def zypper_download_and_install_opts(command, opts)
1045
- command.append_flag('--download-only', opts[:download_only])
1046
- command.append_flag('--download-in-advance', opts[:download_in_advance])
1047
- command.append_flag('--download-in-heaps', opts[:download_in_heaps])
1048
- command.append_flag('--download-as-needed', opts[:download_as_needed])
1049
- end
1050
-
1051
- def zypper_expert_opts(command, opts)
1052
- command.append_flag('--allow-downgrade', opts[:allow_downgrade])
1053
- command.append_flag('--no-allow-downgrade', opts[:no_allow_downgrade])
1054
- command.append_flag('--allow-name-change', opts[:allow_name_change])
1055
- command.append_flag('--no-allow-name-change', opts[:no_allow_name_change])
1056
- command.append_flag('--allow-arch-change', opts[:allow_arch_change])
1057
- command.append_flag('--no-allow-arch-change', opts[:no_allow_arch_change])
1058
- command.append_flag('--allow-vendor-change', opts[:allow_vendor_change])
1059
- command.append_flag('--no-allow-vendor-change', opts[:no_allow_vendor_change])
1060
- end
1061
-
1062
- def zypper_repos_opt(command, opts)
1063
- zypper_array_opt(command, opts[:repos], '--repo')
1064
- end
1065
-
1066
- def zypper_patch_category_opt(command, opts)
1067
- zypper_array_opt(command, opts[:category], '--category', PATCH_CATEGORIES)
1068
- end
1069
-
1070
- def zypper_patch_severity_opt(command, opts)
1071
- zypper_array_opt(command, opts[:severity], '--severity', PATCH_SEVERITIES)
1072
- end
1073
-
1074
- def zypper_array_opt(command, value, opt_value, array = nil)
1075
- return unless Kanrisuru::Util.present?(value)
1076
-
1077
- values = value.instance_of?(String) ? [value] : value
1078
- values.each do |v|
1079
- next if Kanrisuru::Util.present?(array) && !array.include?(v)
1080
-
1081
- command.append_arg(opt_value, v)
1082
- end
1083
- end
1084
-
1085
- def zypper_package_type_opt(command, opts)
1086
- type = opts[:type]
1087
-
1088
- command.append_arg('-t', type) if Kanrisuru::Util.present?(type) && PACKAGE_TYPES.include?(type)
1089
- end
1090
-
1091
- def extract_single_zypper_line(line)
1092
- values = line.split(': ', 2)
1093
- values.length == 2 ? values[1] : ''
1094
- end
1095
85
  end
1096
86
  end
1097
87
  end