kanrisuru 0.11.1 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rspec +1 -1
- data/CHANGELOG.md +21 -0
- data/README.md +13 -88
- data/kanrisuru.gemspec +1 -0
- data/lib/kanrisuru/command.rb +7 -0
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -145
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -319
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -101
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -126
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -105
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -1015
- data/lib/kanrisuru/os_package/collection.rb +58 -0
- data/lib/kanrisuru/os_package/define.rb +34 -0
- data/lib/kanrisuru/os_package/include.rb +163 -0
- data/lib/kanrisuru/os_package.rb +3 -245
- data/lib/kanrisuru/remote/fstab.rb +1 -1
- data/lib/kanrisuru/result.rb +5 -4
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +2 -1
- data/spec/functional/core/mount_spec.rb +121 -0
- data/spec/functional/result_spec.rb +150 -0
- data/spec/{hosts.json → helper/hosts.json} +0 -0
- data/spec/helper/simplecov.rb +21 -0
- data/spec/helper/stub_network.rb +1 -1
- data/spec/helper/test_hosts.rb +12 -2
- data/spec/integration/core/apt/debian_spec.rb +9 -0
- data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
- data/spec/integration/core/archive/centos_spec.rb +9 -0
- data/spec/integration/core/archive/debian_spec.rb +9 -0
- data/spec/integration/core/archive/fedora_spec.rb +9 -0
- data/spec/integration/core/archive/opensuse_spec.rb +9 -0
- data/spec/integration/core/archive/rhel_spec.rb +9 -0
- data/spec/integration/core/archive/sles_spec.rb +9 -0
- data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
- data/spec/integration/core/disk/centos_spec.rb +9 -0
- data/spec/integration/core/disk/debian_spec.rb +9 -0
- data/spec/integration/core/disk/fedora_spec.rb +9 -0
- data/spec/integration/core/disk/opensuse_spec.rb +9 -0
- data/spec/integration/core/disk/rhel_spec.rb +9 -0
- data/spec/integration/core/disk/sles_spec.rb +9 -0
- data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
- data/spec/integration/core/dmi/centos_spec.rb +9 -0
- data/spec/integration/core/dmi/debian_spec.rb +9 -0
- data/spec/integration/core/dmi/fedora_spec.rb +9 -0
- data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
- data/spec/integration/core/dmi/rhel_spec.rb +9 -0
- data/spec/integration/core/dmi/sles_spec.rb +9 -0
- data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
- data/spec/integration/core/file/centos_spec.rb +9 -0
- data/spec/integration/core/file/debian_spec.rb +9 -0
- data/spec/integration/core/file/fedora_spec.rb +9 -0
- data/spec/integration/core/file/opensuse_spec.rb +9 -0
- data/spec/integration/core/file/rhel_spec.rb +9 -0
- data/spec/integration/core/file/sles_spec.rb +9 -0
- data/spec/integration/core/file/ubuntu_spec.rb +9 -0
- data/spec/integration/core/find/centos_spec.rb +9 -0
- data/spec/integration/core/find/debian_spec.rb +9 -0
- data/spec/integration/core/find/fedora_spec.rb +9 -0
- data/spec/integration/core/find/opensuse_spec.rb +9 -0
- data/spec/integration/core/find/rhel_spec.rb +9 -0
- data/spec/integration/core/find/sles_spec.rb +9 -0
- data/spec/integration/core/find/ubuntu_spec.rb +9 -0
- data/spec/integration/core/group/centos_spec.rb +9 -0
- data/spec/integration/core/group/debian_spec.rb +9 -0
- data/spec/integration/core/group/fedora_spec.rb +9 -0
- data/spec/integration/core/group/opensuse_spec.rb +9 -0
- data/spec/integration/core/group/rhel_spec.rb +9 -0
- data/spec/integration/core/group/sles_spec.rb +9 -0
- data/spec/integration/core/group/ubuntu_spec.rb +9 -0
- data/spec/integration/core/ip/centos_spec.rb +9 -0
- data/spec/integration/core/ip/debian_spec.rb +9 -0
- data/spec/integration/core/ip/fedora_spec.rb +9 -0
- data/spec/integration/core/ip/opensuse_spec.rb +9 -0
- data/spec/integration/core/ip/rhel_spec.rb +9 -0
- data/spec/integration/core/ip/sles_spec.rb +9 -0
- data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
- data/spec/integration/core/path/centos_spec.rb +9 -0
- data/spec/integration/core/path/debian_spec.rb +9 -0
- data/spec/integration/core/path/fedora_spec.rb +9 -0
- data/spec/integration/core/path/opensuse_spec.rb +9 -0
- data/spec/integration/core/path/rhel_spec.rb +9 -0
- data/spec/integration/core/path/sles_spec.rb +9 -0
- data/spec/integration/core/path/ubuntu_spec.rb +9 -0
- data/spec/integration/core/socket/centos_spec.rb +9 -0
- data/spec/integration/core/socket/debian_spec.rb +9 -0
- data/spec/integration/core/socket/fedora_spec.rb +9 -0
- data/spec/integration/core/socket/opensuse_spec.rb +9 -0
- data/spec/integration/core/socket/rhel_spec.rb +9 -0
- data/spec/integration/core/socket/sles_spec.rb +9 -0
- data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stat/centos_spec.rb +9 -0
- data/spec/integration/core/stat/debian_spec.rb +9 -0
- data/spec/integration/core/stat/fedora_spec.rb +9 -0
- data/spec/integration/core/stat/opensuse_spec.rb +9 -0
- data/spec/integration/core/stat/rhel_spec.rb +9 -0
- data/spec/integration/core/stat/sles_spec.rb +9 -0
- data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stream/centos_spec.rb +9 -0
- data/spec/integration/core/stream/debian_spec.rb +9 -0
- data/spec/integration/core/stream/fedora_spec.rb +9 -0
- data/spec/integration/core/stream/opensuse_spec.rb +9 -0
- data/spec/integration/core/stream/rhel_spec.rb +9 -0
- data/spec/integration/core/stream/sles_spec.rb +9 -0
- data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
- data/spec/integration/core/system/centos_spec.rb +9 -0
- data/spec/integration/core/system/debian_spec.rb +9 -0
- data/spec/integration/core/system/fedora_spec.rb +9 -0
- data/spec/integration/core/system/opensuse_spec.rb +9 -0
- data/spec/integration/core/system/rhel_spec.rb +9 -0
- data/spec/integration/core/system/sles_spec.rb +9 -0
- data/spec/integration/core/system/ubuntu_spec.rb +9 -0
- data/spec/integration/core/transfer/centos_spec.rb +9 -0
- data/spec/integration/core/transfer/debian_spec.rb +9 -0
- data/spec/integration/core/transfer/fedora_spec.rb +9 -0
- data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
- data/spec/integration/core/transfer/rhel_spec.rb +9 -0
- data/spec/integration/core/transfer/sles_spec.rb +9 -0
- data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
- data/spec/integration/core/user/centos_spec.rb +9 -0
- data/spec/integration/core/user/debian_spec.rb +9 -0
- data/spec/integration/core/user/fedora_spec.rb +9 -0
- data/spec/integration/core/user/opensuse_spec.rb +9 -0
- data/spec/integration/core/user/rhel_spec.rb +9 -0
- data/spec/integration/core/user/sles_spec.rb +9 -0
- data/spec/integration/core/user/ubuntu_spec.rb +9 -0
- data/spec/integration/core/yum/centos_spec.rb +9 -0
- data/spec/integration/core/yum/fedora_spec.rb +9 -0
- data/spec/integration/core/yum/rhel_spec.rb +9 -0
- data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
- data/spec/integration/core/zypper/sles_spec.rb +9 -0
- data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/cpu/centos_spec.rb +9 -0
- data/spec/integration/remote/cpu/debian_spec.rb +9 -0
- data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
- data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
- data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
- data/spec/integration/remote/cpu/sles_spec.rb +9 -0
- data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/env/centos_spec.rb +9 -0
- data/spec/integration/remote/env/debian_spec.rb +9 -0
- data/spec/integration/remote/env/fedora_spec.rb +9 -0
- data/spec/integration/remote/env/opensuse_spec.rb +9 -0
- data/spec/integration/remote/env/rhel_spec.rb +9 -0
- data/spec/integration/remote/env/sles_spec.rb +9 -0
- data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/fstab/centos_spec.rb +9 -0
- data/spec/integration/remote/fstab/debian_spec.rb +9 -0
- data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
- data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
- data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
- data/spec/integration/remote/fstab/sles_spec.rb +9 -0
- data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/host/centos_spec.rb +9 -0
- data/spec/integration/remote/host/debian_spec.rb +9 -0
- data/spec/integration/remote/host/fedora_spec.rb +9 -0
- data/spec/integration/remote/host/opensuse_spec.rb +9 -0
- data/spec/integration/remote/host/rhel_spec.rb +9 -0
- data/spec/integration/remote/host/sles_spec.rb +9 -0
- data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/memory/centos_spec.rb +9 -0
- data/spec/integration/remote/memory/debian_spec.rb +9 -0
- data/spec/integration/remote/memory/fedora_spec.rb +9 -0
- data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
- data/spec/integration/remote/memory/rhel_spec.rb +9 -0
- data/spec/integration/remote/memory/sles_spec.rb +9 -0
- data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/os/centos_spec.rb +9 -0
- data/spec/integration/remote/os/debian_spec.rb +9 -0
- data/spec/integration/remote/os/fedora_spec.rb +9 -0
- data/spec/integration/remote/os/opensuse_spec.rb +9 -0
- data/spec/integration/remote/os/rhel_spec.rb +9 -0
- data/spec/integration/remote/os/sles_spec.rb +9 -0
- data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
- data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
- data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
- data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
- data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
- data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
- data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
- data/spec/spec_helper.rb +4 -4
- data/spec/support/shared_examples/integration/core/apt.rb +117 -0
- data/spec/support/shared_examples/integration/core/archive.rb +221 -0
- data/spec/support/shared_examples/integration/core/disk.rb +91 -0
- data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
- data/spec/support/shared_examples/integration/core/file.rb +357 -0
- data/spec/support/shared_examples/integration/core/find.rb +50 -0
- data/spec/support/shared_examples/integration/core/group.rb +62 -0
- data/spec/support/shared_examples/integration/core/ip.rb +68 -0
- data/spec/support/shared_examples/integration/core/path.rb +90 -0
- data/spec/support/shared_examples/integration/core/socket.rb +27 -0
- data/spec/support/shared_examples/integration/core/stat.rb +95 -0
- data/spec/support/shared_examples/integration/core/stream.rb +112 -0
- data/spec/support/shared_examples/integration/core/system.rb +155 -0
- data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
- data/spec/support/shared_examples/integration/core/user.rb +72 -0
- data/spec/support/shared_examples/integration/core/yum.rb +115 -0
- data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
- data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
- data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
- data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
- data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
- data/spec/support/shared_examples/integration/remote/host.rb +65 -0
- data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
- data/spec/support/shared_examples/integration/remote/os.rb +60 -0
- data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
- data/spec/unit/command_spec.rb +18 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +433 -30
- data/spec/integration/core/apt_spec.rb +0 -120
- data/spec/integration/core/archive_spec.rb +0 -228
- data/spec/integration/core/disk_spec.rb +0 -94
- data/spec/integration/core/dmi_spec.rb +0 -37
- data/spec/integration/core/file_spec.rb +0 -368
- data/spec/integration/core/find_spec.rb +0 -53
- data/spec/integration/core/group_spec.rb +0 -65
- data/spec/integration/core/ip_spec.rb +0 -71
- data/spec/integration/core/path_spec.rb +0 -93
- data/spec/integration/core/socket_spec.rb +0 -31
- data/spec/integration/core/stat_spec.rb +0 -98
- data/spec/integration/core/stream_spec.rb +0 -117
- data/spec/integration/core/system_spec.rb +0 -143
- data/spec/integration/core/transfer_spec.rb +0 -108
- data/spec/integration/core/user_spec.rb +0 -76
- data/spec/integration/core/yum_spec.rb +0 -118
- data/spec/integration/core/zypper_spec.rb +0 -199
- data/spec/integration/remote/cpu_spec.rb +0 -41
- data/spec/integration/remote/env_spec.rb +0 -36
- data/spec/integration/remote/fstab_spec.rb +0 -92
- data/spec/integration/remote/host_spec.rb +0 -68
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -63
- data/spec/integration/remote/remote_file_spec.rb +0 -180
- data/spec/zz_reboot_spec.rb +0 -46
@@ -1,98 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Kanrisuru::Core::Stat do
|
6
|
-
TestHosts.each_os do |os_name|
|
7
|
-
context "with #{os_name}" do
|
8
|
-
let(:host_json) { TestHosts.host(os_name) }
|
9
|
-
let(:host) do
|
10
|
-
Kanrisuru::Remote::Host.new(
|
11
|
-
host: host_json['hostname'],
|
12
|
-
username: host_json['username'],
|
13
|
-
keys: [host_json['ssh_key']]
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
after do
|
18
|
-
host.disconnect
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'checks file type correctly' do
|
22
|
-
expect(host.dir?('/')).to eq(true)
|
23
|
-
expect(host.file?('/etc/hosts')).to eq(true)
|
24
|
-
|
25
|
-
case os_name
|
26
|
-
when 'sles'
|
27
|
-
expect(host.block_device?('/dev/xvda')).to eq(true)
|
28
|
-
else
|
29
|
-
expect(host.block_device?('/dev/vda')).to eq(true)
|
30
|
-
end
|
31
|
-
|
32
|
-
expect(host.char_device?('/dev/tty')).to eq(true)
|
33
|
-
expect(host.symlink?('/etc/mtab')).to eq(true)
|
34
|
-
expect(host.inode?('/proc/uptime')).to eq(true)
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'gets file stat' do
|
38
|
-
result = host.stat(host_json['home'])
|
39
|
-
|
40
|
-
expect(result.mode).to be_instance_of(Kanrisuru::Mode)
|
41
|
-
expect(result.mode.directory?).to eq(true)
|
42
|
-
|
43
|
-
case os_name
|
44
|
-
when 'centos', 'rhel', 'fedora'
|
45
|
-
expect(result.mode.numeric).to eq('700')
|
46
|
-
expect(result.mode.to_i).to eq(0o700)
|
47
|
-
|
48
|
-
expect(result.mode.group.read?).to eq(false)
|
49
|
-
expect(result.mode.group.write?).to eq(false)
|
50
|
-
expect(result.mode.group.execute?).to eq(false)
|
51
|
-
|
52
|
-
expect(result.mode.other.read?).to eq(false)
|
53
|
-
expect(result.mode.other.write?).to eq(false)
|
54
|
-
expect(result.mode.other.execute?).to eq(false)
|
55
|
-
|
56
|
-
expect(result.mode.owner.read?).to eq(true)
|
57
|
-
expect(result.mode.owner.write?).to eq(true)
|
58
|
-
expect(result.mode.owner.execute?).to eq(true)
|
59
|
-
|
60
|
-
expect(result.mode.symbolic).to eq('drwx------')
|
61
|
-
else
|
62
|
-
expect(result.mode.numeric).to eq('755')
|
63
|
-
expect(result.mode.to_i).to eq(0o755)
|
64
|
-
|
65
|
-
expect(result.mode.group.read?).to eq(true)
|
66
|
-
expect(result.mode.group.write?).to eq(false)
|
67
|
-
expect(result.mode.group.execute?).to eq(true)
|
68
|
-
|
69
|
-
expect(result.mode.other.read?).to eq(true)
|
70
|
-
expect(result.mode.other.write?).to eq(false)
|
71
|
-
expect(result.mode.other.execute?).to eq(true)
|
72
|
-
|
73
|
-
expect(result.mode.owner.read?).to eq(true)
|
74
|
-
expect(result.mode.owner.write?).to eq(true)
|
75
|
-
expect(result.mode.owner.execute?).to eq(true)
|
76
|
-
|
77
|
-
expect(result.mode.symbolic).to eq('drwxr-xr-x')
|
78
|
-
end
|
79
|
-
|
80
|
-
expect(result.file_type).to eq('directory')
|
81
|
-
|
82
|
-
case os_name
|
83
|
-
when 'opensuse', 'sles'
|
84
|
-
expect(result.gid).to eq(100)
|
85
|
-
expect(result.group).to eq('users')
|
86
|
-
else
|
87
|
-
expect(result.gid).to eq(1000)
|
88
|
-
expect(result.group).to eq(host_json['username'])
|
89
|
-
end
|
90
|
-
|
91
|
-
expect(result.uid).to eq(1000)
|
92
|
-
expect(result.user).to eq(host_json['username'])
|
93
|
-
|
94
|
-
expect(result.fsize).to be >= 0
|
95
|
-
end
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
@@ -1,117 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
RSpec.describe Kanrisuru::Core::Stream do
|
4
|
-
TestHosts.each_os do |os_name|
|
5
|
-
context "with #{os_name}" do
|
6
|
-
before(:all) do
|
7
|
-
host_json = TestHosts.host(os_name)
|
8
|
-
host = Kanrisuru::Remote::Host.new(
|
9
|
-
host: host_json['hostname'],
|
10
|
-
username: host_json['username'],
|
11
|
-
keys: [host_json['ssh_key']]
|
12
|
-
)
|
13
|
-
|
14
|
-
host.mkdir("#{host_json['home']}/.kanrisuru_spec_files", silent: true)
|
15
|
-
host.disconnect
|
16
|
-
end
|
17
|
-
|
18
|
-
let(:host_json) { TestHosts.host(os_name) }
|
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
|
-
let(:spec_dir) { "#{host_json['home']}/.kanrisuru_spec_files" }
|
28
|
-
|
29
|
-
after do
|
30
|
-
host.disconnect
|
31
|
-
end
|
32
|
-
|
33
|
-
after(:all) do
|
34
|
-
host_json = TestHosts.host(os_name)
|
35
|
-
host = Kanrisuru::Remote::Host.new(
|
36
|
-
host: host_json['hostname'],
|
37
|
-
username: host_json['username'],
|
38
|
-
keys: [host_json['ssh_key']]
|
39
|
-
)
|
40
|
-
|
41
|
-
host.rmdir("#{host_json['home']}/.kanrisuru_spec_files")
|
42
|
-
host.disconnect
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'outputs beginning of a file' do
|
46
|
-
file = host.file("#{spec_dir}/test-file.txt")
|
47
|
-
file.touch
|
48
|
-
file.append do |f|
|
49
|
-
f << 'This'
|
50
|
-
f << 'is'
|
51
|
-
f << 'a'
|
52
|
-
f << 'file!'
|
53
|
-
end
|
54
|
-
|
55
|
-
result = host.head("#{spec_dir}/test-file.txt", lines: 2)
|
56
|
-
expect(result).to be_success
|
57
|
-
expect(result.data.length).to eq(2)
|
58
|
-
expect(result.data).to eq(%w[This is])
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'outputs end of a file' do
|
62
|
-
file = host.file("#{spec_dir}/test-file.txt")
|
63
|
-
file.touch
|
64
|
-
file.append do |f|
|
65
|
-
f << 'This'
|
66
|
-
f << 'is'
|
67
|
-
f << 'a'
|
68
|
-
f << 'file!'
|
69
|
-
end
|
70
|
-
|
71
|
-
result = host.tail("#{spec_dir}/test-file.txt", lines: 2)
|
72
|
-
expect(result).to be_success
|
73
|
-
expect(result.data.length).to eq(2)
|
74
|
-
expect(result.data).to eq(['a', 'file!'])
|
75
|
-
end
|
76
|
-
|
77
|
-
it 'reads a chunk of text from a file' do
|
78
|
-
file = host.file("#{spec_dir}/test-file-chunk.txt")
|
79
|
-
file.touch
|
80
|
-
file.append do |f|
|
81
|
-
f << 'This'
|
82
|
-
f << 'is'
|
83
|
-
f << 'is'
|
84
|
-
f << 'a'
|
85
|
-
f << 'file'
|
86
|
-
f << 'forever...'
|
87
|
-
end
|
88
|
-
|
89
|
-
result = host.read_file_chunk("#{spec_dir}/test-file-chunk.txt", 2, 4)
|
90
|
-
expect(result).to be_success
|
91
|
-
expect(result.data.length).to eq(3)
|
92
|
-
expect(result.data).to eq(%w[is is a])
|
93
|
-
end
|
94
|
-
|
95
|
-
it 'cats a file' do
|
96
|
-
result = host.cat('/etc/group')
|
97
|
-
expect(result.success?).to eq(true)
|
98
|
-
expect(result.data.include?('root:x:0:')).to eq(true)
|
99
|
-
end
|
100
|
-
|
101
|
-
it 'echoes to stdout' do
|
102
|
-
result = host.echo('Hello world')
|
103
|
-
expect(result.data).to eq('Hello world')
|
104
|
-
end
|
105
|
-
|
106
|
-
it 'seds file to stdout' do
|
107
|
-
path = "#{spec_dir}/test-file.txt"
|
108
|
-
result = host.echo("Hello world, this is a Cat test file.\nCat\nCat\nDog", new_file: path, mode: 'write')
|
109
|
-
expect(result).to be_success
|
110
|
-
|
111
|
-
result = host.sed(path, 'Cat', 'Dog')
|
112
|
-
expect(result).to be_success
|
113
|
-
expect(result.data).to eq("Hello world, this is a Dog test file.\nDog\nDog\nDog")
|
114
|
-
end
|
115
|
-
end
|
116
|
-
end
|
117
|
-
end
|
@@ -1,143 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Kanrisuru::Core::System do
|
6
|
-
TestHosts.each_os do |os_name|
|
7
|
-
context "with #{os_name}" do
|
8
|
-
let(:host_json) { TestHosts.host(os_name) }
|
9
|
-
let(:host) do
|
10
|
-
Kanrisuru::Remote::Host.new(
|
11
|
-
host: host_json['hostname'],
|
12
|
-
username: host_json['username'],
|
13
|
-
keys: [host_json['ssh_key']]
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
after do
|
18
|
-
host.disconnect
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'gets cpu details' do
|
22
|
-
result = host.lscpu
|
23
|
-
expect(result).to be_success
|
24
|
-
expect(result.data).to be_instance_of(Kanrisuru::Core::System::CPUArchitecture)
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'gets environment variables' do
|
28
|
-
result = host.load_env
|
29
|
-
expect(result).to be_success
|
30
|
-
expect(result.data).to be_instance_of(Hash)
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'gets open files' do
|
34
|
-
host.su('root')
|
35
|
-
result = host.lsof
|
36
|
-
expect(result).to be_success
|
37
|
-
expect(result.data).to be_instance_of(Array)
|
38
|
-
end
|
39
|
-
|
40
|
-
it 'gets uptime' do
|
41
|
-
result = host.uptime
|
42
|
-
expect(result).to be_success
|
43
|
-
|
44
|
-
expect(result).to respond_to(
|
45
|
-
:boot_time, :uptime, :seconds,
|
46
|
-
:hours, :minutes, :days
|
47
|
-
)
|
48
|
-
|
49
|
-
expect(result.seconds).to be > 0
|
50
|
-
expect(result.minutes).to be >= 0
|
51
|
-
expect(result.hours).to be >= 0
|
52
|
-
expect(result.days).to be >= 0
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'kills pids' do
|
56
|
-
command = 'sleep 100000 > /dev/null 2>&1 &'
|
57
|
-
|
58
|
-
host.execute_shell("nohup #{command}")
|
59
|
-
result = host.ps(user: host_json['username'])
|
60
|
-
expect(result.success?).to eq(true)
|
61
|
-
|
62
|
-
process = result.select do |proc|
|
63
|
-
proc.command == 'sleep 100000'
|
64
|
-
end
|
65
|
-
|
66
|
-
pids = process.map(&:pid)
|
67
|
-
result = host.kill('SIGKILL', pids)
|
68
|
-
expect(result.success?).to eq(true)
|
69
|
-
|
70
|
-
result = host.ps(user: host_json['username'])
|
71
|
-
process = result.select do |proc|
|
72
|
-
proc.command == 'sleep 100000'
|
73
|
-
end
|
74
|
-
|
75
|
-
expect(process).to be_empty
|
76
|
-
end
|
77
|
-
|
78
|
-
it 'gets kernel statistics' do
|
79
|
-
result = host.kernel_statistics
|
80
|
-
expect(result).to be_success
|
81
|
-
|
82
|
-
expect(result.data).to respond_to(
|
83
|
-
:cpu_total,
|
84
|
-
:cpus,
|
85
|
-
:interrupt_total,
|
86
|
-
:interrupts,
|
87
|
-
:ctxt,
|
88
|
-
:btime,
|
89
|
-
:processes,
|
90
|
-
:procs_running,
|
91
|
-
:procs_blocked,
|
92
|
-
:softirq_total,
|
93
|
-
:softirqs
|
94
|
-
)
|
95
|
-
|
96
|
-
expect(result.cpus.length).to eq(host.cpu.cores)
|
97
|
-
end
|
98
|
-
|
99
|
-
it 'gets login details' do
|
100
|
-
host.su('root')
|
101
|
-
|
102
|
-
result = host.last
|
103
|
-
expect(result).to be_success
|
104
|
-
end
|
105
|
-
|
106
|
-
it 'gets failed login attempts' do
|
107
|
-
host.su('root')
|
108
|
-
|
109
|
-
result = host.last(failed_attempts: true)
|
110
|
-
expect(result).to be_success
|
111
|
-
end
|
112
|
-
|
113
|
-
it 'gets process details' do
|
114
|
-
result = host.ps
|
115
|
-
|
116
|
-
expect(result.data).to be_instance_of(Array)
|
117
|
-
process = result[0]
|
118
|
-
|
119
|
-
expect(process).to respond_to(
|
120
|
-
:uid, :user, :gid, :group,
|
121
|
-
:pid, :ppid, :cpu_usage, :memory_usage,
|
122
|
-
:stat, :priority, :flags, :policy_abbr, :policy,
|
123
|
-
:cpu_time, :command
|
124
|
-
)
|
125
|
-
|
126
|
-
result = host.ps(user: [host_json['username']])
|
127
|
-
|
128
|
-
expect(result.data).to be_instance_of(Array)
|
129
|
-
|
130
|
-
process = result.find do |proc|
|
131
|
-
proc.command == result.command.raw_command
|
132
|
-
end
|
133
|
-
|
134
|
-
expect(process.command).to eq(result.command.raw_command)
|
135
|
-
end
|
136
|
-
|
137
|
-
it 'gets information for users' do
|
138
|
-
result = host.who
|
139
|
-
expect(result.success?).to eq(true)
|
140
|
-
end
|
141
|
-
end
|
142
|
-
end
|
143
|
-
end
|
@@ -1,108 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Kanrisuru::Core::File do
|
6
|
-
TestHosts.each_os do |os_name|
|
7
|
-
context "with #{os_name}" do
|
8
|
-
before(:all) do
|
9
|
-
host_json = TestHosts.host(os_name)
|
10
|
-
host = Kanrisuru::Remote::Host.new(
|
11
|
-
host: host_json['hostname'],
|
12
|
-
username: host_json['username'],
|
13
|
-
keys: [host_json['ssh_key']]
|
14
|
-
)
|
15
|
-
|
16
|
-
host.mkdir("#{host_json['home']}/.kanrisuru_spec_files", silent: true)
|
17
|
-
host.disconnect
|
18
|
-
end
|
19
|
-
|
20
|
-
let(:host_json) { TestHosts.host(os_name) }
|
21
|
-
let(:host) do
|
22
|
-
Kanrisuru::Remote::Host.new(
|
23
|
-
host: host_json['hostname'],
|
24
|
-
username: host_json['username'],
|
25
|
-
keys: [host_json['ssh_key']]
|
26
|
-
)
|
27
|
-
end
|
28
|
-
|
29
|
-
let(:spec_dir) { "#{host_json['home']}/.kanrisuru_spec_files" }
|
30
|
-
|
31
|
-
after do
|
32
|
-
host.disconnect
|
33
|
-
end
|
34
|
-
|
35
|
-
after(:all) do
|
36
|
-
host_json = TestHosts.host(os_name)
|
37
|
-
host = Kanrisuru::Remote::Host.new(
|
38
|
-
host: host_json['hostname'],
|
39
|
-
username: host_json['username'],
|
40
|
-
keys: [host_json['ssh_key']]
|
41
|
-
)
|
42
|
-
|
43
|
-
host.rmdir("#{host_json['home']}/.kanrisuru_spec_files")
|
44
|
-
host.disconnect
|
45
|
-
end
|
46
|
-
|
47
|
-
it 'uploads a template file' do
|
48
|
-
path = '../templates/test.conf.erb'
|
49
|
-
dest_path = "#{spec_dir}/test.conf"
|
50
|
-
|
51
|
-
template = Kanrisuru::Template.new(path, array: %w[this is an array])
|
52
|
-
result = host.upload(template.read, dest_path)
|
53
|
-
|
54
|
-
expect(result).to be_success
|
55
|
-
expect(result.mode.numeric).to eq('640')
|
56
|
-
expect(result.user).to eq(host_json['username'])
|
57
|
-
|
58
|
-
case os_name
|
59
|
-
when 'sles', 'opensuse'
|
60
|
-
expect(result.gid).to eq(100)
|
61
|
-
expect(result.group).to eq('users')
|
62
|
-
else
|
63
|
-
expect(result.gid).to eq(1000)
|
64
|
-
expect(result.group).to eq(host_json['username'])
|
65
|
-
end
|
66
|
-
|
67
|
-
expect(host.cat(dest_path).to_a).to eq([
|
68
|
-
'<h1>Hello World</h1>',
|
69
|
-
'this',
|
70
|
-
'is',
|
71
|
-
'an',
|
72
|
-
'array'
|
73
|
-
])
|
74
|
-
end
|
75
|
-
|
76
|
-
it 'uploads a dir' do
|
77
|
-
path = '../meta/'
|
78
|
-
dest_path = "#{spec_dir}/meta"
|
79
|
-
|
80
|
-
result = host.upload(path, dest_path, recursive: true)
|
81
|
-
expect(result).to be_success
|
82
|
-
end
|
83
|
-
|
84
|
-
it 'downloads a file to local fs' do
|
85
|
-
path = '../hosts-file'
|
86
|
-
src_path = '/etc/hosts'
|
87
|
-
|
88
|
-
result = host.download(src_path, path)
|
89
|
-
expect(result).to eq(path)
|
90
|
-
FileUtils.rm(path)
|
91
|
-
end
|
92
|
-
|
93
|
-
it 'downloads a file directly' do
|
94
|
-
src_path = '/etc/hosts'
|
95
|
-
|
96
|
-
result = host.download(src_path)
|
97
|
-
expect(result).to be_instance_of(String)
|
98
|
-
lines = result.split("\n")
|
99
|
-
expect(lines.length).to be >= 1
|
100
|
-
end
|
101
|
-
|
102
|
-
it 'wgets url' do
|
103
|
-
result = host.wget('https://example.com', directory_prefix: spec_dir)
|
104
|
-
expect(result).to be_success
|
105
|
-
end
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
@@ -1,76 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Kanrisuru::Core::User do
|
6
|
-
TestHosts.each_os do |os_name|
|
7
|
-
context "with #{os_name}" do
|
8
|
-
let(:host_json) { TestHosts.host(os_name) }
|
9
|
-
let(:host) do
|
10
|
-
Kanrisuru::Remote::Host.new(
|
11
|
-
host: host_json['hostname'],
|
12
|
-
username: host_json['username'],
|
13
|
-
keys: [host_json['ssh_key']]
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
after do
|
18
|
-
host.disconnect
|
19
|
-
end
|
20
|
-
|
21
|
-
after(:all) do
|
22
|
-
host_json = TestHosts.host(os_name)
|
23
|
-
host = Kanrisuru::Remote::Host.new(
|
24
|
-
host: host_json['hostname'],
|
25
|
-
username: host_json['username'],
|
26
|
-
keys: [host_json['ssh_key']]
|
27
|
-
)
|
28
|
-
|
29
|
-
host.su('root')
|
30
|
-
host.user?('rails')
|
31
|
-
host.delete_user('rails').inspect if host.user?('rails')
|
32
|
-
host.rmdir('/home/rails') if host.dir?('/home/rails')
|
33
|
-
host.disconnect
|
34
|
-
end
|
35
|
-
|
36
|
-
it 'gets uid for user' do
|
37
|
-
expect(host.get_uid(host_json['uername']).to_i).to eq(1000)
|
38
|
-
expect(host.get_uid('asdf').to_i).to eq(nil)
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'gets a user details' do
|
42
|
-
result = host.get_user(host_json['username'])
|
43
|
-
expect(result.uid).to eq(1000)
|
44
|
-
expect(result.name).to eq(host_json['username'])
|
45
|
-
expect(result.home.path).to eq(host_json['home'])
|
46
|
-
|
47
|
-
case os_name
|
48
|
-
when 'opensuse', 'sles'
|
49
|
-
expect(result.groups[0]).to have_attributes(gid: 100, name: 'users')
|
50
|
-
else
|
51
|
-
expect(result.groups[0]).to have_attributes(gid: 1000, name: host_json['username'])
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'manages a user' do
|
56
|
-
## Need priviledge escalation to manage group
|
57
|
-
host.su('root')
|
58
|
-
|
59
|
-
result = host.create_user('rails', password: '123456', groups: %w[mail tty])
|
60
|
-
expect(result.success?).to eq(true)
|
61
|
-
expect(result.uid).to eq(1001)
|
62
|
-
expect(result.groups.length).to eq(3)
|
63
|
-
expect(result.shell.path).to eq('/bin/false')
|
64
|
-
expect(result.home.path).to eq('/home/rails')
|
65
|
-
|
66
|
-
result = host.update_user('rails', uid: 1002, shell: '/bin/bash', groups: ['audio'], append: true)
|
67
|
-
|
68
|
-
expect(result.uid).to eq(1002)
|
69
|
-
expect(result.shell.path).to eq('/bin/bash')
|
70
|
-
expect(result.groups.length).to eq(4)
|
71
|
-
|
72
|
-
expect(host.delete_user('rails').success?).to eq(true) if host.user?('rails')
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
@@ -1,118 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Kanrisuru::Core::Yum do
|
6
|
-
TestHosts.each_os(only: %w[fedora rhel centos]) do |os_name|
|
7
|
-
context "with #{os_name}" do
|
8
|
-
let(:host_json) { TestHosts.host(os_name) }
|
9
|
-
let(:host) do
|
10
|
-
Kanrisuru::Remote::Host.new(
|
11
|
-
host: host_json['hostname'],
|
12
|
-
username: host_json['username'],
|
13
|
-
keys: [host_json['ssh_key']]
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
after do
|
18
|
-
host.disconnect
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'upgrades packages' do
|
22
|
-
host.su('root')
|
23
|
-
result = host.yum('upgrade')
|
24
|
-
expect(result).to be_success
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'updates packages' do
|
28
|
-
host.su('root')
|
29
|
-
result = host.yum('update')
|
30
|
-
expect(result).to be_success
|
31
|
-
end
|
32
|
-
|
33
|
-
it 'installs local package from RPM' do
|
34
|
-
case os_name
|
35
|
-
when 'fedora'
|
36
|
-
package = 'rpmfusion-free-release-32.noarch.rpm'
|
37
|
-
url = "https://download1.rpmfusion.org/free/fedora/#{package}"
|
38
|
-
|
39
|
-
result = host.wget(url)
|
40
|
-
expect(result).to be_success
|
41
|
-
file = host.file("~/#{package}")
|
42
|
-
expect(file).to be_exists
|
43
|
-
|
44
|
-
host.su('root')
|
45
|
-
result = host.yum('localinstall', repos: file.expand_path)
|
46
|
-
expect(result).to be_success
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
it 'lists installed packages' do
|
51
|
-
result = host.yum('list', installed: true)
|
52
|
-
expect(result).to be_success
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'lists repos' do
|
56
|
-
result = host.yum('repolist')
|
57
|
-
expect(result).to be_success
|
58
|
-
end
|
59
|
-
|
60
|
-
it 'lists installed repos' do
|
61
|
-
result = host.yum('repolist', repos: 'updates')
|
62
|
-
expect(result).to be_success
|
63
|
-
end
|
64
|
-
|
65
|
-
it 'searches a single package' do
|
66
|
-
result = host.yum('search', packages: 'curl')
|
67
|
-
expect(result).to be_success
|
68
|
-
end
|
69
|
-
|
70
|
-
it 'searches all packages' do
|
71
|
-
result = host.yum('search', all: true, packages: %w[curl ffmpeg])
|
72
|
-
expect(result).to be_success
|
73
|
-
end
|
74
|
-
|
75
|
-
it 'installs a package' do
|
76
|
-
host.su('root')
|
77
|
-
result = host.yum('install', packages: %(ffmpeg curl))
|
78
|
-
expect(result).to be_success
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'removes installed packages' do
|
82
|
-
host.su('root')
|
83
|
-
result = host.yum('remove', packages: ['ffmpeg'])
|
84
|
-
expect(result).to be_success
|
85
|
-
end
|
86
|
-
|
87
|
-
it 'purges installed packages' do
|
88
|
-
host.su('root')
|
89
|
-
result = host.yum('erase', packages: ['ffmpeg'])
|
90
|
-
expect(result).to be_success
|
91
|
-
end
|
92
|
-
|
93
|
-
it 'gets info for one package' do
|
94
|
-
host.su('root')
|
95
|
-
result = host.yum('info', packages: 'yum')
|
96
|
-
expect(result).to be_success
|
97
|
-
end
|
98
|
-
|
99
|
-
it 'gets info for installed packages' do
|
100
|
-
host.su('root')
|
101
|
-
result = host.yum('info', installed: true)
|
102
|
-
expect(result).to be_success
|
103
|
-
end
|
104
|
-
|
105
|
-
it 'cleans packages' do
|
106
|
-
host.su('root')
|
107
|
-
result = host.yum('clean', all: true)
|
108
|
-
expect(result).to be_success
|
109
|
-
end
|
110
|
-
|
111
|
-
it 'autoremoves packages' do
|
112
|
-
host.su('root')
|
113
|
-
result = host.yum('autoremove')
|
114
|
-
expect(result).to be_success
|
115
|
-
end
|
116
|
-
end
|
117
|
-
end
|
118
|
-
end
|