kanrisuru 0.12.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -1
- data/README.md +5 -5
- data/lib/kanrisuru/command.rb +10 -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 -121
- 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 -312
- 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 -97
- 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 +86 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
- data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
- data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
- data/lib/kanrisuru/core/ip/commands.rb +26 -0
- data/lib/kanrisuru/core/ip/constants.rb +25 -0
- data/lib/kanrisuru/core/ip/parser.rb +11 -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/parsers/version.rb +15 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +15 -1002
- 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 -125
- 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 -104
- 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 -998
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
- data/spec/functional/core/ip/ip_address_spec.rb +95 -0
- data/spec/functional/core/ip/ip_link_spec.rb +814 -0
- data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
- data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
- data/spec/functional/core/ip/ip_route_spec.rb +174 -0
- data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
- data/spec/functional/core/ip/ip_spec.rb +27 -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/test_hosts.rb +3 -3
- 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 +2 -11
- 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/util_spec.rb +16 -0
- metadata +425 -29
- data/spec/integration/core/apt_spec.rb +0 -119
- data/spec/integration/core/archive_spec.rb +0 -223
- data/spec/integration/core/disk_spec.rb +0 -93
- data/spec/integration/core/dmi_spec.rb +0 -36
- data/spec/integration/core/file_spec.rb +0 -359
- data/spec/integration/core/find_spec.rb +0 -52
- data/spec/integration/core/group_spec.rb +0 -64
- data/spec/integration/core/ip_spec.rb +0 -70
- data/spec/integration/core/path_spec.rb +0 -92
- data/spec/integration/core/socket_spec.rb +0 -29
- data/spec/integration/core/stat_spec.rb +0 -97
- data/spec/integration/core/stream_spec.rb +0 -114
- data/spec/integration/core/system_spec.rb +0 -142
- data/spec/integration/core/transfer_spec.rb +0 -103
- data/spec/integration/core/user_spec.rb +0 -74
- data/spec/integration/core/yum_spec.rb +0 -117
- data/spec/integration/core/zypper_spec.rb +0 -198
- data/spec/integration/remote/cpu_spec.rb +0 -40
- data/spec/integration/remote/env_spec.rb +0 -35
- data/spec/integration/remote/fstab_spec.rb +0 -91
- data/spec/integration/remote/host_spec.rb +0 -67
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -62
- data/spec/integration/remote/remote_file_spec.rb +0 -174
- data/spec/zz_reboot_spec.rb +0 -46
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kanrisuru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Mammina
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel_tests
|
@@ -164,23 +164,255 @@ files:
|
|
164
164
|
- lib/kanrisuru/command.rb
|
165
165
|
- lib/kanrisuru/core.rb
|
166
166
|
- lib/kanrisuru/core/apt.rb
|
167
|
+
- lib/kanrisuru/core/apt/commands.rb
|
168
|
+
- lib/kanrisuru/core/apt/commands/autoclean.rb
|
169
|
+
- lib/kanrisuru/core/apt/commands/autoremove.rb
|
170
|
+
- lib/kanrisuru/core/apt/commands/clean.rb
|
171
|
+
- lib/kanrisuru/core/apt/commands/full_upgrade.rb
|
172
|
+
- lib/kanrisuru/core/apt/commands/install.rb
|
173
|
+
- lib/kanrisuru/core/apt/commands/list.rb
|
174
|
+
- lib/kanrisuru/core/apt/commands/purge.rb
|
175
|
+
- lib/kanrisuru/core/apt/commands/remove.rb
|
176
|
+
- lib/kanrisuru/core/apt/commands/search.rb
|
177
|
+
- lib/kanrisuru/core/apt/commands/show.rb
|
178
|
+
- lib/kanrisuru/core/apt/commands/update.rb
|
179
|
+
- lib/kanrisuru/core/apt/commands/upgrade.rb
|
180
|
+
- lib/kanrisuru/core/apt/parser.rb
|
181
|
+
- lib/kanrisuru/core/apt/parsers/base.rb
|
182
|
+
- lib/kanrisuru/core/apt/parsers/list.rb
|
183
|
+
- lib/kanrisuru/core/apt/parsers/search.rb
|
184
|
+
- lib/kanrisuru/core/apt/parsers/show.rb
|
185
|
+
- lib/kanrisuru/core/apt/types.rb
|
167
186
|
- lib/kanrisuru/core/archive.rb
|
187
|
+
- lib/kanrisuru/core/archive/commands.rb
|
188
|
+
- lib/kanrisuru/core/archive/commands/tar.rb
|
189
|
+
- lib/kanrisuru/core/archive/types.rb
|
168
190
|
- lib/kanrisuru/core/disk.rb
|
191
|
+
- lib/kanrisuru/core/disk/commands.rb
|
192
|
+
- lib/kanrisuru/core/disk/commands/blkid.rb
|
193
|
+
- lib/kanrisuru/core/disk/commands/df.rb
|
194
|
+
- lib/kanrisuru/core/disk/commands/du.rb
|
195
|
+
- lib/kanrisuru/core/disk/commands/lsblk.rb
|
196
|
+
- lib/kanrisuru/core/disk/parser.rb
|
197
|
+
- lib/kanrisuru/core/disk/parsers/blkid.rb
|
198
|
+
- lib/kanrisuru/core/disk/parsers/df.rb
|
199
|
+
- lib/kanrisuru/core/disk/parsers/du.rb
|
200
|
+
- lib/kanrisuru/core/disk/parsers/lsblk.rb
|
201
|
+
- lib/kanrisuru/core/disk/types.rb
|
169
202
|
- lib/kanrisuru/core/dmi.rb
|
203
|
+
- lib/kanrisuru/core/dmi/commands.rb
|
204
|
+
- lib/kanrisuru/core/dmi/commands/dmi.rb
|
205
|
+
- lib/kanrisuru/core/dmi/parser.rb
|
206
|
+
- lib/kanrisuru/core/dmi/parsers/dmi.rb
|
207
|
+
- lib/kanrisuru/core/dmi/types.rb
|
170
208
|
- lib/kanrisuru/core/file.rb
|
209
|
+
- lib/kanrisuru/core/file/commands.rb
|
210
|
+
- lib/kanrisuru/core/file/commands/chmod.rb
|
211
|
+
- lib/kanrisuru/core/file/commands/chown.rb
|
212
|
+
- lib/kanrisuru/core/file/commands/copy.rb
|
213
|
+
- lib/kanrisuru/core/file/commands/link.rb
|
214
|
+
- lib/kanrisuru/core/file/commands/mkdir.rb
|
215
|
+
- lib/kanrisuru/core/file/commands/move.rb
|
216
|
+
- lib/kanrisuru/core/file/commands/rm.rb
|
217
|
+
- lib/kanrisuru/core/file/commands/symlink.rb
|
218
|
+
- lib/kanrisuru/core/file/commands/touch.rb
|
219
|
+
- lib/kanrisuru/core/file/commands/unlink.rb
|
220
|
+
- lib/kanrisuru/core/file/commands/wc.rb
|
221
|
+
- lib/kanrisuru/core/file/parser.rb
|
222
|
+
- lib/kanrisuru/core/file/parsers/wc.rb
|
223
|
+
- lib/kanrisuru/core/file/types.rb
|
171
224
|
- lib/kanrisuru/core/find.rb
|
225
|
+
- lib/kanrisuru/core/find/commands.rb
|
226
|
+
- lib/kanrisuru/core/find/commands/find.rb
|
227
|
+
- lib/kanrisuru/core/find/constants.rb
|
228
|
+
- lib/kanrisuru/core/find/parser.rb
|
229
|
+
- lib/kanrisuru/core/find/parsers/find.rb
|
230
|
+
- lib/kanrisuru/core/find/types.rb
|
172
231
|
- lib/kanrisuru/core/group.rb
|
232
|
+
- lib/kanrisuru/core/group/commands.rb
|
233
|
+
- lib/kanrisuru/core/group/commands/create_group.rb
|
234
|
+
- lib/kanrisuru/core/group/commands/delete_group.rb
|
235
|
+
- lib/kanrisuru/core/group/commands/get_gid.rb
|
236
|
+
- lib/kanrisuru/core/group/commands/get_group.rb
|
237
|
+
- lib/kanrisuru/core/group/commands/is_group.rb
|
238
|
+
- lib/kanrisuru/core/group/commands/update_group.rb
|
239
|
+
- lib/kanrisuru/core/group/parser.rb
|
240
|
+
- lib/kanrisuru/core/group/parsers/gid.rb
|
241
|
+
- lib/kanrisuru/core/group/parsers/group.rb
|
242
|
+
- lib/kanrisuru/core/group/types.rb
|
173
243
|
- lib/kanrisuru/core/ip.rb
|
244
|
+
- lib/kanrisuru/core/ip/commands.rb
|
245
|
+
- lib/kanrisuru/core/ip/commands/address.rb
|
246
|
+
- lib/kanrisuru/core/ip/commands/address_label.rb
|
247
|
+
- lib/kanrisuru/core/ip/commands/link.rb
|
248
|
+
- lib/kanrisuru/core/ip/commands/link_set_opts.rb
|
249
|
+
- lib/kanrisuru/core/ip/commands/link_type_opts.rb
|
250
|
+
- lib/kanrisuru/core/ip/commands/maddress.rb
|
251
|
+
- lib/kanrisuru/core/ip/commands/neighbour.rb
|
252
|
+
- lib/kanrisuru/core/ip/commands/route.rb
|
253
|
+
- lib/kanrisuru/core/ip/commands/rule.rb
|
254
|
+
- lib/kanrisuru/core/ip/constants.rb
|
255
|
+
- lib/kanrisuru/core/ip/parser.rb
|
256
|
+
- lib/kanrisuru/core/ip/parsers/address.rb
|
257
|
+
- lib/kanrisuru/core/ip/parsers/address_label.rb
|
258
|
+
- lib/kanrisuru/core/ip/parsers/base.rb
|
259
|
+
- lib/kanrisuru/core/ip/parsers/link.rb
|
260
|
+
- lib/kanrisuru/core/ip/parsers/maddress.rb
|
261
|
+
- lib/kanrisuru/core/ip/parsers/neighbour.rb
|
262
|
+
- lib/kanrisuru/core/ip/parsers/route.rb
|
263
|
+
- lib/kanrisuru/core/ip/parsers/rule.rb
|
264
|
+
- lib/kanrisuru/core/ip/parsers/version.rb
|
265
|
+
- lib/kanrisuru/core/ip/types.rb
|
174
266
|
- lib/kanrisuru/core/mount.rb
|
267
|
+
- lib/kanrisuru/core/mount/commands.rb
|
268
|
+
- lib/kanrisuru/core/mount/commands/mount.rb
|
269
|
+
- lib/kanrisuru/core/mount/commands/umount.rb
|
175
270
|
- lib/kanrisuru/core/path.rb
|
271
|
+
- lib/kanrisuru/core/path/commands.rb
|
272
|
+
- lib/kanrisuru/core/path/commands/ls.rb
|
273
|
+
- lib/kanrisuru/core/path/commands/pwd.rb
|
274
|
+
- lib/kanrisuru/core/path/commands/readlink.rb
|
275
|
+
- lib/kanrisuru/core/path/commands/realpath.rb
|
276
|
+
- lib/kanrisuru/core/path/commands/which.rb
|
277
|
+
- lib/kanrisuru/core/path/commands/whoami.rb
|
278
|
+
- lib/kanrisuru/core/path/parser.rb
|
279
|
+
- lib/kanrisuru/core/path/parsers/ls.rb
|
280
|
+
- lib/kanrisuru/core/path/parsers/which.rb
|
281
|
+
- lib/kanrisuru/core/path/types.rb
|
176
282
|
- lib/kanrisuru/core/socket.rb
|
283
|
+
- lib/kanrisuru/core/socket/commands.rb
|
284
|
+
- lib/kanrisuru/core/socket/commands/ss.rb
|
285
|
+
- lib/kanrisuru/core/socket/constants.rb
|
286
|
+
- lib/kanrisuru/core/socket/parser.rb
|
287
|
+
- lib/kanrisuru/core/socket/parsers/ss.rb
|
288
|
+
- lib/kanrisuru/core/socket/types.rb
|
177
289
|
- lib/kanrisuru/core/stat.rb
|
290
|
+
- lib/kanrisuru/core/stat/commands.rb
|
291
|
+
- lib/kanrisuru/core/stat/commands/stat.rb
|
292
|
+
- lib/kanrisuru/core/stat/parser.rb
|
293
|
+
- lib/kanrisuru/core/stat/parsers/stat.rb
|
294
|
+
- lib/kanrisuru/core/stat/types.rb
|
178
295
|
- lib/kanrisuru/core/stream.rb
|
296
|
+
- lib/kanrisuru/core/stream/commands.rb
|
297
|
+
- lib/kanrisuru/core/stream/commands/cat.rb
|
298
|
+
- lib/kanrisuru/core/stream/commands/echo.rb
|
299
|
+
- lib/kanrisuru/core/stream/commands/head.rb
|
300
|
+
- lib/kanrisuru/core/stream/commands/read_file_chunk.rb
|
301
|
+
- lib/kanrisuru/core/stream/commands/sed.rb
|
302
|
+
- lib/kanrisuru/core/stream/commands/tail.rb
|
303
|
+
- lib/kanrisuru/core/stream/parser.rb
|
304
|
+
- lib/kanrisuru/core/stream/parsers/echo.rb
|
305
|
+
- lib/kanrisuru/core/stream/parsers/sed.rb
|
179
306
|
- lib/kanrisuru/core/system.rb
|
307
|
+
- lib/kanrisuru/core/system/commands.rb
|
308
|
+
- lib/kanrisuru/core/system/commands/cpu_info.rb
|
309
|
+
- lib/kanrisuru/core/system/commands/free.rb
|
310
|
+
- lib/kanrisuru/core/system/commands/kernel_statistics.rb
|
311
|
+
- lib/kanrisuru/core/system/commands/kill.rb
|
312
|
+
- lib/kanrisuru/core/system/commands/last.rb
|
313
|
+
- lib/kanrisuru/core/system/commands/load_average.rb
|
314
|
+
- lib/kanrisuru/core/system/commands/load_env.rb
|
315
|
+
- lib/kanrisuru/core/system/commands/lscpu.rb
|
316
|
+
- lib/kanrisuru/core/system/commands/lsof.rb
|
317
|
+
- lib/kanrisuru/core/system/commands/poweroff.rb
|
318
|
+
- lib/kanrisuru/core/system/commands/ps.rb
|
319
|
+
- lib/kanrisuru/core/system/commands/reboot.rb
|
320
|
+
- lib/kanrisuru/core/system/commands/uptime.rb
|
321
|
+
- lib/kanrisuru/core/system/commands/w.rb
|
322
|
+
- lib/kanrisuru/core/system/parser.rb
|
323
|
+
- lib/kanrisuru/core/system/parsers/kernel_statistics.rb
|
324
|
+
- lib/kanrisuru/core/system/parsers/last.rb
|
325
|
+
- lib/kanrisuru/core/system/parsers/load_average.rb
|
326
|
+
- lib/kanrisuru/core/system/parsers/load_env.rb
|
327
|
+
- lib/kanrisuru/core/system/parsers/lscpu.rb
|
328
|
+
- lib/kanrisuru/core/system/parsers/lsof.rb
|
329
|
+
- lib/kanrisuru/core/system/parsers/ps.rb
|
330
|
+
- lib/kanrisuru/core/system/parsers/uptime.rb
|
331
|
+
- lib/kanrisuru/core/system/parsers/w.rb
|
332
|
+
- lib/kanrisuru/core/system/types.rb
|
180
333
|
- lib/kanrisuru/core/transfer.rb
|
334
|
+
- lib/kanrisuru/core/transfer/commands.rb
|
335
|
+
- lib/kanrisuru/core/transfer/commands/download.rb
|
336
|
+
- lib/kanrisuru/core/transfer/commands/upload.rb
|
337
|
+
- lib/kanrisuru/core/transfer/commands/wget.rb
|
338
|
+
- lib/kanrisuru/core/transfer/constants.rb
|
181
339
|
- lib/kanrisuru/core/user.rb
|
340
|
+
- lib/kanrisuru/core/user/commands.rb
|
341
|
+
- lib/kanrisuru/core/user/commands/create_user.rb
|
342
|
+
- lib/kanrisuru/core/user/commands/delete_user.rb
|
343
|
+
- lib/kanrisuru/core/user/commands/get_uid.rb
|
344
|
+
- lib/kanrisuru/core/user/commands/get_user.rb
|
345
|
+
- lib/kanrisuru/core/user/commands/is_user.rb
|
346
|
+
- lib/kanrisuru/core/user/commands/update_user.rb
|
347
|
+
- lib/kanrisuru/core/user/parser.rb
|
348
|
+
- lib/kanrisuru/core/user/parsers/getent.rb
|
349
|
+
- lib/kanrisuru/core/user/parsers/groups.rb
|
350
|
+
- lib/kanrisuru/core/user/types.rb
|
182
351
|
- lib/kanrisuru/core/yum.rb
|
352
|
+
- lib/kanrisuru/core/yum/commands.rb
|
353
|
+
- lib/kanrisuru/core/yum/commands/autoremove.rb
|
354
|
+
- lib/kanrisuru/core/yum/commands/clean.rb
|
355
|
+
- lib/kanrisuru/core/yum/commands/erase.rb
|
356
|
+
- lib/kanrisuru/core/yum/commands/info.rb
|
357
|
+
- lib/kanrisuru/core/yum/commands/install.rb
|
358
|
+
- lib/kanrisuru/core/yum/commands/list.rb
|
359
|
+
- lib/kanrisuru/core/yum/commands/localinstall.rb
|
360
|
+
- lib/kanrisuru/core/yum/commands/remove.rb
|
361
|
+
- lib/kanrisuru/core/yum/commands/repolist.rb
|
362
|
+
- lib/kanrisuru/core/yum/commands/search.rb
|
363
|
+
- lib/kanrisuru/core/yum/commands/update.rb
|
364
|
+
- lib/kanrisuru/core/yum/commands/upgrade.rb
|
365
|
+
- lib/kanrisuru/core/yum/parser.rb
|
366
|
+
- lib/kanrisuru/core/yum/parsers/base.rb
|
367
|
+
- lib/kanrisuru/core/yum/parsers/info.rb
|
368
|
+
- lib/kanrisuru/core/yum/parsers/list.rb
|
369
|
+
- lib/kanrisuru/core/yum/parsers/repolist.rb
|
370
|
+
- lib/kanrisuru/core/yum/parsers/search.rb
|
371
|
+
- lib/kanrisuru/core/yum/types.rb
|
183
372
|
- lib/kanrisuru/core/zypper.rb
|
373
|
+
- lib/kanrisuru/core/zypper/commands.rb
|
374
|
+
- lib/kanrisuru/core/zypper/commands/add_lock.rb
|
375
|
+
- lib/kanrisuru/core/zypper/commands/add_repo.rb
|
376
|
+
- lib/kanrisuru/core/zypper/commands/add_service.rb
|
377
|
+
- lib/kanrisuru/core/zypper/commands/clean_cache.rb
|
378
|
+
- lib/kanrisuru/core/zypper/commands/clean_locks.rb
|
379
|
+
- lib/kanrisuru/core/zypper/commands/dist_upgrade.rb
|
380
|
+
- lib/kanrisuru/core/zypper/commands/info.rb
|
381
|
+
- lib/kanrisuru/core/zypper/commands/install.rb
|
382
|
+
- lib/kanrisuru/core/zypper/commands/install_new_recommends.rb
|
383
|
+
- lib/kanrisuru/core/zypper/commands/list_locks.rb
|
384
|
+
- lib/kanrisuru/core/zypper/commands/list_patches.rb
|
385
|
+
- lib/kanrisuru/core/zypper/commands/list_repos.rb
|
386
|
+
- lib/kanrisuru/core/zypper/commands/list_services.rb
|
387
|
+
- lib/kanrisuru/core/zypper/commands/list_updates.rb
|
388
|
+
- lib/kanrisuru/core/zypper/commands/modify_repo.rb
|
389
|
+
- lib/kanrisuru/core/zypper/commands/modify_service.rb
|
390
|
+
- lib/kanrisuru/core/zypper/commands/patch.rb
|
391
|
+
- lib/kanrisuru/core/zypper/commands/patch_check.rb
|
392
|
+
- lib/kanrisuru/core/zypper/commands/purge_kernels.rb
|
393
|
+
- lib/kanrisuru/core/zypper/commands/refresh_repos.rb
|
394
|
+
- lib/kanrisuru/core/zypper/commands/refresh_services.rb
|
395
|
+
- lib/kanrisuru/core/zypper/commands/remove.rb
|
396
|
+
- lib/kanrisuru/core/zypper/commands/remove_lock.rb
|
397
|
+
- lib/kanrisuru/core/zypper/commands/remove_repo.rb
|
398
|
+
- lib/kanrisuru/core/zypper/commands/remove_service.rb
|
399
|
+
- lib/kanrisuru/core/zypper/commands/rename_repo.rb
|
400
|
+
- lib/kanrisuru/core/zypper/commands/search.rb
|
401
|
+
- lib/kanrisuru/core/zypper/commands/source_install.rb
|
402
|
+
- lib/kanrisuru/core/zypper/commands/update.rb
|
403
|
+
- lib/kanrisuru/core/zypper/commands/verify.rb
|
404
|
+
- lib/kanrisuru/core/zypper/constants.rb
|
405
|
+
- lib/kanrisuru/core/zypper/parser.rb
|
406
|
+
- lib/kanrisuru/core/zypper/parsers/base.rb
|
407
|
+
- lib/kanrisuru/core/zypper/parsers/info.rb
|
408
|
+
- lib/kanrisuru/core/zypper/parsers/list_locks.rb
|
409
|
+
- lib/kanrisuru/core/zypper/parsers/list_patches.rb
|
410
|
+
- lib/kanrisuru/core/zypper/parsers/list_repos.rb
|
411
|
+
- lib/kanrisuru/core/zypper/parsers/list_services.rb
|
412
|
+
- lib/kanrisuru/core/zypper/parsers/list_updates.rb
|
413
|
+
- lib/kanrisuru/core/zypper/parsers/patch_check.rb
|
414
|
+
- lib/kanrisuru/core/zypper/parsers/search.rb
|
415
|
+
- lib/kanrisuru/core/zypper/types.rb
|
184
416
|
- lib/kanrisuru/logger.rb
|
185
417
|
- lib/kanrisuru/mode.rb
|
186
418
|
- lib/kanrisuru/os_package.rb
|
@@ -208,6 +440,14 @@ files:
|
|
208
440
|
- spec/functional/core/apt_spec.rb
|
209
441
|
- spec/functional/core/archive_spec.rb
|
210
442
|
- spec/functional/core/find_spec.rb
|
443
|
+
- spec/functional/core/ip/ip_address_label_spec.rb
|
444
|
+
- spec/functional/core/ip/ip_address_spec.rb
|
445
|
+
- spec/functional/core/ip/ip_link_spec.rb
|
446
|
+
- spec/functional/core/ip/ip_maddress_spec.rb
|
447
|
+
- spec/functional/core/ip/ip_neighbour_spec.rb
|
448
|
+
- spec/functional/core/ip/ip_route_spec.rb
|
449
|
+
- spec/functional/core/ip/ip_rule_spec.rb
|
450
|
+
- spec/functional/core/ip/ip_spec.rb
|
211
451
|
- spec/functional/core/mount_spec.rb
|
212
452
|
- spec/functional/core/path_spec.rb
|
213
453
|
- spec/functional/core/socket_spec.rb
|
@@ -218,37 +458,194 @@ files:
|
|
218
458
|
- spec/functional/remote/cluster_spec.rb
|
219
459
|
- spec/functional/remote/cpu_spec.rb
|
220
460
|
- spec/functional/remote/env_spec.rb
|
461
|
+
- spec/functional/result_spec.rb
|
221
462
|
- spec/helper/expect_helpers.rb
|
463
|
+
- spec/helper/hosts.json
|
464
|
+
- spec/helper/simplecov.rb
|
222
465
|
- spec/helper/stub_network.rb
|
223
466
|
- spec/helper/test_hosts.rb
|
224
|
-
- spec/
|
225
|
-
- spec/integration/core/
|
226
|
-
- spec/integration/core/
|
227
|
-
- spec/integration/core/
|
228
|
-
- spec/integration/core/
|
229
|
-
- spec/integration/core/
|
230
|
-
- spec/integration/core/
|
231
|
-
- spec/integration/core/
|
232
|
-
- spec/integration/core/
|
233
|
-
- spec/integration/core/
|
234
|
-
- spec/integration/core/
|
235
|
-
- spec/integration/core/
|
236
|
-
- spec/integration/core/
|
237
|
-
- spec/integration/core/
|
238
|
-
- spec/integration/core/
|
239
|
-
- spec/integration/core/
|
240
|
-
- spec/integration/core/
|
241
|
-
- spec/integration/core/
|
467
|
+
- spec/integration/core/apt/debian_spec.rb
|
468
|
+
- spec/integration/core/apt/ubuntu_spec.rb
|
469
|
+
- spec/integration/core/archive/centos_spec.rb
|
470
|
+
- spec/integration/core/archive/debian_spec.rb
|
471
|
+
- spec/integration/core/archive/fedora_spec.rb
|
472
|
+
- spec/integration/core/archive/opensuse_spec.rb
|
473
|
+
- spec/integration/core/archive/rhel_spec.rb
|
474
|
+
- spec/integration/core/archive/sles_spec.rb
|
475
|
+
- spec/integration/core/archive/ubuntu_spec.rb
|
476
|
+
- spec/integration/core/disk/centos_spec.rb
|
477
|
+
- spec/integration/core/disk/debian_spec.rb
|
478
|
+
- spec/integration/core/disk/fedora_spec.rb
|
479
|
+
- spec/integration/core/disk/opensuse_spec.rb
|
480
|
+
- spec/integration/core/disk/rhel_spec.rb
|
481
|
+
- spec/integration/core/disk/sles_spec.rb
|
482
|
+
- spec/integration/core/disk/ubuntu_spec.rb
|
483
|
+
- spec/integration/core/dmi/centos_spec.rb
|
484
|
+
- spec/integration/core/dmi/debian_spec.rb
|
485
|
+
- spec/integration/core/dmi/fedora_spec.rb
|
486
|
+
- spec/integration/core/dmi/opensuse_spec.rb
|
487
|
+
- spec/integration/core/dmi/rhel_spec.rb
|
488
|
+
- spec/integration/core/dmi/sles_spec.rb
|
489
|
+
- spec/integration/core/dmi/ubuntu_spec.rb
|
490
|
+
- spec/integration/core/file/centos_spec.rb
|
491
|
+
- spec/integration/core/file/debian_spec.rb
|
492
|
+
- spec/integration/core/file/fedora_spec.rb
|
493
|
+
- spec/integration/core/file/opensuse_spec.rb
|
494
|
+
- spec/integration/core/file/rhel_spec.rb
|
495
|
+
- spec/integration/core/file/sles_spec.rb
|
496
|
+
- spec/integration/core/file/ubuntu_spec.rb
|
497
|
+
- spec/integration/core/find/centos_spec.rb
|
498
|
+
- spec/integration/core/find/debian_spec.rb
|
499
|
+
- spec/integration/core/find/fedora_spec.rb
|
500
|
+
- spec/integration/core/find/opensuse_spec.rb
|
501
|
+
- spec/integration/core/find/rhel_spec.rb
|
502
|
+
- spec/integration/core/find/sles_spec.rb
|
503
|
+
- spec/integration/core/find/ubuntu_spec.rb
|
504
|
+
- spec/integration/core/group/centos_spec.rb
|
505
|
+
- spec/integration/core/group/debian_spec.rb
|
506
|
+
- spec/integration/core/group/fedora_spec.rb
|
507
|
+
- spec/integration/core/group/opensuse_spec.rb
|
508
|
+
- spec/integration/core/group/rhel_spec.rb
|
509
|
+
- spec/integration/core/group/sles_spec.rb
|
510
|
+
- spec/integration/core/group/ubuntu_spec.rb
|
511
|
+
- spec/integration/core/ip/centos_spec.rb
|
512
|
+
- spec/integration/core/ip/debian_spec.rb
|
513
|
+
- spec/integration/core/ip/fedora_spec.rb
|
514
|
+
- spec/integration/core/ip/opensuse_spec.rb
|
515
|
+
- spec/integration/core/ip/rhel_spec.rb
|
516
|
+
- spec/integration/core/ip/sles_spec.rb
|
517
|
+
- spec/integration/core/ip/ubuntu_spec.rb
|
518
|
+
- spec/integration/core/path/centos_spec.rb
|
519
|
+
- spec/integration/core/path/debian_spec.rb
|
520
|
+
- spec/integration/core/path/fedora_spec.rb
|
521
|
+
- spec/integration/core/path/opensuse_spec.rb
|
522
|
+
- spec/integration/core/path/rhel_spec.rb
|
523
|
+
- spec/integration/core/path/sles_spec.rb
|
524
|
+
- spec/integration/core/path/ubuntu_spec.rb
|
525
|
+
- spec/integration/core/socket/centos_spec.rb
|
526
|
+
- spec/integration/core/socket/debian_spec.rb
|
527
|
+
- spec/integration/core/socket/fedora_spec.rb
|
528
|
+
- spec/integration/core/socket/opensuse_spec.rb
|
529
|
+
- spec/integration/core/socket/rhel_spec.rb
|
530
|
+
- spec/integration/core/socket/sles_spec.rb
|
531
|
+
- spec/integration/core/socket/ubuntu_spec.rb
|
532
|
+
- spec/integration/core/stat/centos_spec.rb
|
533
|
+
- spec/integration/core/stat/debian_spec.rb
|
534
|
+
- spec/integration/core/stat/fedora_spec.rb
|
535
|
+
- spec/integration/core/stat/opensuse_spec.rb
|
536
|
+
- spec/integration/core/stat/rhel_spec.rb
|
537
|
+
- spec/integration/core/stat/sles_spec.rb
|
538
|
+
- spec/integration/core/stat/ubuntu_spec.rb
|
539
|
+
- spec/integration/core/stream/centos_spec.rb
|
540
|
+
- spec/integration/core/stream/debian_spec.rb
|
541
|
+
- spec/integration/core/stream/fedora_spec.rb
|
542
|
+
- spec/integration/core/stream/opensuse_spec.rb
|
543
|
+
- spec/integration/core/stream/rhel_spec.rb
|
544
|
+
- spec/integration/core/stream/sles_spec.rb
|
545
|
+
- spec/integration/core/stream/ubuntu_spec.rb
|
546
|
+
- spec/integration/core/system/centos_spec.rb
|
547
|
+
- spec/integration/core/system/debian_spec.rb
|
548
|
+
- spec/integration/core/system/fedora_spec.rb
|
549
|
+
- spec/integration/core/system/opensuse_spec.rb
|
550
|
+
- spec/integration/core/system/rhel_spec.rb
|
551
|
+
- spec/integration/core/system/sles_spec.rb
|
552
|
+
- spec/integration/core/system/ubuntu_spec.rb
|
553
|
+
- spec/integration/core/transfer/centos_spec.rb
|
554
|
+
- spec/integration/core/transfer/debian_spec.rb
|
555
|
+
- spec/integration/core/transfer/fedora_spec.rb
|
556
|
+
- spec/integration/core/transfer/opensuse_spec.rb
|
557
|
+
- spec/integration/core/transfer/rhel_spec.rb
|
558
|
+
- spec/integration/core/transfer/sles_spec.rb
|
559
|
+
- spec/integration/core/transfer/ubuntu_spec.rb
|
560
|
+
- spec/integration/core/user/centos_spec.rb
|
561
|
+
- spec/integration/core/user/debian_spec.rb
|
562
|
+
- spec/integration/core/user/fedora_spec.rb
|
563
|
+
- spec/integration/core/user/opensuse_spec.rb
|
564
|
+
- spec/integration/core/user/rhel_spec.rb
|
565
|
+
- spec/integration/core/user/sles_spec.rb
|
566
|
+
- spec/integration/core/user/ubuntu_spec.rb
|
567
|
+
- spec/integration/core/yum/centos_spec.rb
|
568
|
+
- spec/integration/core/yum/fedora_spec.rb
|
569
|
+
- spec/integration/core/yum/rhel_spec.rb
|
570
|
+
- spec/integration/core/zypper/opensuse_spec.rb
|
571
|
+
- spec/integration/core/zypper/sles_spec.rb
|
242
572
|
- spec/integration/os_package_spec.rb
|
243
|
-
- spec/integration/remote/
|
244
|
-
- spec/integration/remote/
|
245
|
-
- spec/integration/remote/
|
246
|
-
- spec/integration/remote/
|
247
|
-
- spec/integration/remote/
|
248
|
-
- spec/integration/remote/
|
249
|
-
- spec/integration/remote/
|
250
|
-
- spec/integration/remote/
|
573
|
+
- spec/integration/remote/cluster/ubuntu_spec.rb
|
574
|
+
- spec/integration/remote/cpu/centos_spec.rb
|
575
|
+
- spec/integration/remote/cpu/debian_spec.rb
|
576
|
+
- spec/integration/remote/cpu/fedora_spec.rb
|
577
|
+
- spec/integration/remote/cpu/opensuse_spec.rb
|
578
|
+
- spec/integration/remote/cpu/rhel_spec.rb
|
579
|
+
- spec/integration/remote/cpu/sles_spec.rb
|
580
|
+
- spec/integration/remote/cpu/ubuntu_spec.rb
|
581
|
+
- spec/integration/remote/env/centos_spec.rb
|
582
|
+
- spec/integration/remote/env/debian_spec.rb
|
583
|
+
- spec/integration/remote/env/fedora_spec.rb
|
584
|
+
- spec/integration/remote/env/opensuse_spec.rb
|
585
|
+
- spec/integration/remote/env/rhel_spec.rb
|
586
|
+
- spec/integration/remote/env/sles_spec.rb
|
587
|
+
- spec/integration/remote/env/ubuntu_spec.rb
|
588
|
+
- spec/integration/remote/fstab/centos_spec.rb
|
589
|
+
- spec/integration/remote/fstab/debian_spec.rb
|
590
|
+
- spec/integration/remote/fstab/fedora_spec.rb
|
591
|
+
- spec/integration/remote/fstab/opensuse_spec.rb
|
592
|
+
- spec/integration/remote/fstab/rhel_spec.rb
|
593
|
+
- spec/integration/remote/fstab/sles_spec.rb
|
594
|
+
- spec/integration/remote/fstab/ubuntu_spec.rb
|
595
|
+
- spec/integration/remote/host/centos_spec.rb
|
596
|
+
- spec/integration/remote/host/debian_spec.rb
|
597
|
+
- spec/integration/remote/host/fedora_spec.rb
|
598
|
+
- spec/integration/remote/host/opensuse_spec.rb
|
599
|
+
- spec/integration/remote/host/rhel_spec.rb
|
600
|
+
- spec/integration/remote/host/sles_spec.rb
|
601
|
+
- spec/integration/remote/host/ubuntu_spec.rb
|
602
|
+
- spec/integration/remote/memory/centos_spec.rb
|
603
|
+
- spec/integration/remote/memory/debian_spec.rb
|
604
|
+
- spec/integration/remote/memory/fedora_spec.rb
|
605
|
+
- spec/integration/remote/memory/opensuse_spec.rb
|
606
|
+
- spec/integration/remote/memory/rhel_spec.rb
|
607
|
+
- spec/integration/remote/memory/sles_spec.rb
|
608
|
+
- spec/integration/remote/memory/ubuntu_spec.rb
|
609
|
+
- spec/integration/remote/os/centos_spec.rb
|
610
|
+
- spec/integration/remote/os/debian_spec.rb
|
611
|
+
- spec/integration/remote/os/fedora_spec.rb
|
612
|
+
- spec/integration/remote/os/opensuse_spec.rb
|
613
|
+
- spec/integration/remote/os/rhel_spec.rb
|
614
|
+
- spec/integration/remote/os/sles_spec.rb
|
615
|
+
- spec/integration/remote/os/ubuntu_spec.rb
|
616
|
+
- spec/integration/remote/remote_file/centos_spec.rb
|
617
|
+
- spec/integration/remote/remote_file/debian_spec.rb
|
618
|
+
- spec/integration/remote/remote_file/fedora_spec.rb
|
619
|
+
- spec/integration/remote/remote_file/opensuse_spec.rb
|
620
|
+
- spec/integration/remote/remote_file/rhel_spec.rb
|
621
|
+
- spec/integration/remote/remote_file/sles_spec.rb
|
622
|
+
- spec/integration/remote/remote_file/ubuntu_spec.rb
|
251
623
|
- spec/spec_helper.rb
|
624
|
+
- spec/support/shared_examples/integration/core/apt.rb
|
625
|
+
- spec/support/shared_examples/integration/core/archive.rb
|
626
|
+
- spec/support/shared_examples/integration/core/disk.rb
|
627
|
+
- spec/support/shared_examples/integration/core/dmi.rb
|
628
|
+
- spec/support/shared_examples/integration/core/file.rb
|
629
|
+
- spec/support/shared_examples/integration/core/find.rb
|
630
|
+
- spec/support/shared_examples/integration/core/group.rb
|
631
|
+
- spec/support/shared_examples/integration/core/ip.rb
|
632
|
+
- spec/support/shared_examples/integration/core/path.rb
|
633
|
+
- spec/support/shared_examples/integration/core/socket.rb
|
634
|
+
- spec/support/shared_examples/integration/core/stat.rb
|
635
|
+
- spec/support/shared_examples/integration/core/stream.rb
|
636
|
+
- spec/support/shared_examples/integration/core/system.rb
|
637
|
+
- spec/support/shared_examples/integration/core/transfer.rb
|
638
|
+
- spec/support/shared_examples/integration/core/user.rb
|
639
|
+
- spec/support/shared_examples/integration/core/yum.rb
|
640
|
+
- spec/support/shared_examples/integration/core/zypper.rb
|
641
|
+
- spec/support/shared_examples/integration/remote/cluster.rb
|
642
|
+
- spec/support/shared_examples/integration/remote/cpu.rb
|
643
|
+
- spec/support/shared_examples/integration/remote/env_spec.rb
|
644
|
+
- spec/support/shared_examples/integration/remote/fstab.rb
|
645
|
+
- spec/support/shared_examples/integration/remote/host.rb
|
646
|
+
- spec/support/shared_examples/integration/remote/memory.rb
|
647
|
+
- spec/support/shared_examples/integration/remote/os.rb
|
648
|
+
- spec/support/shared_examples/integration/remote/remote_file.rb
|
252
649
|
- spec/unit/command_spec.rb
|
253
650
|
- spec/unit/core/apt_spec.rb
|
254
651
|
- spec/unit/core/archive_spec.rb
|
@@ -274,7 +671,6 @@ files:
|
|
274
671
|
- spec/unit/remote/fstab_spec.rb
|
275
672
|
- spec/unit/template_spec.rb
|
276
673
|
- spec/unit/util_spec.rb
|
277
|
-
- spec/zz_reboot_spec.rb
|
278
674
|
homepage: https://github.com/avamia/kanrisuru
|
279
675
|
licenses:
|
280
676
|
- MIT
|
@@ -1,119 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
TestHosts.each_os(only: %w[debian ubuntu]) do |os_name, host_json|
|
6
|
-
RSpec.describe Kanrisuru::Core::Apt do
|
7
|
-
context "with #{os_name}" do
|
8
|
-
let(:host) do
|
9
|
-
Kanrisuru::Remote::Host.new(
|
10
|
-
host: host_json['hostname'],
|
11
|
-
username: host_json['username'],
|
12
|
-
keys: [host_json['ssh_key']]
|
13
|
-
)
|
14
|
-
end
|
15
|
-
|
16
|
-
after do
|
17
|
-
host.disconnect
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'installs package' do
|
21
|
-
host.su('root')
|
22
|
-
result = host.apt('install', packages: %w[ffmpeg curl])
|
23
|
-
expect(result).to be_success
|
24
|
-
|
25
|
-
result = host.which('ffmpeg')
|
26
|
-
expect(result).to be_success
|
27
|
-
paths = result.map(&:path)
|
28
|
-
expect(paths).to include(match('ffmpeg'))
|
29
|
-
|
30
|
-
result = host.which('curl')
|
31
|
-
expect(result).to be_success
|
32
|
-
paths = result.map(&:path)
|
33
|
-
expect(paths).to include(match('curl'))
|
34
|
-
end
|
35
|
-
|
36
|
-
it 'removes installed packages' do
|
37
|
-
host.su('root')
|
38
|
-
result = host.apt('remove', packages: ['ffmpeg'])
|
39
|
-
expect(result).to be_success
|
40
|
-
end
|
41
|
-
|
42
|
-
it 'purges installed packages' do
|
43
|
-
host.su('root')
|
44
|
-
result = host.apt('purge', packages: ['ffmpeg'])
|
45
|
-
expect(result).to be_success
|
46
|
-
end
|
47
|
-
|
48
|
-
it 'removes unused packages' do
|
49
|
-
host.su('root')
|
50
|
-
result = host.apt('autoremove')
|
51
|
-
expect(result).to be_success
|
52
|
-
end
|
53
|
-
|
54
|
-
it 'cleans packages' do
|
55
|
-
host.su('root')
|
56
|
-
result = host.apt('clean')
|
57
|
-
expect(result).to be_success
|
58
|
-
end
|
59
|
-
|
60
|
-
it 'autocleans packages' do
|
61
|
-
host.su('root')
|
62
|
-
result = host.apt('autoclean')
|
63
|
-
expect(result).to be_success
|
64
|
-
end
|
65
|
-
|
66
|
-
it 'updates packages' do
|
67
|
-
host.su('root')
|
68
|
-
result = host.apt('update')
|
69
|
-
expect(result).to be_success
|
70
|
-
end
|
71
|
-
|
72
|
-
it 'upgrades packages' do
|
73
|
-
host.su('root')
|
74
|
-
result = host.apt('upgrade')
|
75
|
-
expect(result).to be_success
|
76
|
-
end
|
77
|
-
|
78
|
-
it 'fully upgrades packages' do
|
79
|
-
host.su('root')
|
80
|
-
result = host.apt('full-upgrade')
|
81
|
-
expect(result).to be_success
|
82
|
-
end
|
83
|
-
|
84
|
-
it 'shows details of listed packages' do
|
85
|
-
result = host.apt('show', packages: %w[wget curl git sudo])
|
86
|
-
expect(result).to be_success
|
87
|
-
end
|
88
|
-
|
89
|
-
it 'lists all packages' do
|
90
|
-
host.su('root')
|
91
|
-
result = host.apt('list')
|
92
|
-
expect(result).to be_success
|
93
|
-
end
|
94
|
-
|
95
|
-
it 'lists installed packages' do
|
96
|
-
host.su('root')
|
97
|
-
result = host.apt('list', installed: true)
|
98
|
-
expect(result).to be_success
|
99
|
-
end
|
100
|
-
|
101
|
-
it 'lists upgradable packages' do
|
102
|
-
host.su('root')
|
103
|
-
result = host.apt('list', upgradable: true)
|
104
|
-
expect(result).to be_success
|
105
|
-
end
|
106
|
-
|
107
|
-
it 'lists all versions for packages' do
|
108
|
-
host.su('root')
|
109
|
-
result = host.apt('list', all_versions: true)
|
110
|
-
expect(result).to be_success
|
111
|
-
end
|
112
|
-
|
113
|
-
it 'searches packages' do
|
114
|
-
result = host.apt('search', query: 'wget')
|
115
|
-
expect(result).to be_success
|
116
|
-
end
|
117
|
-
end
|
118
|
-
end
|
119
|
-
end
|