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
@@ -1,223 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
TestHosts.each_os do |os_name, host_json, spec_dir|
|
6
|
-
RSpec.describe Kanrisuru::Core::Archive do
|
7
|
-
context "with #{os_name}" do
|
8
|
-
before(:all) do
|
9
|
-
host = Kanrisuru::Remote::Host.new(
|
10
|
-
host: host_json['hostname'],
|
11
|
-
username: host_json['username'],
|
12
|
-
keys: [host_json['ssh_key']]
|
13
|
-
)
|
14
|
-
|
15
|
-
host.mkdir(spec_dir, silent: true)
|
16
|
-
host.disconnect
|
17
|
-
end
|
18
|
-
|
19
|
-
let(:host) do
|
20
|
-
Kanrisuru::Remote::Host.new(
|
21
|
-
host: host_json['hostname'],
|
22
|
-
username: host_json['username'],
|
23
|
-
keys: [host_json['ssh_key']]
|
24
|
-
)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
host.disconnect
|
29
|
-
end
|
30
|
-
|
31
|
-
after(:all) do
|
32
|
-
host = Kanrisuru::Remote::Host.new(
|
33
|
-
host: host_json['hostname'],
|
34
|
-
username: host_json['username'],
|
35
|
-
keys: [host_json['ssh_key']]
|
36
|
-
)
|
37
|
-
|
38
|
-
host.rmdir(spec_dir)
|
39
|
-
host.rmdir("#{spec_dir}/extract-tar-files") if host.dir?("#{spec_dir}/extract-tar-files")
|
40
|
-
host.disconnect
|
41
|
-
end
|
42
|
-
|
43
|
-
it 'tars an archive' do
|
44
|
-
archive = 'archive.tar'
|
45
|
-
archive2 = 'archive2.tar'
|
46
|
-
directory = spec_dir
|
47
|
-
|
48
|
-
host.touch("#{spec_dir}/test-file.txt")
|
49
|
-
host.touch("#{spec_dir}/test1.txt")
|
50
|
-
host.touch("#{spec_dir}/test2.txt")
|
51
|
-
host.touch("#{spec_dir}/test3.txt")
|
52
|
-
|
53
|
-
host.touch("#{spec_dir}/test1.config")
|
54
|
-
host.touch("#{spec_dir}/test2.config")
|
55
|
-
host.touch("#{spec_dir}/test3.config")
|
56
|
-
|
57
|
-
host.cd(spec_dir)
|
58
|
-
result = host.tar('create', archive, paths: ['*.txt'], exclude: 'test-file.txt', directory: directory)
|
59
|
-
|
60
|
-
expect(result.success?).to eq(true)
|
61
|
-
|
62
|
-
file = host.file("#{spec_dir}/#{archive}")
|
63
|
-
|
64
|
-
expect(file.path).to eq("#{spec_dir}/archive.tar")
|
65
|
-
expect(file.user).to eq(host_json['username'])
|
66
|
-
|
67
|
-
case os_name
|
68
|
-
when 'opensuse', 'sles'
|
69
|
-
expect(file.group).to eq('users')
|
70
|
-
else
|
71
|
-
expect(file.group).to eq(host_json['username'])
|
72
|
-
end
|
73
|
-
|
74
|
-
result = host.tar('list', archive, directory: directory)
|
75
|
-
expect(result.success?).to eq(true)
|
76
|
-
paths = result.map(&:path)
|
77
|
-
expect(paths.include?('test-file.txt')).to eq(false)
|
78
|
-
|
79
|
-
result = host.tar('append', archive, paths: 'test-file.txt', directory: directory)
|
80
|
-
expect(result.success?).to eq(true)
|
81
|
-
|
82
|
-
result = host.tar('list', archive, directory: directory)
|
83
|
-
paths = result.map(&:path)
|
84
|
-
|
85
|
-
expect(paths.include?('test-file.txt')).to eq(true)
|
86
|
-
|
87
|
-
result = host.tar('create', archive2, paths: '*.config', directory: directory)
|
88
|
-
expect(result.success?).to eq(true)
|
89
|
-
|
90
|
-
file = host.file("#{spec_dir}/#{archive2}")
|
91
|
-
|
92
|
-
expect(file.path).to eq("#{spec_dir}/archive2.tar")
|
93
|
-
expect(file.user).to eq(host_json['username'])
|
94
|
-
|
95
|
-
case os_name
|
96
|
-
when 'opensuse', 'sles'
|
97
|
-
expect(file.group).to eq('users')
|
98
|
-
else
|
99
|
-
expect(file.group).to eq(host_json['username'])
|
100
|
-
end
|
101
|
-
|
102
|
-
result = host.tar('concat', archive, paths: archive2, directory: directory)
|
103
|
-
expect(result.success?).to eq(true)
|
104
|
-
|
105
|
-
result = host.tar('list', archive, directory: directory)
|
106
|
-
expect(result.success?).to eq(true)
|
107
|
-
paths = result.map(&:path)
|
108
|
-
|
109
|
-
expect(paths.include?('test1.config')).to eq(true)
|
110
|
-
expect(paths.include?('test2.config')).to eq(true)
|
111
|
-
expect(paths.include?('test3.config')).to eq(true)
|
112
|
-
|
113
|
-
result = host.tar('diff', archive, directory: directory)
|
114
|
-
expect(result.success?).to eq(true)
|
115
|
-
|
116
|
-
result = host.tar('delete', archive, directory: directory, paths: 'test2.config')
|
117
|
-
expect(result.success?).to eq(true)
|
118
|
-
|
119
|
-
result = host.tar('list', archive, directory: directory)
|
120
|
-
expect(result.success?).to eq(true)
|
121
|
-
paths = result.map(&:path)
|
122
|
-
expect(paths.include?('test2.config')).to eq(false)
|
123
|
-
|
124
|
-
host.mkdir("#{spec_dir}/extract-tar-files", silent: true)
|
125
|
-
host.tar('extract', 'archive.tar', directory: "#{spec_dir}/extract-tar-files")
|
126
|
-
|
127
|
-
result = host.ls(path: "#{spec_dir}/extract-tar-files")
|
128
|
-
paths = result.map(&:path)
|
129
|
-
|
130
|
-
expect(paths.include?('test1.config')).to eq(true)
|
131
|
-
expect(paths.include?('test3.config')).to eq(true)
|
132
|
-
expect(paths.include?('test-file.txt')).to eq(true)
|
133
|
-
expect(paths.include?('test1.txt')).to eq(true)
|
134
|
-
expect(paths.include?('test2.txt')).to eq(true)
|
135
|
-
expect(paths.include?('test3.txt')).to eq(true)
|
136
|
-
end
|
137
|
-
|
138
|
-
it 'compresses archive while tar' do
|
139
|
-
archive = 'archive.tar'
|
140
|
-
directory = spec_dir
|
141
|
-
|
142
|
-
host.touch("#{spec_dir}/test1.log")
|
143
|
-
host.touch("#{spec_dir}/test2.log")
|
144
|
-
host.touch("#{spec_dir}/test3.log")
|
145
|
-
|
146
|
-
host.cd(spec_dir)
|
147
|
-
result = host.tar('create', "#{archive}.gz", compress: 'gzip', paths: ['*.log'], directory: directory)
|
148
|
-
expect(result.success?).to eq(true)
|
149
|
-
|
150
|
-
file = host.file("#{spec_dir}/#{archive}.gz")
|
151
|
-
expect(file.path).to eq("#{spec_dir}/archive.tar.gz")
|
152
|
-
expect(file.uid).to eq(1000)
|
153
|
-
|
154
|
-
case os_name
|
155
|
-
when 'opensuse', 'sles'
|
156
|
-
expect(file.gid).to eq(100)
|
157
|
-
else
|
158
|
-
expect(file.gid).to eq(1000)
|
159
|
-
end
|
160
|
-
|
161
|
-
case os_name
|
162
|
-
when 'debian', 'ubuntu'
|
163
|
-
result = host.tar('create', "#{archive}.bz", compress: 'bzip2', paths: ['*.log'], directory: directory)
|
164
|
-
expect(result.success?).to eq(true)
|
165
|
-
|
166
|
-
file = host.file("#{spec_dir}/#{archive}.bz")
|
167
|
-
expect(file.path).to eq("#{spec_dir}/archive.tar.bz")
|
168
|
-
expect(file.uid).to eq(1000)
|
169
|
-
expect(file.gid).to eq(1000)
|
170
|
-
end
|
171
|
-
|
172
|
-
# case os_name
|
173
|
-
# when 'opensuse', 'sles'
|
174
|
-
# expect(file.gid).to eq(100)
|
175
|
-
# else
|
176
|
-
# end
|
177
|
-
|
178
|
-
case os_name
|
179
|
-
when 'debian'
|
180
|
-
## no op
|
181
|
-
else
|
182
|
-
result = host.tar('create', "#{archive}.xz", compress: 'xz', paths: ['*.log'], directory: directory)
|
183
|
-
expect(result.success?).to eq(true)
|
184
|
-
|
185
|
-
file = host.file("#{spec_dir}/#{archive}.xz")
|
186
|
-
expect(file.path).to eq("#{spec_dir}/archive.tar.xz")
|
187
|
-
expect(file.uid).to eq(1000)
|
188
|
-
|
189
|
-
case os_name
|
190
|
-
when 'opensuse', 'sles'
|
191
|
-
expect(file.gid).to eq(100)
|
192
|
-
else
|
193
|
-
expect(file.gid).to eq(1000)
|
194
|
-
end
|
195
|
-
end
|
196
|
-
|
197
|
-
case os_name
|
198
|
-
when 'centos', 'rhel', 'debian'
|
199
|
-
## no op
|
200
|
-
else
|
201
|
-
result = host.tar('create', "#{archive}.lzma", compress: 'lzma', paths: ['*.log'], directory: directory)
|
202
|
-
expect(result.success?).to eq(true)
|
203
|
-
|
204
|
-
file = host.file("#{spec_dir}/#{archive}.lzma")
|
205
|
-
expect(file.path).to eq("#{spec_dir}/archive.tar.lzma")
|
206
|
-
expect(file.uid).to eq(1000)
|
207
|
-
|
208
|
-
case os_name
|
209
|
-
when 'opensuse', 'sles'
|
210
|
-
expect(file.gid).to eq(100)
|
211
|
-
else
|
212
|
-
expect(file.gid).to eq(1000)
|
213
|
-
end
|
214
|
-
end
|
215
|
-
|
216
|
-
expect do
|
217
|
-
host.tar('create', "#{archive}.lzop", compress: 'lzop', paths: ['*.log'],
|
218
|
-
directory: directory)
|
219
|
-
end.to raise_error(ArgumentError)
|
220
|
-
end
|
221
|
-
end
|
222
|
-
end
|
223
|
-
end
|
@@ -1,93 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
TestHosts.each_os do |os_name, host_json|
|
6
|
-
RSpec.describe Kanrisuru::Core::Disk 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 'searches detail on block devices' do
|
21
|
-
host.su('root')
|
22
|
-
result = host.blkid
|
23
|
-
expect(result.success?).to eq(true)
|
24
|
-
|
25
|
-
device = result[0]
|
26
|
-
expect(device).to respond_to(
|
27
|
-
:name, :label, :type, :uuid,
|
28
|
-
:label_fatboot, :part_uuid, :uuid_sub
|
29
|
-
)
|
30
|
-
|
31
|
-
result = host.blkid(uuid: device.uuid)
|
32
|
-
expect(result.success?).to eq(true)
|
33
|
-
expect(result.data).to eq(device.name)
|
34
|
-
|
35
|
-
result = host.blkid(device: device.name)
|
36
|
-
# puts device.name
|
37
|
-
# puts result.inspect
|
38
|
-
expect(result.success?).to eq(true)
|
39
|
-
expect(result.data[0]).to respond_to(
|
40
|
-
:name, :label, :uuid, :type, :uuid_sub, :label_fatboot, :version, :usage,
|
41
|
-
:part_uuid, :part_entry_scheme, :part_entry_uuid, :part_entry_type,
|
42
|
-
:part_entry_number, :part_entry_offset, :part_entry_size, :part_entry_disk,
|
43
|
-
:minimum_io_size, :physical_sector_size, :logical_sector_size
|
44
|
-
)
|
45
|
-
end
|
46
|
-
|
47
|
-
it 'gets details on block devices' do
|
48
|
-
result = host.lsblk
|
49
|
-
expect(result.data).to be_instance_of(Array)
|
50
|
-
|
51
|
-
device = result[0]
|
52
|
-
|
53
|
-
expect(device).to respond_to(
|
54
|
-
:name, :maj_dev, :min_dev,
|
55
|
-
:removable_device, :readonly_device,
|
56
|
-
:owner, :group, :mode,
|
57
|
-
:fsize, :type, :mount_point,
|
58
|
-
:fs_type, :uuid, :children
|
59
|
-
)
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'gets summarize disk usage' do
|
63
|
-
result = host.du(path: "#{host_json['home']}/.bashrc", summarize: true)
|
64
|
-
expect(result).to be_success
|
65
|
-
expect(result[0].path).to eq("#{host_json['home']}/.bashrc")
|
66
|
-
end
|
67
|
-
|
68
|
-
it 'gets all disk usage' do
|
69
|
-
result = host.du(path: host_json['home'])
|
70
|
-
expect(result).to be_success
|
71
|
-
expect(result.data.length).to be >= 2
|
72
|
-
end
|
73
|
-
|
74
|
-
it 'gets summarized disk usage root user' do
|
75
|
-
host.su('root')
|
76
|
-
result = host.du(path: '/etc', summarize: true)
|
77
|
-
expect(result).to be_success
|
78
|
-
expect(result[0].path).to eq('/etc')
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'gets disk free for system' do
|
82
|
-
expect(host.df.data).to be_instance_of(Array)
|
83
|
-
expect(host.df(inodes: true).data).to be_instance_of(Array)
|
84
|
-
end
|
85
|
-
|
86
|
-
it 'gets disk usage for path' do
|
87
|
-
result = host.df(path: '/')
|
88
|
-
expect(result.data).to be_instance_of(Array)
|
89
|
-
expect(result[0].mount).to eq('/')
|
90
|
-
end
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
TestHosts.each_os do |os_name, host_json|
|
6
|
-
RSpec.describe Kanrisuru::Core::Dmi 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 'parses dmi values' do
|
21
|
-
host.su('root')
|
22
|
-
result = host.dmi
|
23
|
-
expect(result).to be_success
|
24
|
-
end
|
25
|
-
|
26
|
-
it 'parses dmi values with types' do
|
27
|
-
host.su('root')
|
28
|
-
result = host.dmi(types: ['System', 3])
|
29
|
-
expect(result).to be_success
|
30
|
-
|
31
|
-
expect(result.find { |i| i.dmi_type == 'System' }).to be_instance_of(Kanrisuru::Core::Dmi::System)
|
32
|
-
expect(result.find { |i| i.dmi_type == 'Chassis' }).to be_instance_of(Kanrisuru::Core::Dmi::Chassis)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
@@ -1,359 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
TestHosts.each_os do |os_name, host_json, spec_dir|
|
6
|
-
RSpec.describe Kanrisuru::Core::File do
|
7
|
-
context "with #{os_name}" do
|
8
|
-
before(:all) do
|
9
|
-
host = Kanrisuru::Remote::Host.new(
|
10
|
-
host: host_json['hostname'],
|
11
|
-
username: host_json['username'],
|
12
|
-
keys: [host_json['ssh_key']]
|
13
|
-
)
|
14
|
-
|
15
|
-
host.mkdir(spec_dir, silent: true)
|
16
|
-
host.disconnect
|
17
|
-
end
|
18
|
-
|
19
|
-
let(:host) do
|
20
|
-
Kanrisuru::Remote::Host.new(
|
21
|
-
host: host_json['hostname'],
|
22
|
-
username: host_json['username'],
|
23
|
-
keys: [host_json['ssh_key']]
|
24
|
-
)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
host.disconnect
|
29
|
-
end
|
30
|
-
|
31
|
-
after(:all) do
|
32
|
-
host = Kanrisuru::Remote::Host.new(
|
33
|
-
host: host_json['hostname'],
|
34
|
-
username: host_json['username'],
|
35
|
-
keys: [host_json['ssh_key']]
|
36
|
-
)
|
37
|
-
|
38
|
-
host.rm(spec_dir, force: true, recursive: true)
|
39
|
-
host.disconnect
|
40
|
-
end
|
41
|
-
|
42
|
-
it 'changes file permission flags' do
|
43
|
-
host.su('root')
|
44
|
-
|
45
|
-
path = "#{spec_dir}/test.txt"
|
46
|
-
host.touch(path)
|
47
|
-
|
48
|
-
mode = host.stat(path).mode
|
49
|
-
|
50
|
-
expect(mode).to be_instance_of(Kanrisuru::Mode)
|
51
|
-
|
52
|
-
mode.numeric = 0o777
|
53
|
-
|
54
|
-
mode = host.chmod(path, mode).mode
|
55
|
-
|
56
|
-
expect(mode).to be_instance_of(Kanrisuru::Mode)
|
57
|
-
expect(mode.numeric).to eq('777')
|
58
|
-
|
59
|
-
mode.symbolic = 'g=r,o=r'
|
60
|
-
|
61
|
-
mode = host.chmod(path, mode).mode
|
62
|
-
expect(mode.symbolic).to eq('-rwxr--r--')
|
63
|
-
expect(mode.to_i).to eq(0o744)
|
64
|
-
|
65
|
-
expect do
|
66
|
-
host.chmod(path, 600)
|
67
|
-
end.to raise_error(ArgumentError)
|
68
|
-
end
|
69
|
-
|
70
|
-
it 'changes file owner and group' do
|
71
|
-
path = "#{spec_dir}/test-owner.txt"
|
72
|
-
|
73
|
-
host.touch(path)
|
74
|
-
|
75
|
-
host.su('root')
|
76
|
-
result = host.chown(path, owner: host_json['username'], group: host_json['username'])
|
77
|
-
|
78
|
-
expect(result.user).to eq(host_json['username'])
|
79
|
-
expect(result.uid).to eq(1000)
|
80
|
-
|
81
|
-
case os_name
|
82
|
-
when 'opensuse', 'sles'
|
83
|
-
expect(result.group).to eq('users')
|
84
|
-
expect(result.gid).to eq(100)
|
85
|
-
else
|
86
|
-
expect(result.group).to eq(host_json['username'])
|
87
|
-
expect(result.gid).to eq(1000)
|
88
|
-
end
|
89
|
-
|
90
|
-
host.su('root')
|
91
|
-
result = host.chown(path, owner: 'root', group: 'root')
|
92
|
-
|
93
|
-
expect(result.user).to eq('root')
|
94
|
-
expect(result.uid).to eq(0)
|
95
|
-
expect(result.group).to eq('root')
|
96
|
-
expect(result.gid).to eq(0)
|
97
|
-
end
|
98
|
-
|
99
|
-
it 'touches files' do
|
100
|
-
result = host.touch("#{spec_dir}/test-date.txt", date: '2021-01-01')
|
101
|
-
|
102
|
-
expect(result.success?).to eq(true)
|
103
|
-
expect(result[0].last_modified).to be_instance_of(DateTime)
|
104
|
-
expect(result[0].last_modified.to_date.to_s).to eq('2021-01-01')
|
105
|
-
|
106
|
-
paths = ["#{spec_dir}/test1.config", "#{spec_dir}/test2.config", "#{spec_dir}/test3.config"]
|
107
|
-
host.touch(paths)
|
108
|
-
|
109
|
-
realpaths = paths.map do |path|
|
110
|
-
host.realpath(path).path
|
111
|
-
end
|
112
|
-
|
113
|
-
result = host.touch(paths)
|
114
|
-
expect(result.data).to be_instance_of(Array)
|
115
|
-
|
116
|
-
current_date = Time.now.to_date.to_s
|
117
|
-
|
118
|
-
result.each do |item|
|
119
|
-
expect(realpaths.include?(item.path)).to eq(true)
|
120
|
-
expect(item.user).to eq(host_json['username'])
|
121
|
-
expect(item.fsize).to eq(0)
|
122
|
-
expect(item.last_modified.to_date.to_s).to eq(current_date)
|
123
|
-
expect(item.last_access.to_date.to_s).to eq(current_date)
|
124
|
-
expect(item.last_changed.to_date.to_s).to eq(current_date)
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
it 'soft links file' do
|
129
|
-
path = "#{spec_dir}/test-file.txt"
|
130
|
-
|
131
|
-
result_a = host.touch(path)[0]
|
132
|
-
expect(result_a.path).to eq(host.realpath(path).path)
|
133
|
-
|
134
|
-
result_b = host.symlink(path, "#{spec_dir}/test-symlink.txt")
|
135
|
-
|
136
|
-
expect(host.realpath(result_b.path).path).to eq(result_a.path)
|
137
|
-
expect(result_b.file_type).to eq('symbolic link')
|
138
|
-
end
|
139
|
-
|
140
|
-
it 'hard links file' do
|
141
|
-
path = "#{spec_dir}/test-file-ln.txt"
|
142
|
-
host.touch(path)
|
143
|
-
|
144
|
-
result_a = host.touch(path)[0]
|
145
|
-
result_b = host.link(path, "#{spec_dir}/test-link.txt")
|
146
|
-
|
147
|
-
expect(result_b.inode).to eq(result_a.inode)
|
148
|
-
expect(result_b.file_type).to eq('regular empty file')
|
149
|
-
|
150
|
-
result = host.find(inode: result_a.inode)
|
151
|
-
files = result.map do |item|
|
152
|
-
host.realpath(item.path).path
|
153
|
-
end
|
154
|
-
|
155
|
-
expect(files.include?(host.realpath(result_a.path).path)).to eq(true)
|
156
|
-
expect(files.include?(host.realpath(result_b.path).path)).to eq(true)
|
157
|
-
|
158
|
-
## Can't hard link dir
|
159
|
-
expect(host.link(spec_dir.to_s, "#{spec_dir}/tmpb")).to eq(false)
|
160
|
-
|
161
|
-
host.rm("#{spec_dir}/test-link.txt")
|
162
|
-
end
|
163
|
-
|
164
|
-
it 'creates directory' do
|
165
|
-
path = "#{spec_dir}/test-dir/"
|
166
|
-
result = host.mkdir(path)
|
167
|
-
|
168
|
-
expect(result).to be_success
|
169
|
-
expect(result.path).to eq(path)
|
170
|
-
expect(result.mode.numeric).to eq('755')
|
171
|
-
expect(result.file_type).to eq('directory')
|
172
|
-
expect(result.uid).to eq(1000)
|
173
|
-
expect(result.user).to eq(host_json['username'])
|
174
|
-
|
175
|
-
case os_name
|
176
|
-
when 'sles', 'opensuse'
|
177
|
-
expect(result.gid).to eq(100)
|
178
|
-
expect(result.group).to eq('users')
|
179
|
-
else
|
180
|
-
expect(result.gid).to eq(1000)
|
181
|
-
expect(result.group).to eq(host_json['username'])
|
182
|
-
end
|
183
|
-
|
184
|
-
result = host.ls(path: spec_dir)
|
185
|
-
expect(result.success?).to eq(true)
|
186
|
-
selected = result.find { |item| item.path == 'test-dir' }
|
187
|
-
|
188
|
-
expect(selected.path).to eq('test-dir')
|
189
|
-
end
|
190
|
-
|
191
|
-
it 'copies a file' do
|
192
|
-
path = "#{spec_dir}/remote-file.txt"
|
193
|
-
copied_path = "#{spec_dir}/remote-file-copied.txt"
|
194
|
-
|
195
|
-
file = host.file(path)
|
196
|
-
file.touch
|
197
|
-
file.append do |f|
|
198
|
-
f << 'Hello'
|
199
|
-
f << 'World'
|
200
|
-
end
|
201
|
-
|
202
|
-
result = host.cp(path, copied_path)
|
203
|
-
expect(result.success?).to eq(true)
|
204
|
-
|
205
|
-
result = host.cat(copied_path)
|
206
|
-
expect(result.success?).to eq(true)
|
207
|
-
expect(result.data).to eq(%w[Hello World])
|
208
|
-
end
|
209
|
-
|
210
|
-
it 'copies directories' do
|
211
|
-
path = "#{spec_dir}/remote-dir"
|
212
|
-
subdir_path = "#{path}/subdir"
|
213
|
-
copied_path = "#{spec_dir}/copied-dir"
|
214
|
-
|
215
|
-
result = host.mkdir(path)
|
216
|
-
expect(result.success?).to eq(true)
|
217
|
-
|
218
|
-
result = host.mkdir(subdir_path)
|
219
|
-
expect(result.success?).to eq(true)
|
220
|
-
|
221
|
-
file = host.file("#{subdir_path}/test-nested.txt")
|
222
|
-
file.touch
|
223
|
-
file.append do |f|
|
224
|
-
f << 'This is a'
|
225
|
-
f << 'test file...'
|
226
|
-
end
|
227
|
-
|
228
|
-
result = host.cp(path, copied_path, recursive: true)
|
229
|
-
expect(result.success?).to eq(true)
|
230
|
-
end
|
231
|
-
|
232
|
-
it 'copies with a backup' do
|
233
|
-
path = "#{spec_dir}/remote-file-to-backup.txt"
|
234
|
-
copied_path = "#{spec_dir}/remote-file-copied-with-backup.txt"
|
235
|
-
|
236
|
-
file = host.file(path)
|
237
|
-
file.touch
|
238
|
-
file.append do |f|
|
239
|
-
f << 'Hello'
|
240
|
-
f << 'World'
|
241
|
-
end
|
242
|
-
|
243
|
-
result = host.cp(path, copied_path)
|
244
|
-
expect(result).to be_success
|
245
|
-
|
246
|
-
file.append do |f|
|
247
|
-
f << 'New Content'
|
248
|
-
end
|
249
|
-
|
250
|
-
result = host.cp(path, copied_path, backup: true)
|
251
|
-
expect(result.success?).to eq(true)
|
252
|
-
|
253
|
-
result = host.ls(path: spec_dir)
|
254
|
-
backup = result.find { |f| f.path == 'remote-file-copied-with-backup.txt~' }
|
255
|
-
expect(backup.path).to eq('remote-file-copied-with-backup.txt~')
|
256
|
-
end
|
257
|
-
|
258
|
-
it 'moves files' do
|
259
|
-
path = "#{spec_dir}/remote-file-to-move.txt"
|
260
|
-
new_path = "#{spec_dir}/remote-file-moved.txt"
|
261
|
-
|
262
|
-
file = host.file(path)
|
263
|
-
file.touch
|
264
|
-
file.append do |f|
|
265
|
-
f << 'Hello'
|
266
|
-
f << 'World'
|
267
|
-
end
|
268
|
-
|
269
|
-
result = host.mv(path, new_path, no_target_directory: true)
|
270
|
-
expect(result.success?).to eq(true)
|
271
|
-
|
272
|
-
result = host.cat(new_path)
|
273
|
-
expect(result).to be_success
|
274
|
-
expect(result.data).to eq(%w[Hello World])
|
275
|
-
end
|
276
|
-
|
277
|
-
it 'moves files into a folder' do
|
278
|
-
paths = ['file1.txt', 'file2.txt', 'file3.txt']
|
279
|
-
paths = paths.map { |p| "#{spec_dir}/#{p}" }
|
280
|
-
new_dir = "#{spec_dir}/new_dir"
|
281
|
-
|
282
|
-
result = host.mkdir(new_dir)
|
283
|
-
expect(result).to be_success
|
284
|
-
|
285
|
-
paths.each do |path|
|
286
|
-
file = host.file(path)
|
287
|
-
file.touch
|
288
|
-
file.append do |f|
|
289
|
-
f << 'this is a file'
|
290
|
-
end
|
291
|
-
end
|
292
|
-
|
293
|
-
result = host.mv(paths, new_dir, target_directory: true)
|
294
|
-
expect(result).to be_success
|
295
|
-
end
|
296
|
-
|
297
|
-
it 'moves folders' do
|
298
|
-
path = "#{spec_dir}/remote-dir-to-move"
|
299
|
-
moved_path = "#{spec_dir}/moved-dir"
|
300
|
-
|
301
|
-
result = host.mkdir(path)
|
302
|
-
expect(result).to be_success
|
303
|
-
|
304
|
-
result = host.mv(path, moved_path)
|
305
|
-
expect(result).to be_success
|
306
|
-
end
|
307
|
-
|
308
|
-
it 'removes file' do
|
309
|
-
path = "#{spec_dir}/test-rm-file.txt"
|
310
|
-
|
311
|
-
result = host.touch(path)[0]
|
312
|
-
expect(host.empty_file?(result.path)).to eq(true)
|
313
|
-
|
314
|
-
result = host.rm(path)
|
315
|
-
expect(result.success?).to eq(true)
|
316
|
-
expect(host.empty_file?(path)).to eq(false)
|
317
|
-
end
|
318
|
-
|
319
|
-
it 'removes directories' do
|
320
|
-
result = host.mkdir("#{spec_dir}/directory/1", silent: true)
|
321
|
-
expect(result).to be_success
|
322
|
-
|
323
|
-
result = host.mkdir("#{spec_dir}/directory/2", silent: true)
|
324
|
-
expect(result).to be_success
|
325
|
-
|
326
|
-
result = host.mkdir("#{spec_dir}/directory/3", silent: true)
|
327
|
-
expect(result).to be_success
|
328
|
-
|
329
|
-
result = host.rmdir(["#{spec_dir}/directory/1", "#{spec_dir}/directory/2"])
|
330
|
-
expect(result).to be_success
|
331
|
-
|
332
|
-
## Can't delete non empty dir
|
333
|
-
result = host.rmdir("#{spec_dir}/directory")
|
334
|
-
expect(result).to be_failure
|
335
|
-
|
336
|
-
result = host.rmdir("#{spec_dir}/directory/3")
|
337
|
-
expect(result).to be_success
|
338
|
-
end
|
339
|
-
|
340
|
-
it 'counts a file' do
|
341
|
-
result = host.wc('/etc/hosts')
|
342
|
-
|
343
|
-
expect(result.success?).to eq(true)
|
344
|
-
expect(result).to respond_to(:lines, :words, :characters)
|
345
|
-
|
346
|
-
## Need to remap data including newline chars to get byte size
|
347
|
-
data = host.cat('/etc/hosts').command.raw_result
|
348
|
-
doc = data.map(&:lines).flatten
|
349
|
-
|
350
|
-
words = doc.map(&:split).flatten
|
351
|
-
chars = doc.map(&:length).flatten
|
352
|
-
|
353
|
-
expect(result.lines).to eq(doc.length)
|
354
|
-
expect(result.words).to eq(words.length)
|
355
|
-
expect(result.characters).to eq(chars.sum)
|
356
|
-
end
|
357
|
-
end
|
358
|
-
end
|
359
|
-
end
|