kanrisuru 0.11.1 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rspec +1 -1
- data/CHANGELOG.md +21 -0
- data/README.md +13 -88
- data/kanrisuru.gemspec +1 -0
- data/lib/kanrisuru/command.rb +7 -0
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -145
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -319
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -101
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -126
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -105
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -1015
- data/lib/kanrisuru/os_package/collection.rb +58 -0
- data/lib/kanrisuru/os_package/define.rb +34 -0
- data/lib/kanrisuru/os_package/include.rb +163 -0
- data/lib/kanrisuru/os_package.rb +3 -245
- data/lib/kanrisuru/remote/fstab.rb +1 -1
- data/lib/kanrisuru/result.rb +5 -4
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +2 -1
- data/spec/functional/core/mount_spec.rb +121 -0
- data/spec/functional/result_spec.rb +150 -0
- data/spec/{hosts.json → helper/hosts.json} +0 -0
- data/spec/helper/simplecov.rb +21 -0
- data/spec/helper/stub_network.rb +1 -1
- data/spec/helper/test_hosts.rb +12 -2
- data/spec/integration/core/apt/debian_spec.rb +9 -0
- data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
- data/spec/integration/core/archive/centos_spec.rb +9 -0
- data/spec/integration/core/archive/debian_spec.rb +9 -0
- data/spec/integration/core/archive/fedora_spec.rb +9 -0
- data/spec/integration/core/archive/opensuse_spec.rb +9 -0
- data/spec/integration/core/archive/rhel_spec.rb +9 -0
- data/spec/integration/core/archive/sles_spec.rb +9 -0
- data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
- data/spec/integration/core/disk/centos_spec.rb +9 -0
- data/spec/integration/core/disk/debian_spec.rb +9 -0
- data/spec/integration/core/disk/fedora_spec.rb +9 -0
- data/spec/integration/core/disk/opensuse_spec.rb +9 -0
- data/spec/integration/core/disk/rhel_spec.rb +9 -0
- data/spec/integration/core/disk/sles_spec.rb +9 -0
- data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
- data/spec/integration/core/dmi/centos_spec.rb +9 -0
- data/spec/integration/core/dmi/debian_spec.rb +9 -0
- data/spec/integration/core/dmi/fedora_spec.rb +9 -0
- data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
- data/spec/integration/core/dmi/rhel_spec.rb +9 -0
- data/spec/integration/core/dmi/sles_spec.rb +9 -0
- data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
- data/spec/integration/core/file/centos_spec.rb +9 -0
- data/spec/integration/core/file/debian_spec.rb +9 -0
- data/spec/integration/core/file/fedora_spec.rb +9 -0
- data/spec/integration/core/file/opensuse_spec.rb +9 -0
- data/spec/integration/core/file/rhel_spec.rb +9 -0
- data/spec/integration/core/file/sles_spec.rb +9 -0
- data/spec/integration/core/file/ubuntu_spec.rb +9 -0
- data/spec/integration/core/find/centos_spec.rb +9 -0
- data/spec/integration/core/find/debian_spec.rb +9 -0
- data/spec/integration/core/find/fedora_spec.rb +9 -0
- data/spec/integration/core/find/opensuse_spec.rb +9 -0
- data/spec/integration/core/find/rhel_spec.rb +9 -0
- data/spec/integration/core/find/sles_spec.rb +9 -0
- data/spec/integration/core/find/ubuntu_spec.rb +9 -0
- data/spec/integration/core/group/centos_spec.rb +9 -0
- data/spec/integration/core/group/debian_spec.rb +9 -0
- data/spec/integration/core/group/fedora_spec.rb +9 -0
- data/spec/integration/core/group/opensuse_spec.rb +9 -0
- data/spec/integration/core/group/rhel_spec.rb +9 -0
- data/spec/integration/core/group/sles_spec.rb +9 -0
- data/spec/integration/core/group/ubuntu_spec.rb +9 -0
- data/spec/integration/core/ip/centos_spec.rb +9 -0
- data/spec/integration/core/ip/debian_spec.rb +9 -0
- data/spec/integration/core/ip/fedora_spec.rb +9 -0
- data/spec/integration/core/ip/opensuse_spec.rb +9 -0
- data/spec/integration/core/ip/rhel_spec.rb +9 -0
- data/spec/integration/core/ip/sles_spec.rb +9 -0
- data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
- data/spec/integration/core/path/centos_spec.rb +9 -0
- data/spec/integration/core/path/debian_spec.rb +9 -0
- data/spec/integration/core/path/fedora_spec.rb +9 -0
- data/spec/integration/core/path/opensuse_spec.rb +9 -0
- data/spec/integration/core/path/rhel_spec.rb +9 -0
- data/spec/integration/core/path/sles_spec.rb +9 -0
- data/spec/integration/core/path/ubuntu_spec.rb +9 -0
- data/spec/integration/core/socket/centos_spec.rb +9 -0
- data/spec/integration/core/socket/debian_spec.rb +9 -0
- data/spec/integration/core/socket/fedora_spec.rb +9 -0
- data/spec/integration/core/socket/opensuse_spec.rb +9 -0
- data/spec/integration/core/socket/rhel_spec.rb +9 -0
- data/spec/integration/core/socket/sles_spec.rb +9 -0
- data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stat/centos_spec.rb +9 -0
- data/spec/integration/core/stat/debian_spec.rb +9 -0
- data/spec/integration/core/stat/fedora_spec.rb +9 -0
- data/spec/integration/core/stat/opensuse_spec.rb +9 -0
- data/spec/integration/core/stat/rhel_spec.rb +9 -0
- data/spec/integration/core/stat/sles_spec.rb +9 -0
- data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stream/centos_spec.rb +9 -0
- data/spec/integration/core/stream/debian_spec.rb +9 -0
- data/spec/integration/core/stream/fedora_spec.rb +9 -0
- data/spec/integration/core/stream/opensuse_spec.rb +9 -0
- data/spec/integration/core/stream/rhel_spec.rb +9 -0
- data/spec/integration/core/stream/sles_spec.rb +9 -0
- data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
- data/spec/integration/core/system/centos_spec.rb +9 -0
- data/spec/integration/core/system/debian_spec.rb +9 -0
- data/spec/integration/core/system/fedora_spec.rb +9 -0
- data/spec/integration/core/system/opensuse_spec.rb +9 -0
- data/spec/integration/core/system/rhel_spec.rb +9 -0
- data/spec/integration/core/system/sles_spec.rb +9 -0
- data/spec/integration/core/system/ubuntu_spec.rb +9 -0
- data/spec/integration/core/transfer/centos_spec.rb +9 -0
- data/spec/integration/core/transfer/debian_spec.rb +9 -0
- data/spec/integration/core/transfer/fedora_spec.rb +9 -0
- data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
- data/spec/integration/core/transfer/rhel_spec.rb +9 -0
- data/spec/integration/core/transfer/sles_spec.rb +9 -0
- data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
- data/spec/integration/core/user/centos_spec.rb +9 -0
- data/spec/integration/core/user/debian_spec.rb +9 -0
- data/spec/integration/core/user/fedora_spec.rb +9 -0
- data/spec/integration/core/user/opensuse_spec.rb +9 -0
- data/spec/integration/core/user/rhel_spec.rb +9 -0
- data/spec/integration/core/user/sles_spec.rb +9 -0
- data/spec/integration/core/user/ubuntu_spec.rb +9 -0
- data/spec/integration/core/yum/centos_spec.rb +9 -0
- data/spec/integration/core/yum/fedora_spec.rb +9 -0
- data/spec/integration/core/yum/rhel_spec.rb +9 -0
- data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
- data/spec/integration/core/zypper/sles_spec.rb +9 -0
- data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/cpu/centos_spec.rb +9 -0
- data/spec/integration/remote/cpu/debian_spec.rb +9 -0
- data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
- data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
- data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
- data/spec/integration/remote/cpu/sles_spec.rb +9 -0
- data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/env/centos_spec.rb +9 -0
- data/spec/integration/remote/env/debian_spec.rb +9 -0
- data/spec/integration/remote/env/fedora_spec.rb +9 -0
- data/spec/integration/remote/env/opensuse_spec.rb +9 -0
- data/spec/integration/remote/env/rhel_spec.rb +9 -0
- data/spec/integration/remote/env/sles_spec.rb +9 -0
- data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/fstab/centos_spec.rb +9 -0
- data/spec/integration/remote/fstab/debian_spec.rb +9 -0
- data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
- data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
- data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
- data/spec/integration/remote/fstab/sles_spec.rb +9 -0
- data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/host/centos_spec.rb +9 -0
- data/spec/integration/remote/host/debian_spec.rb +9 -0
- data/spec/integration/remote/host/fedora_spec.rb +9 -0
- data/spec/integration/remote/host/opensuse_spec.rb +9 -0
- data/spec/integration/remote/host/rhel_spec.rb +9 -0
- data/spec/integration/remote/host/sles_spec.rb +9 -0
- data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/memory/centos_spec.rb +9 -0
- data/spec/integration/remote/memory/debian_spec.rb +9 -0
- data/spec/integration/remote/memory/fedora_spec.rb +9 -0
- data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
- data/spec/integration/remote/memory/rhel_spec.rb +9 -0
- data/spec/integration/remote/memory/sles_spec.rb +9 -0
- data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/os/centos_spec.rb +9 -0
- data/spec/integration/remote/os/debian_spec.rb +9 -0
- data/spec/integration/remote/os/fedora_spec.rb +9 -0
- data/spec/integration/remote/os/opensuse_spec.rb +9 -0
- data/spec/integration/remote/os/rhel_spec.rb +9 -0
- data/spec/integration/remote/os/sles_spec.rb +9 -0
- data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
- data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
- data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
- data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
- data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
- data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
- data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
- data/spec/spec_helper.rb +4 -4
- data/spec/support/shared_examples/integration/core/apt.rb +117 -0
- data/spec/support/shared_examples/integration/core/archive.rb +221 -0
- data/spec/support/shared_examples/integration/core/disk.rb +91 -0
- data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
- data/spec/support/shared_examples/integration/core/file.rb +357 -0
- data/spec/support/shared_examples/integration/core/find.rb +50 -0
- data/spec/support/shared_examples/integration/core/group.rb +62 -0
- data/spec/support/shared_examples/integration/core/ip.rb +68 -0
- data/spec/support/shared_examples/integration/core/path.rb +90 -0
- data/spec/support/shared_examples/integration/core/socket.rb +27 -0
- data/spec/support/shared_examples/integration/core/stat.rb +95 -0
- data/spec/support/shared_examples/integration/core/stream.rb +112 -0
- data/spec/support/shared_examples/integration/core/system.rb +155 -0
- data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
- data/spec/support/shared_examples/integration/core/user.rb +72 -0
- data/spec/support/shared_examples/integration/core/yum.rb +115 -0
- data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
- data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
- data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
- data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
- data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
- data/spec/support/shared_examples/integration/remote/host.rb +65 -0
- data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
- data/spec/support/shared_examples/integration/remote/os.rb +60 -0
- data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
- data/spec/unit/command_spec.rb +18 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +433 -30
- data/spec/integration/core/apt_spec.rb +0 -120
- data/spec/integration/core/archive_spec.rb +0 -228
- data/spec/integration/core/disk_spec.rb +0 -94
- data/spec/integration/core/dmi_spec.rb +0 -37
- data/spec/integration/core/file_spec.rb +0 -368
- data/spec/integration/core/find_spec.rb +0 -53
- data/spec/integration/core/group_spec.rb +0 -65
- data/spec/integration/core/ip_spec.rb +0 -71
- data/spec/integration/core/path_spec.rb +0 -93
- data/spec/integration/core/socket_spec.rb +0 -31
- data/spec/integration/core/stat_spec.rb +0 -98
- data/spec/integration/core/stream_spec.rb +0 -117
- data/spec/integration/core/system_spec.rb +0 -143
- data/spec/integration/core/transfer_spec.rb +0 -108
- data/spec/integration/core/user_spec.rb +0 -76
- data/spec/integration/core/yum_spec.rb +0 -118
- data/spec/integration/core/zypper_spec.rb +0 -199
- data/spec/integration/remote/cpu_spec.rb +0 -41
- data/spec/integration/remote/env_spec.rb +0 -36
- data/spec/integration/remote/fstab_spec.rb +0 -92
- data/spec/integration/remote/host_spec.rb +0 -68
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -63
- data/spec/integration/remote/remote_file_spec.rb +0 -180
- data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,109 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/add_lock'
|
4
|
+
require_relative 'commands/add_repo'
|
5
|
+
require_relative 'commands/add_service'
|
6
|
+
require_relative 'commands/clean_cache'
|
7
|
+
require_relative 'commands/clean_locks'
|
8
|
+
require_relative 'commands/dist_upgrade'
|
9
|
+
require_relative 'commands/info'
|
10
|
+
require_relative 'commands/install'
|
11
|
+
require_relative 'commands/install_new_recommends'
|
12
|
+
require_relative 'commands/list_locks'
|
13
|
+
require_relative 'commands/list_patches'
|
14
|
+
require_relative 'commands/list_repos'
|
15
|
+
require_relative 'commands/list_services'
|
16
|
+
require_relative 'commands/list_updates'
|
17
|
+
require_relative 'commands/modify_repo'
|
18
|
+
require_relative 'commands/modify_service'
|
19
|
+
require_relative 'commands/patch'
|
20
|
+
require_relative 'commands/patch_check'
|
21
|
+
require_relative 'commands/purge_kernels'
|
22
|
+
require_relative 'commands/refresh_repos'
|
23
|
+
require_relative 'commands/refresh_services'
|
24
|
+
require_relative 'commands/remove'
|
25
|
+
require_relative 'commands/remove_lock'
|
26
|
+
require_relative 'commands/remove_repo'
|
27
|
+
require_relative 'commands/remove_service'
|
28
|
+
require_relative 'commands/rename_repo'
|
29
|
+
require_relative 'commands/search'
|
30
|
+
require_relative 'commands/source_install'
|
31
|
+
require_relative 'commands/update'
|
32
|
+
require_relative 'commands/verify'
|
33
|
+
|
34
|
+
module Kanrisuru
|
35
|
+
module Core
|
36
|
+
module Zypper
|
37
|
+
private
|
38
|
+
|
39
|
+
def zypper_global_opts(command, opts)
|
40
|
+
command.append_flag('--non-interactive')
|
41
|
+
command.append_flag('--ignore-unknown')
|
42
|
+
command.append_flag('--no-color')
|
43
|
+
command.append_flag('--no-abbrev')
|
44
|
+
command.append_arg('--config', opts[:config_file])
|
45
|
+
end
|
46
|
+
|
47
|
+
def zypper_solver_opts(command, opts)
|
48
|
+
command.append_flag('--debug-solver', opts[:debug_solver])
|
49
|
+
command.append_flag('--force-resolution', opts[:force_resolution])
|
50
|
+
command.append_flag('--no-force-resolution', opts[:no_force_resolution])
|
51
|
+
|
52
|
+
solver_focus_mode = opts[:solver_focus_mode]
|
53
|
+
if Kanrisuru::Util.present?(solver_focus_mode) && SOLVER_FOCUS_MODES.include?(solver_focus_mode)
|
54
|
+
command.append_arg('--solver-focus', solver_focus_mode)
|
55
|
+
end
|
56
|
+
|
57
|
+
command.append_flag('--clean-deps', opts[:clean_deps])
|
58
|
+
command.append_flag('--no-clean-deps', opts[:no_clean_deps])
|
59
|
+
end
|
60
|
+
|
61
|
+
def zypper_download_and_install_opts(command, opts)
|
62
|
+
command.append_flag('--download-only', opts[:download_only])
|
63
|
+
command.append_flag('--download-in-advance', opts[:download_in_advance])
|
64
|
+
command.append_flag('--download-in-heaps', opts[:download_in_heaps])
|
65
|
+
command.append_flag('--download-as-needed', opts[:download_as_needed])
|
66
|
+
end
|
67
|
+
|
68
|
+
def zypper_expert_opts(command, opts)
|
69
|
+
command.append_flag('--allow-downgrade', opts[:allow_downgrade])
|
70
|
+
command.append_flag('--no-allow-downgrade', opts[:no_allow_downgrade])
|
71
|
+
command.append_flag('--allow-name-change', opts[:allow_name_change])
|
72
|
+
command.append_flag('--no-allow-name-change', opts[:no_allow_name_change])
|
73
|
+
command.append_flag('--allow-arch-change', opts[:allow_arch_change])
|
74
|
+
command.append_flag('--no-allow-arch-change', opts[:no_allow_arch_change])
|
75
|
+
command.append_flag('--allow-vendor-change', opts[:allow_vendor_change])
|
76
|
+
command.append_flag('--no-allow-vendor-change', opts[:no_allow_vendor_change])
|
77
|
+
end
|
78
|
+
|
79
|
+
def zypper_repos_opt(command, opts)
|
80
|
+
zypper_array_opt(command, opts[:repos], '--repo')
|
81
|
+
end
|
82
|
+
|
83
|
+
def zypper_patch_category_opt(command, opts)
|
84
|
+
zypper_array_opt(command, opts[:category], '--category', PATCH_CATEGORIES)
|
85
|
+
end
|
86
|
+
|
87
|
+
def zypper_patch_severity_opt(command, opts)
|
88
|
+
zypper_array_opt(command, opts[:severity], '--severity', PATCH_SEVERITIES)
|
89
|
+
end
|
90
|
+
|
91
|
+
def zypper_array_opt(command, value, opt_value, array = nil)
|
92
|
+
return unless Kanrisuru::Util.present?(value)
|
93
|
+
|
94
|
+
values = value.instance_of?(String) ? [value] : value
|
95
|
+
values.each do |v|
|
96
|
+
next if Kanrisuru::Util.present?(array) && !array.include?(v)
|
97
|
+
|
98
|
+
command.append_arg(opt_value, v)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def zypper_package_type_opt(command, opts)
|
103
|
+
type = opts[:type]
|
104
|
+
|
105
|
+
command.append_arg('-t', type) if Kanrisuru::Util.present?(type) && PACKAGE_TYPES.include?(type)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
PACKAGE_TYPES = %w[package patch pattern product srcpackage application].freeze
|
7
|
+
PATCH_CATEGORIES = %w[security recommended optional feature document yast].freeze
|
8
|
+
PATCH_SEVERITIES = %w[critical important moderate low unspecified].freeze
|
9
|
+
SOLVER_FOCUS_MODES = %w[job installed update].freeze
|
10
|
+
MEDIUM_TYPES = %w[dir file cd dvd nfs iso http https ftp cifs smb hd].freeze
|
11
|
+
|
12
|
+
EXIT_INF_UPDATE_NEEDED = 100
|
13
|
+
EXIT_INF_SEC_UPDATE_NEEDED = 101
|
14
|
+
EXIT_INF_REBOOT_NEEDED = 102
|
15
|
+
EXIT_INF_RESTART_NEEDED = 103
|
16
|
+
EXIT_INF_CAP_NOT_FOUND = 104
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'parsers/base'
|
4
|
+
require_relative 'parsers/info'
|
5
|
+
require_relative 'parsers/list_locks'
|
6
|
+
require_relative 'parsers/list_patches'
|
7
|
+
require_relative 'parsers/list_repos'
|
8
|
+
require_relative 'parsers/list_services'
|
9
|
+
require_relative 'parsers/list_updates'
|
10
|
+
require_relative 'parsers/patch_check'
|
11
|
+
require_relative 'parsers/search'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class Base
|
8
|
+
class << self
|
9
|
+
def extract_single_zypper_line(line)
|
10
|
+
values = line.split(': ', 2)
|
11
|
+
values.length == 2 ? values[1] : ''
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class Info < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
current_row = nil
|
13
|
+
description = ''
|
14
|
+
skip_description = false
|
15
|
+
|
16
|
+
lines.each do |line|
|
17
|
+
case line
|
18
|
+
when /^Repository/
|
19
|
+
repository = extract_single_zypper_line(line)
|
20
|
+
next if repository == ''
|
21
|
+
|
22
|
+
unless current_row.nil?
|
23
|
+
skip_description = false
|
24
|
+
current_row.description = description.strip
|
25
|
+
description = ''
|
26
|
+
rows << current_row
|
27
|
+
end
|
28
|
+
|
29
|
+
current_row = Kanrisuru::Core::Zypper::PackageDetail.new
|
30
|
+
current_row.repository = repository
|
31
|
+
when /^Name/
|
32
|
+
current_row.package = extract_single_zypper_line(line)
|
33
|
+
when /^Version/
|
34
|
+
current_row.version = extract_single_zypper_line(line)
|
35
|
+
when /^Arch/
|
36
|
+
current_row.architecture = extract_single_zypper_line(line)
|
37
|
+
when /^Vendor/
|
38
|
+
current_row.vendor = extract_single_zypper_line(line)
|
39
|
+
when /^Support Level/
|
40
|
+
current_row.support_level = extract_single_zypper_line(line)
|
41
|
+
when /^Installed Size/
|
42
|
+
size = Kanrisuru::Util::Bits.normalize_size(extract_single_zypper_line(line))
|
43
|
+
current_row.install_size = size
|
44
|
+
when /^Installed/
|
45
|
+
value = extract_single_zypper_line(line)
|
46
|
+
current_row.installed = value == 'Yes'
|
47
|
+
when /^Status/
|
48
|
+
current_row.status = extract_single_zypper_line(line)
|
49
|
+
when /^Source package/
|
50
|
+
current_row.source_package = extract_single_zypper_line(line)
|
51
|
+
when /^Summary/
|
52
|
+
current_row.summary = extract_single_zypper_line(line)
|
53
|
+
when /^Description/
|
54
|
+
description = extract_single_zypper_line(line)
|
55
|
+
when /^Builds binary package/, /^Contents/
|
56
|
+
skip_description = true
|
57
|
+
else
|
58
|
+
next if line == ''
|
59
|
+
next if line.include?('Information for package')
|
60
|
+
next if line.include?('---------------------------')
|
61
|
+
|
62
|
+
description += " #{line.strip}" unless skip_description
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
if current_row
|
67
|
+
current_row.description = description.strip
|
68
|
+
rows << current_row
|
69
|
+
end
|
70
|
+
|
71
|
+
rows
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class ListLocks < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
lines.each do |line|
|
13
|
+
next if line == ''
|
14
|
+
|
15
|
+
values = line.split(' | ')
|
16
|
+
next if values.length != 5
|
17
|
+
next if values[0] == '#' && values[4] == 'Repository'
|
18
|
+
|
19
|
+
values = values.map(&:strip)
|
20
|
+
|
21
|
+
rows << Kanrisuru::Core::Zypper::Lock.new(
|
22
|
+
values[0].to_i,
|
23
|
+
values[1],
|
24
|
+
values[2].to_i,
|
25
|
+
values[3],
|
26
|
+
values[4]
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
rows
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class ListPatches < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
lines.shift
|
11
|
+
lines.shift
|
12
|
+
|
13
|
+
rows = []
|
14
|
+
lines.each do |line|
|
15
|
+
next if line == ''
|
16
|
+
|
17
|
+
values = line.split(' | ')
|
18
|
+
next if values.length != 7
|
19
|
+
|
20
|
+
values = values.map(&:strip)
|
21
|
+
next if values[0] == 'Repository' && values[6] == 'Summary'
|
22
|
+
|
23
|
+
rows << Kanrisuru::Core::Zypper::PatchUpdate.new(
|
24
|
+
values[0],
|
25
|
+
values[1],
|
26
|
+
values[2],
|
27
|
+
values[3],
|
28
|
+
values[4] == '---' ? '' : values[4],
|
29
|
+
values[5],
|
30
|
+
values[6]
|
31
|
+
)
|
32
|
+
end
|
33
|
+
|
34
|
+
rows
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class ListRepos < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
lines.each do |line|
|
13
|
+
next unless line.match(/^\d/)
|
14
|
+
|
15
|
+
values = line.split('|')
|
16
|
+
values = values.map(&:strip)
|
17
|
+
|
18
|
+
rows << Kanrisuru::Core::Zypper::Repo.new(
|
19
|
+
values[0].to_i,
|
20
|
+
values[1],
|
21
|
+
values[2],
|
22
|
+
values[3] == 'Yes',
|
23
|
+
values[4].include?('Yes'),
|
24
|
+
values[5] == 'Yes',
|
25
|
+
values[6].to_i,
|
26
|
+
values[7],
|
27
|
+
values[8],
|
28
|
+
values.length == 10 ? values[9] : nil
|
29
|
+
)
|
30
|
+
end
|
31
|
+
rows
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class ListServices < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
lines.each do |line|
|
13
|
+
next unless line.match(/^\d/)
|
14
|
+
|
15
|
+
values = line.split('|')
|
16
|
+
values = values.map(&:strip)
|
17
|
+
|
18
|
+
rows << Kanrisuru::Core::Zypper::Service.new(
|
19
|
+
values[0].to_i,
|
20
|
+
values[1],
|
21
|
+
values[2],
|
22
|
+
values[3] == 'Yes',
|
23
|
+
values[4].include?('Yes'),
|
24
|
+
values[5] == 'Yes',
|
25
|
+
values[6].to_i,
|
26
|
+
values[7],
|
27
|
+
values[8]
|
28
|
+
)
|
29
|
+
end
|
30
|
+
rows
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class ListUpdates < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
lines.shift
|
11
|
+
|
12
|
+
rows = []
|
13
|
+
lines.each do |line|
|
14
|
+
values = line.split(' | ')
|
15
|
+
values = values.map(&:strip)
|
16
|
+
|
17
|
+
rows << Kanrisuru::Core::Zypper::PackageUpdate.new(
|
18
|
+
values[1],
|
19
|
+
values[2],
|
20
|
+
values[3],
|
21
|
+
values[4],
|
22
|
+
values[5]
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
rows
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class PatchCheck < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
lines.each do |line|
|
13
|
+
next if line == ''
|
14
|
+
|
15
|
+
values = line.split(' | ')
|
16
|
+
next if values.length != 3
|
17
|
+
|
18
|
+
values = values.map(&:strip)
|
19
|
+
next if values[0] == 'Category'
|
20
|
+
|
21
|
+
rows << Kanrisuru::Core::Zypper::PatchCount.new(
|
22
|
+
values[0],
|
23
|
+
values[1].to_i,
|
24
|
+
values[2].to_i
|
25
|
+
)
|
26
|
+
end
|
27
|
+
|
28
|
+
rows
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
module Parser
|
7
|
+
class Search < Base
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
rows = []
|
12
|
+
lines.each do |line|
|
13
|
+
next if line == ''
|
14
|
+
|
15
|
+
values = line.split('|')
|
16
|
+
next if values.length != 6
|
17
|
+
|
18
|
+
values = values.map(&:strip)
|
19
|
+
next if values[0] == 'S' && values[5] == 'Repository'
|
20
|
+
|
21
|
+
rows << Kanrisuru::Core::Zypper::SearchResult.new(
|
22
|
+
values[5],
|
23
|
+
values[1],
|
24
|
+
values[0],
|
25
|
+
values[2],
|
26
|
+
values[3],
|
27
|
+
values[4]
|
28
|
+
)
|
29
|
+
end
|
30
|
+
|
31
|
+
rows
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Zypper
|
6
|
+
Repo = Struct.new(
|
7
|
+
:number,
|
8
|
+
:alias,
|
9
|
+
:name,
|
10
|
+
:enabled,
|
11
|
+
:gpg_check,
|
12
|
+
:refresh,
|
13
|
+
:priority,
|
14
|
+
:type,
|
15
|
+
:uri,
|
16
|
+
:service
|
17
|
+
)
|
18
|
+
|
19
|
+
Service = Struct.new(
|
20
|
+
:number,
|
21
|
+
:alias,
|
22
|
+
:name,
|
23
|
+
:enabled,
|
24
|
+
:gpg_check,
|
25
|
+
:refresh,
|
26
|
+
:priority,
|
27
|
+
:type,
|
28
|
+
:uri
|
29
|
+
)
|
30
|
+
|
31
|
+
SearchResult = Struct.new(
|
32
|
+
:repository,
|
33
|
+
:package,
|
34
|
+
:status,
|
35
|
+
:type,
|
36
|
+
:version,
|
37
|
+
:architecture
|
38
|
+
)
|
39
|
+
|
40
|
+
PackageDetail = Struct.new(
|
41
|
+
:repository,
|
42
|
+
:package,
|
43
|
+
:version,
|
44
|
+
:architecture,
|
45
|
+
:vendor,
|
46
|
+
:support_level,
|
47
|
+
:install_size,
|
48
|
+
:installed,
|
49
|
+
:status,
|
50
|
+
:source_package,
|
51
|
+
:summary,
|
52
|
+
:description
|
53
|
+
)
|
54
|
+
|
55
|
+
PackageUpdate = Struct.new(
|
56
|
+
:repository,
|
57
|
+
:package,
|
58
|
+
:current_version,
|
59
|
+
:available_version,
|
60
|
+
:architecture
|
61
|
+
)
|
62
|
+
|
63
|
+
PatchUpdate = Struct.new(
|
64
|
+
:repository,
|
65
|
+
:patch,
|
66
|
+
:category,
|
67
|
+
:severity,
|
68
|
+
:interactive,
|
69
|
+
:status,
|
70
|
+
:summary
|
71
|
+
)
|
72
|
+
|
73
|
+
PatchCount = Struct.new(
|
74
|
+
:category,
|
75
|
+
:updatestack,
|
76
|
+
:patches
|
77
|
+
)
|
78
|
+
|
79
|
+
Lock = Struct.new(
|
80
|
+
:number,
|
81
|
+
:name,
|
82
|
+
:matches,
|
83
|
+
:type,
|
84
|
+
:repository
|
85
|
+
)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|