kanrisuru 0.11.1 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rspec +1 -1
- data/CHANGELOG.md +21 -0
- data/README.md +13 -88
- data/kanrisuru.gemspec +1 -0
- data/lib/kanrisuru/command.rb +7 -0
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -145
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -319
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -101
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -126
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -105
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -1015
- data/lib/kanrisuru/os_package/collection.rb +58 -0
- data/lib/kanrisuru/os_package/define.rb +34 -0
- data/lib/kanrisuru/os_package/include.rb +163 -0
- data/lib/kanrisuru/os_package.rb +3 -245
- data/lib/kanrisuru/remote/fstab.rb +1 -1
- data/lib/kanrisuru/result.rb +5 -4
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +2 -1
- data/spec/functional/core/mount_spec.rb +121 -0
- data/spec/functional/result_spec.rb +150 -0
- data/spec/{hosts.json → helper/hosts.json} +0 -0
- data/spec/helper/simplecov.rb +21 -0
- data/spec/helper/stub_network.rb +1 -1
- data/spec/helper/test_hosts.rb +12 -2
- data/spec/integration/core/apt/debian_spec.rb +9 -0
- data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
- data/spec/integration/core/archive/centos_spec.rb +9 -0
- data/spec/integration/core/archive/debian_spec.rb +9 -0
- data/spec/integration/core/archive/fedora_spec.rb +9 -0
- data/spec/integration/core/archive/opensuse_spec.rb +9 -0
- data/spec/integration/core/archive/rhel_spec.rb +9 -0
- data/spec/integration/core/archive/sles_spec.rb +9 -0
- data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
- data/spec/integration/core/disk/centos_spec.rb +9 -0
- data/spec/integration/core/disk/debian_spec.rb +9 -0
- data/spec/integration/core/disk/fedora_spec.rb +9 -0
- data/spec/integration/core/disk/opensuse_spec.rb +9 -0
- data/spec/integration/core/disk/rhel_spec.rb +9 -0
- data/spec/integration/core/disk/sles_spec.rb +9 -0
- data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
- data/spec/integration/core/dmi/centos_spec.rb +9 -0
- data/spec/integration/core/dmi/debian_spec.rb +9 -0
- data/spec/integration/core/dmi/fedora_spec.rb +9 -0
- data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
- data/spec/integration/core/dmi/rhel_spec.rb +9 -0
- data/spec/integration/core/dmi/sles_spec.rb +9 -0
- data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
- data/spec/integration/core/file/centos_spec.rb +9 -0
- data/spec/integration/core/file/debian_spec.rb +9 -0
- data/spec/integration/core/file/fedora_spec.rb +9 -0
- data/spec/integration/core/file/opensuse_spec.rb +9 -0
- data/spec/integration/core/file/rhel_spec.rb +9 -0
- data/spec/integration/core/file/sles_spec.rb +9 -0
- data/spec/integration/core/file/ubuntu_spec.rb +9 -0
- data/spec/integration/core/find/centos_spec.rb +9 -0
- data/spec/integration/core/find/debian_spec.rb +9 -0
- data/spec/integration/core/find/fedora_spec.rb +9 -0
- data/spec/integration/core/find/opensuse_spec.rb +9 -0
- data/spec/integration/core/find/rhel_spec.rb +9 -0
- data/spec/integration/core/find/sles_spec.rb +9 -0
- data/spec/integration/core/find/ubuntu_spec.rb +9 -0
- data/spec/integration/core/group/centos_spec.rb +9 -0
- data/spec/integration/core/group/debian_spec.rb +9 -0
- data/spec/integration/core/group/fedora_spec.rb +9 -0
- data/spec/integration/core/group/opensuse_spec.rb +9 -0
- data/spec/integration/core/group/rhel_spec.rb +9 -0
- data/spec/integration/core/group/sles_spec.rb +9 -0
- data/spec/integration/core/group/ubuntu_spec.rb +9 -0
- data/spec/integration/core/ip/centos_spec.rb +9 -0
- data/spec/integration/core/ip/debian_spec.rb +9 -0
- data/spec/integration/core/ip/fedora_spec.rb +9 -0
- data/spec/integration/core/ip/opensuse_spec.rb +9 -0
- data/spec/integration/core/ip/rhel_spec.rb +9 -0
- data/spec/integration/core/ip/sles_spec.rb +9 -0
- data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
- data/spec/integration/core/path/centos_spec.rb +9 -0
- data/spec/integration/core/path/debian_spec.rb +9 -0
- data/spec/integration/core/path/fedora_spec.rb +9 -0
- data/spec/integration/core/path/opensuse_spec.rb +9 -0
- data/spec/integration/core/path/rhel_spec.rb +9 -0
- data/spec/integration/core/path/sles_spec.rb +9 -0
- data/spec/integration/core/path/ubuntu_spec.rb +9 -0
- data/spec/integration/core/socket/centos_spec.rb +9 -0
- data/spec/integration/core/socket/debian_spec.rb +9 -0
- data/spec/integration/core/socket/fedora_spec.rb +9 -0
- data/spec/integration/core/socket/opensuse_spec.rb +9 -0
- data/spec/integration/core/socket/rhel_spec.rb +9 -0
- data/spec/integration/core/socket/sles_spec.rb +9 -0
- data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stat/centos_spec.rb +9 -0
- data/spec/integration/core/stat/debian_spec.rb +9 -0
- data/spec/integration/core/stat/fedora_spec.rb +9 -0
- data/spec/integration/core/stat/opensuse_spec.rb +9 -0
- data/spec/integration/core/stat/rhel_spec.rb +9 -0
- data/spec/integration/core/stat/sles_spec.rb +9 -0
- data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stream/centos_spec.rb +9 -0
- data/spec/integration/core/stream/debian_spec.rb +9 -0
- data/spec/integration/core/stream/fedora_spec.rb +9 -0
- data/spec/integration/core/stream/opensuse_spec.rb +9 -0
- data/spec/integration/core/stream/rhel_spec.rb +9 -0
- data/spec/integration/core/stream/sles_spec.rb +9 -0
- data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
- data/spec/integration/core/system/centos_spec.rb +9 -0
- data/spec/integration/core/system/debian_spec.rb +9 -0
- data/spec/integration/core/system/fedora_spec.rb +9 -0
- data/spec/integration/core/system/opensuse_spec.rb +9 -0
- data/spec/integration/core/system/rhel_spec.rb +9 -0
- data/spec/integration/core/system/sles_spec.rb +9 -0
- data/spec/integration/core/system/ubuntu_spec.rb +9 -0
- data/spec/integration/core/transfer/centos_spec.rb +9 -0
- data/spec/integration/core/transfer/debian_spec.rb +9 -0
- data/spec/integration/core/transfer/fedora_spec.rb +9 -0
- data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
- data/spec/integration/core/transfer/rhel_spec.rb +9 -0
- data/spec/integration/core/transfer/sles_spec.rb +9 -0
- data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
- data/spec/integration/core/user/centos_spec.rb +9 -0
- data/spec/integration/core/user/debian_spec.rb +9 -0
- data/spec/integration/core/user/fedora_spec.rb +9 -0
- data/spec/integration/core/user/opensuse_spec.rb +9 -0
- data/spec/integration/core/user/rhel_spec.rb +9 -0
- data/spec/integration/core/user/sles_spec.rb +9 -0
- data/spec/integration/core/user/ubuntu_spec.rb +9 -0
- data/spec/integration/core/yum/centos_spec.rb +9 -0
- data/spec/integration/core/yum/fedora_spec.rb +9 -0
- data/spec/integration/core/yum/rhel_spec.rb +9 -0
- data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
- data/spec/integration/core/zypper/sles_spec.rb +9 -0
- data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/cpu/centos_spec.rb +9 -0
- data/spec/integration/remote/cpu/debian_spec.rb +9 -0
- data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
- data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
- data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
- data/spec/integration/remote/cpu/sles_spec.rb +9 -0
- data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/env/centos_spec.rb +9 -0
- data/spec/integration/remote/env/debian_spec.rb +9 -0
- data/spec/integration/remote/env/fedora_spec.rb +9 -0
- data/spec/integration/remote/env/opensuse_spec.rb +9 -0
- data/spec/integration/remote/env/rhel_spec.rb +9 -0
- data/spec/integration/remote/env/sles_spec.rb +9 -0
- data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/fstab/centos_spec.rb +9 -0
- data/spec/integration/remote/fstab/debian_spec.rb +9 -0
- data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
- data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
- data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
- data/spec/integration/remote/fstab/sles_spec.rb +9 -0
- data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/host/centos_spec.rb +9 -0
- data/spec/integration/remote/host/debian_spec.rb +9 -0
- data/spec/integration/remote/host/fedora_spec.rb +9 -0
- data/spec/integration/remote/host/opensuse_spec.rb +9 -0
- data/spec/integration/remote/host/rhel_spec.rb +9 -0
- data/spec/integration/remote/host/sles_spec.rb +9 -0
- data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/memory/centos_spec.rb +9 -0
- data/spec/integration/remote/memory/debian_spec.rb +9 -0
- data/spec/integration/remote/memory/fedora_spec.rb +9 -0
- data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
- data/spec/integration/remote/memory/rhel_spec.rb +9 -0
- data/spec/integration/remote/memory/sles_spec.rb +9 -0
- data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/os/centos_spec.rb +9 -0
- data/spec/integration/remote/os/debian_spec.rb +9 -0
- data/spec/integration/remote/os/fedora_spec.rb +9 -0
- data/spec/integration/remote/os/opensuse_spec.rb +9 -0
- data/spec/integration/remote/os/rhel_spec.rb +9 -0
- data/spec/integration/remote/os/sles_spec.rb +9 -0
- data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
- data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
- data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
- data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
- data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
- data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
- data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
- data/spec/spec_helper.rb +4 -4
- data/spec/support/shared_examples/integration/core/apt.rb +117 -0
- data/spec/support/shared_examples/integration/core/archive.rb +221 -0
- data/spec/support/shared_examples/integration/core/disk.rb +91 -0
- data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
- data/spec/support/shared_examples/integration/core/file.rb +357 -0
- data/spec/support/shared_examples/integration/core/find.rb +50 -0
- data/spec/support/shared_examples/integration/core/group.rb +62 -0
- data/spec/support/shared_examples/integration/core/ip.rb +68 -0
- data/spec/support/shared_examples/integration/core/path.rb +90 -0
- data/spec/support/shared_examples/integration/core/socket.rb +27 -0
- data/spec/support/shared_examples/integration/core/stat.rb +95 -0
- data/spec/support/shared_examples/integration/core/stream.rb +112 -0
- data/spec/support/shared_examples/integration/core/system.rb +155 -0
- data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
- data/spec/support/shared_examples/integration/core/user.rb +72 -0
- data/spec/support/shared_examples/integration/core/yum.rb +115 -0
- data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
- data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
- data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
- data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
- data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
- data/spec/support/shared_examples/integration/remote/host.rb +65 -0
- data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
- data/spec/support/shared_examples/integration/remote/os.rb +60 -0
- data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
- data/spec/unit/command_spec.rb +18 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +433 -30
- data/spec/integration/core/apt_spec.rb +0 -120
- data/spec/integration/core/archive_spec.rb +0 -228
- data/spec/integration/core/disk_spec.rb +0 -94
- data/spec/integration/core/dmi_spec.rb +0 -37
- data/spec/integration/core/file_spec.rb +0 -368
- data/spec/integration/core/find_spec.rb +0 -53
- data/spec/integration/core/group_spec.rb +0 -65
- data/spec/integration/core/ip_spec.rb +0 -71
- data/spec/integration/core/path_spec.rb +0 -93
- data/spec/integration/core/socket_spec.rb +0 -31
- data/spec/integration/core/stat_spec.rb +0 -98
- data/spec/integration/core/stream_spec.rb +0 -117
- data/spec/integration/core/system_spec.rb +0 -143
- data/spec/integration/core/transfer_spec.rb +0 -108
- data/spec/integration/core/user_spec.rb +0 -76
- data/spec/integration/core/yum_spec.rb +0 -118
- data/spec/integration/core/zypper_spec.rb +0 -199
- data/spec/integration/remote/cpu_spec.rb +0 -41
- data/spec/integration/remote/env_spec.rb +0 -36
- data/spec/integration/remote/fstab_spec.rb +0 -92
- data/spec/integration/remote/host_spec.rb +0 -68
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -63
- data/spec/integration/remote/remote_file_spec.rb +0 -180
- data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module OsPackage
|
5
|
+
module Collection
|
6
|
+
def os_collection(mod, opts = {})
|
7
|
+
os_method_properties = mod.instance_variable_get(:@os_method_properties)
|
8
|
+
os_method_names = os_method_properties.keys
|
9
|
+
|
10
|
+
namespace = opts[:namespace]
|
11
|
+
namespace_instance = nil
|
12
|
+
|
13
|
+
if namespace
|
14
|
+
## Define the namespace as an eigen class instance on the host.
|
15
|
+
## Namespaced instances will access core host methods
|
16
|
+
## with @host instance variable.
|
17
|
+
|
18
|
+
if Kanrisuru::Remote::Cluster.instance_variable_defined?("@#{namespace}")
|
19
|
+
namespace_class = Kanrisuru::Remote::Cluster.const_get(Kanrisuru::Util.camelize(namespace))
|
20
|
+
namespace_instance = instance_variable_get("@#{namespace}")
|
21
|
+
else
|
22
|
+
namespace_class = Kanrisuru::Remote::Cluster.const_set(Kanrisuru::Util.camelize(namespace), Class.new)
|
23
|
+
namespace_instance = Kanrisuru::Remote::Cluster.instance_variable_set("@#{namespace}", namespace_class.new)
|
24
|
+
|
25
|
+
class_eval do
|
26
|
+
define_method namespace do
|
27
|
+
namespace_instance.instance_variable_set(:@cluster, self)
|
28
|
+
namespace_instance
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
namespace_class.class_eval do
|
34
|
+
os_method_names.each do |method_name|
|
35
|
+
define_method method_name do |*args, &block|
|
36
|
+
cluster = namespace_instance.instance_variable_get(:@cluster)
|
37
|
+
hosts = cluster.instance_variable_get(:@hosts)
|
38
|
+
hosts.map do |host_addr, host|
|
39
|
+
{ host: host_addr, result: host.send(namespace).send(method_name, *args, &block) }
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
else
|
45
|
+
class_eval do
|
46
|
+
os_method_names.each do |method_name|
|
47
|
+
define_method method_name do |*args, &block|
|
48
|
+
@hosts.map do |host_addr, host|
|
49
|
+
{ host: host_addr, result: host.send(method_name, *args, &block) }
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module OsPackage
|
5
|
+
module Define
|
6
|
+
def self.extended(base)
|
7
|
+
base.instance_variable_set(:@os_method_properties, {})
|
8
|
+
base.instance_variable_set(:@os_methods, Set.new)
|
9
|
+
end
|
10
|
+
|
11
|
+
def os_define(os_name, method_name, options = {})
|
12
|
+
unique_method_name = options[:alias] || method_name
|
13
|
+
|
14
|
+
@os_methods.add(method_name)
|
15
|
+
|
16
|
+
if @os_method_properties.key?(unique_method_name)
|
17
|
+
params = {
|
18
|
+
os_name: os_name.to_s,
|
19
|
+
method_name: method_name,
|
20
|
+
options: options
|
21
|
+
}
|
22
|
+
|
23
|
+
@os_method_properties[unique_method_name].prepend(params)
|
24
|
+
else
|
25
|
+
@os_method_properties[unique_method_name] = [{
|
26
|
+
os_name: os_name.to_s,
|
27
|
+
method_name: method_name,
|
28
|
+
options: options
|
29
|
+
}]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module OsPackage
|
5
|
+
module Include
|
6
|
+
def os_include(mod, opts = {})
|
7
|
+
os_method_properties = mod.instance_variable_get(:@os_method_properties)
|
8
|
+
os_method_names = os_method_properties.keys
|
9
|
+
|
10
|
+
## Need to encapsulate any helper methods called in the module
|
11
|
+
## to bind to the host instance. This acts as a psudeo module include.
|
12
|
+
os_methods = mod.instance_variable_get(:@os_methods)
|
13
|
+
|
14
|
+
public_methods = mod.instance_methods(false) - os_methods.to_a
|
15
|
+
private_methods = mod.private_instance_methods(false)
|
16
|
+
protected_methods = mod.protected_instance_methods(false)
|
17
|
+
include_methods = (public_methods + protected_methods + private_methods).flatten
|
18
|
+
|
19
|
+
include_method_bindings = proc do
|
20
|
+
include_methods.each do |method_name|
|
21
|
+
define_method method_name do |*args, &block|
|
22
|
+
unbound_method = mod.instance_method(method_name)
|
23
|
+
bind_method(unbound_method, *args, &block)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private_methods.each { |method_name| private(method_name) }
|
28
|
+
protected_methods.each { |method_name| protected(method_name) }
|
29
|
+
|
30
|
+
private
|
31
|
+
if RUBY_VERSION < '2.7'
|
32
|
+
define_method 'bind_method' do |unbound_method, *args, &block|
|
33
|
+
unbound_method.bind(self).call(*args, &block)
|
34
|
+
end
|
35
|
+
else
|
36
|
+
define_method 'bind_method' do |unbound_method, *args, &block|
|
37
|
+
unbound_method.bind_call(self, *args, &block)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
namespace = opts[:namespace]
|
43
|
+
namespace_class = nil
|
44
|
+
namespace_instance = nil
|
45
|
+
|
46
|
+
if namespace
|
47
|
+
## Define the namespace as an eigen class instance within the host class.
|
48
|
+
## Namespaced instances will access core host methods
|
49
|
+
## with @host instance variable.
|
50
|
+
|
51
|
+
## Check to see if the namespace was defined. If so, additional methods will be appended to the
|
52
|
+
## existing namespace class definition, otherwise, a new namespace class and instance will be
|
53
|
+
## defined with the methods added.
|
54
|
+
if Kanrisuru::Remote::Host.instance_variable_defined?("@#{namespace}")
|
55
|
+
namespace_class = Kanrisuru::Remote::Host.const_get(Kanrisuru::Util.camelize(namespace))
|
56
|
+
namespace_instance = Kanrisuru::Remote::Host.instance_variable_get("@#{namespace}")
|
57
|
+
else
|
58
|
+
namespace_class = Kanrisuru::Remote::Host.const_set(Kanrisuru::Util.camelize(namespace), Class.new)
|
59
|
+
namespace_instance = Kanrisuru::Remote::Host.instance_variable_set("@#{namespace}", namespace_class.new)
|
60
|
+
|
61
|
+
class_eval do
|
62
|
+
define_method namespace do
|
63
|
+
namespace_instance.instance_variable_set(:@host, self)
|
64
|
+
namespace_instance
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
namespace_class.class_eval(&include_method_bindings)
|
70
|
+
else
|
71
|
+
class_eval(&include_method_bindings)
|
72
|
+
end
|
73
|
+
|
74
|
+
class_eval do
|
75
|
+
os_method_names.each do |method_name|
|
76
|
+
if namespace
|
77
|
+
namespace_class.class_eval do
|
78
|
+
define_method method_name do |*args, &block|
|
79
|
+
unbound_method = nil
|
80
|
+
|
81
|
+
host = namespace_instance.instance_variable_get(:@host)
|
82
|
+
os_method_cache = host.instance_variable_get(:@os_method_cache) || {}
|
83
|
+
|
84
|
+
if os_method_cache.key?("#{namespace}.#{method_name}")
|
85
|
+
unbound_method = os_method_cache["#{namespace}.#{method_name}"]
|
86
|
+
else
|
87
|
+
## Find the correct method to resolve based on the OS for the remote host.
|
88
|
+
defined_method_name = host.resolve_os_method_name(os_method_properties, method_name)
|
89
|
+
unless defined_method_name
|
90
|
+
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}"
|
91
|
+
end
|
92
|
+
|
93
|
+
## Get reference to the unbound method defined in module
|
94
|
+
unbound_method = mod.instance_method(defined_method_name)
|
95
|
+
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless unbound_method
|
96
|
+
|
97
|
+
## Cache the unbound method on this host instance for faster resolution on
|
98
|
+
## the next invocation of this method
|
99
|
+
os_method_cache["#{namespace}.#{method_name}"] = unbound_method
|
100
|
+
host.instance_variable_set(:@os_method_cache, os_method_cache)
|
101
|
+
end
|
102
|
+
|
103
|
+
## Bind the method to host instance and
|
104
|
+
## call it with args and block
|
105
|
+
bind_method(unbound_method, *args, &block)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
else
|
109
|
+
define_method method_name do |*args, &block|
|
110
|
+
unbound_method = nil
|
111
|
+
|
112
|
+
host = self
|
113
|
+
os_method_cache = host.instance_variable_get(:@os_method_cache) || {}
|
114
|
+
|
115
|
+
if os_method_cache.key?(method_name)
|
116
|
+
unbound_method = os_method_cache[method_name]
|
117
|
+
else
|
118
|
+
## Find the correct method to resolve based on the OS for the remote host.
|
119
|
+
defined_method_name = host.resolve_os_method_name(os_method_properties, method_name)
|
120
|
+
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless defined_method_name
|
121
|
+
|
122
|
+
## Get reference to the unbound method defined in module
|
123
|
+
unbound_method = mod.instance_method(defined_method_name)
|
124
|
+
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless unbound_method
|
125
|
+
|
126
|
+
## Cache the unbound method on this host instance for faster resolution on
|
127
|
+
## the next invocation of this method
|
128
|
+
os_method_cache[method_name] = unbound_method
|
129
|
+
host.instance_variable_set(:@os_method_cache, os_method_cache)
|
130
|
+
end
|
131
|
+
|
132
|
+
## Bind the method to host instance and
|
133
|
+
## call it with args and block
|
134
|
+
bind_method(unbound_method, *args, &block)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def resolve_os_method_name(properties, method_name)
|
140
|
+
kernel = os.kernel.downcase
|
141
|
+
release = os.release.downcase
|
142
|
+
|
143
|
+
properties[method_name].each do |property|
|
144
|
+
os_name = property[:os_name]
|
145
|
+
strict = property[:options] ? property[:options][:strict] : false
|
146
|
+
except = property[:options] ? property[:options][:except] : ''
|
147
|
+
|
148
|
+
next if except && (except == release || except.include?(release))
|
149
|
+
|
150
|
+
if release == os_name || kernel == os_name ||
|
151
|
+
(Kanrisuru::Util::OsFamily.family_include_distribution?(os_name, release) && !strict) ||
|
152
|
+
(Kanrisuru::Util::OsFamily.upstream_include_distribution?(os_name, release) && !strict)
|
153
|
+
return property[:method_name]
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
nil
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
data/lib/kanrisuru/os_package.rb
CHANGED
@@ -1,247 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
module OsPackage
|
7
|
-
module Define
|
8
|
-
def self.extended(base)
|
9
|
-
base.instance_variable_set(:@os_method_properties, {})
|
10
|
-
base.instance_variable_set(:@os_methods, Set.new)
|
11
|
-
end
|
12
|
-
|
13
|
-
def os_define(os_name, method_name, options = {})
|
14
|
-
unique_method_name = options[:alias] || method_name
|
15
|
-
|
16
|
-
@os_methods.add(method_name)
|
17
|
-
|
18
|
-
if @os_method_properties.key?(unique_method_name)
|
19
|
-
params = {
|
20
|
-
os_name: os_name.to_s,
|
21
|
-
method_name: method_name,
|
22
|
-
options: options
|
23
|
-
}
|
24
|
-
|
25
|
-
@os_method_properties[unique_method_name].prepend(params)
|
26
|
-
else
|
27
|
-
@os_method_properties[unique_method_name] = [{
|
28
|
-
os_name: os_name.to_s,
|
29
|
-
method_name: method_name,
|
30
|
-
options: options
|
31
|
-
}]
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
module Collection
|
37
|
-
def os_collection(mod, opts = {})
|
38
|
-
os_method_properties = mod.instance_variable_get(:@os_method_properties)
|
39
|
-
os_method_names = os_method_properties.keys
|
40
|
-
|
41
|
-
namespace = opts[:namespace]
|
42
|
-
namespace_instance = nil
|
43
|
-
|
44
|
-
if namespace
|
45
|
-
## Define the namespace as an eigen class instance on the host.
|
46
|
-
## Namespaced instances will access core host methods
|
47
|
-
## with @host instance variable.
|
48
|
-
|
49
|
-
if Kanrisuru::Remote::Cluster.instance_variable_defined?("@#{namespace}")
|
50
|
-
namespace_class = Kanrisuru::Remote::Cluster.const_get(Kanrisuru::Util.camelize(namespace))
|
51
|
-
namespace_instance = instance_variable_get("@#{namespace}")
|
52
|
-
else
|
53
|
-
namespace_class = Kanrisuru::Remote::Cluster.const_set(Kanrisuru::Util.camelize(namespace), Class.new)
|
54
|
-
namespace_instance = Kanrisuru::Remote::Cluster.instance_variable_set("@#{namespace}", namespace_class.new)
|
55
|
-
|
56
|
-
class_eval do
|
57
|
-
define_method namespace do
|
58
|
-
namespace_instance.instance_variable_set(:@cluster, self)
|
59
|
-
namespace_instance
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
namespace_class.class_eval do
|
65
|
-
os_method_names.each do |method_name|
|
66
|
-
define_method method_name do |*args, &block|
|
67
|
-
cluster = namespace_instance.instance_variable_get(:@cluster)
|
68
|
-
hosts = cluster.instance_variable_get(:@hosts)
|
69
|
-
hosts.map do |host_addr, host|
|
70
|
-
{ host: host_addr, result: host.send(namespace).send(method_name, *args, &block) }
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
75
|
-
else
|
76
|
-
class_eval do
|
77
|
-
os_method_names.each do |method_name|
|
78
|
-
define_method method_name do |*args, &block|
|
79
|
-
@hosts.map do |host_addr, host|
|
80
|
-
{ host: host_addr, result: host.send(method_name, *args, &block) }
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
module Include
|
90
|
-
def os_include(mod, opts = {})
|
91
|
-
os_method_properties = mod.instance_variable_get(:@os_method_properties)
|
92
|
-
os_method_names = os_method_properties.keys
|
93
|
-
|
94
|
-
## Need to encapsulate any helper methods called in the module
|
95
|
-
## to bind to the host instance. This acts as a psudeo module include.
|
96
|
-
os_methods = mod.instance_variable_get(:@os_methods)
|
97
|
-
|
98
|
-
public_methods = mod.instance_methods(false) - os_methods.to_a
|
99
|
-
private_methods = mod.private_instance_methods(false)
|
100
|
-
protected_methods = mod.protected_instance_methods(false)
|
101
|
-
include_methods = (public_methods + protected_methods + private_methods).flatten
|
102
|
-
|
103
|
-
include_method_bindings = proc do
|
104
|
-
include_methods.each do |method_name|
|
105
|
-
define_method method_name do |*args, &block|
|
106
|
-
unbound_method = mod.instance_method(method_name)
|
107
|
-
bind_method(unbound_method, *args, &block)
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
private_methods.each { |method_name| private(method_name) }
|
112
|
-
protected_methods.each { |method_name| protected(method_name) }
|
113
|
-
|
114
|
-
private
|
115
|
-
if RUBY_VERSION < '2.7'
|
116
|
-
define_method 'bind_method' do |unbound_method, *args, &block|
|
117
|
-
unbound_method.bind(self).call(*args, &block)
|
118
|
-
end
|
119
|
-
else
|
120
|
-
define_method 'bind_method' do |unbound_method, *args, &block|
|
121
|
-
unbound_method.bind_call(self, *args, &block)
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
namespace = opts[:namespace]
|
127
|
-
namespace_class = nil
|
128
|
-
namespace_instance = nil
|
129
|
-
|
130
|
-
if namespace
|
131
|
-
## Define the namespace as an eigen class instance within the host class.
|
132
|
-
## Namespaced instances will access core host methods
|
133
|
-
## with @host instance variable.
|
134
|
-
|
135
|
-
## Check to see if the namespace was defined. If so, additional methods will be appended to the
|
136
|
-
## existing namespace class definition, otherwise, a new namespace class and instance will be
|
137
|
-
## defined with the methods added.
|
138
|
-
if Kanrisuru::Remote::Host.instance_variable_defined?("@#{namespace}")
|
139
|
-
namespace_class = Kanrisuru::Remote::Host.const_get(Kanrisuru::Util.camelize(namespace))
|
140
|
-
namespace_instance = Kanrisuru::Remote::Host.instance_variable_get("@#{namespace}")
|
141
|
-
else
|
142
|
-
namespace_class = Kanrisuru::Remote::Host.const_set(Kanrisuru::Util.camelize(namespace), Class.new)
|
143
|
-
namespace_instance = Kanrisuru::Remote::Host.instance_variable_set("@#{namespace}", namespace_class.new)
|
144
|
-
|
145
|
-
class_eval do
|
146
|
-
define_method namespace do
|
147
|
-
namespace_instance.instance_variable_set(:@host, self)
|
148
|
-
namespace_instance
|
149
|
-
end
|
150
|
-
end
|
151
|
-
end
|
152
|
-
|
153
|
-
namespace_class.class_eval(&include_method_bindings)
|
154
|
-
else
|
155
|
-
class_eval(&include_method_bindings)
|
156
|
-
end
|
157
|
-
|
158
|
-
class_eval do
|
159
|
-
os_method_names.each do |method_name|
|
160
|
-
if namespace
|
161
|
-
namespace_class.class_eval do
|
162
|
-
define_method method_name do |*args, &block|
|
163
|
-
unbound_method = nil
|
164
|
-
|
165
|
-
host = namespace_instance.instance_variable_get(:@host)
|
166
|
-
os_method_cache = host.instance_variable_get(:@os_method_cache) || {}
|
167
|
-
|
168
|
-
if os_method_cache.key?("#{namespace}.#{method_name}")
|
169
|
-
unbound_method = os_method_cache["#{namespace}.#{method_name}"]
|
170
|
-
else
|
171
|
-
## Find the correct method to resolve based on the OS for the remote host.
|
172
|
-
defined_method_name = host.resolve_os_method_name(os_method_properties, method_name)
|
173
|
-
unless defined_method_name
|
174
|
-
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}"
|
175
|
-
end
|
176
|
-
|
177
|
-
## Get reference to the unbound method defined in module
|
178
|
-
unbound_method = mod.instance_method(defined_method_name)
|
179
|
-
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless unbound_method
|
180
|
-
|
181
|
-
## Cache the unbound method on this host instance for faster resolution on
|
182
|
-
## the next invocation of this method
|
183
|
-
os_method_cache["#{namespace}.#{method_name}"] = unbound_method
|
184
|
-
host.instance_variable_set(:@os_method_cache, os_method_cache)
|
185
|
-
end
|
186
|
-
|
187
|
-
## Bind the method to host instance and
|
188
|
-
## call it with args and block
|
189
|
-
bind_method(unbound_method, *args, &block)
|
190
|
-
end
|
191
|
-
end
|
192
|
-
else
|
193
|
-
define_method method_name do |*args, &block|
|
194
|
-
unbound_method = nil
|
195
|
-
|
196
|
-
host = self
|
197
|
-
os_method_cache = host.instance_variable_get(:@os_method_cache) || {}
|
198
|
-
|
199
|
-
if os_method_cache.key?(method_name)
|
200
|
-
unbound_method = os_method_cache[method_name]
|
201
|
-
else
|
202
|
-
## Find the correct method to resolve based on the OS for the remote host.
|
203
|
-
defined_method_name = host.resolve_os_method_name(os_method_properties, method_name)
|
204
|
-
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless defined_method_name
|
205
|
-
|
206
|
-
## Get reference to the unbound method defined in module
|
207
|
-
unbound_method = mod.instance_method(defined_method_name)
|
208
|
-
raise NoMethodError, "undefined method `#{method_name}' for #{self.class}" unless unbound_method
|
209
|
-
|
210
|
-
## Cache the unbound method on this host instance for faster resolution on
|
211
|
-
## the next invocation of this method
|
212
|
-
os_method_cache[method_name] = unbound_method
|
213
|
-
host.instance_variable_set(:@os_method_cache, os_method_cache)
|
214
|
-
end
|
215
|
-
|
216
|
-
## Bind the method to host instance and
|
217
|
-
## call it with args and block
|
218
|
-
bind_method(unbound_method, *args, &block)
|
219
|
-
end
|
220
|
-
end
|
221
|
-
end
|
222
|
-
|
223
|
-
def resolve_os_method_name(properties, method_name)
|
224
|
-
kernel = os.kernel.downcase
|
225
|
-
release = os.release.downcase
|
226
|
-
|
227
|
-
properties[method_name].each do |property|
|
228
|
-
os_name = property[:os_name]
|
229
|
-
strict = property[:options] ? property[:options][:strict] : false
|
230
|
-
except = property[:options] ? property[:options][:except] : ''
|
231
|
-
|
232
|
-
next if except && (except == release || except.include?(release))
|
233
|
-
|
234
|
-
if release == os_name || kernel == os_name ||
|
235
|
-
(Kanrisuru::Util::OsFamily.family_include_distribution?(os_name, release) && !strict) ||
|
236
|
-
(Kanrisuru::Util::OsFamily.upstream_include_distribution?(os_name, release) && !strict)
|
237
|
-
return property[:method_name]
|
238
|
-
end
|
239
|
-
end
|
240
|
-
|
241
|
-
nil
|
242
|
-
end
|
243
|
-
end
|
244
|
-
end
|
245
|
-
end
|
246
|
-
end
|
247
|
-
end
|
3
|
+
require_relative 'os_package/collection'
|
4
|
+
require_relative 'os_package/define'
|
5
|
+
require_relative 'os_package/include'
|
@@ -161,7 +161,7 @@ module Kanrisuru
|
|
161
161
|
|
162
162
|
if Kanrisuru::Util.present?(@line) && @line.instance_of?(String)
|
163
163
|
parse_line!
|
164
|
-
elsif Kanrisuru::Util.present?(@opts) && @opts.instance_of?(String) || @opts.instance_of?(Hash)
|
164
|
+
elsif (Kanrisuru::Util.present?(@opts) && @opts.instance_of?(String)) || @opts.instance_of?(Hash)
|
165
165
|
@opts = Kanrisuru::Remote::Fstab::Options.new(@type, @opts)
|
166
166
|
end
|
167
167
|
end
|
data/lib/kanrisuru/result.rb
CHANGED
@@ -40,13 +40,14 @@ module Kanrisuru
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def to_i
|
43
|
-
|
43
|
+
case @data
|
44
|
+
when Integer
|
44
45
|
@data
|
45
|
-
|
46
|
+
when String
|
46
47
|
@data.to_i
|
47
|
-
|
48
|
+
when Array
|
48
49
|
@data.map(&:to_i)
|
49
|
-
|
50
|
+
when NilClass
|
50
51
|
nil
|
51
52
|
else
|
52
53
|
raise NoMethodError, "(undefined method `to_i' for Kanrisuru::Result)"
|
data/lib/kanrisuru/version.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
|
-
RSpec.describe Kanrisuru::Core::
|
5
|
+
RSpec.describe Kanrisuru::Core::Archive do
|
6
6
|
before(:all) do
|
7
7
|
StubNetwork.stub!
|
8
8
|
StubNetwork.stub_command!(:realpath) do |_args|
|
@@ -141,6 +141,7 @@ RSpec.describe Kanrisuru::Core::Apt do
|
|
141
141
|
%w[diff compare d].each do |action_variant|
|
142
142
|
expect_command(host.tar(action_variant, 'archive.tar', directory: directory),
|
143
143
|
'tar --restrict -C /home/ubuntu/dir -f archive.tar -d')
|
144
|
+
|
144
145
|
expect_command(host.tar(action_variant, 'archive.tar',
|
145
146
|
directory: directory,
|
146
147
|
occurrence: 4),
|
@@ -0,0 +1,121 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe Kanrisuru::Core::Mount do
|
6
|
+
before(:all) do
|
7
|
+
StubNetwork.stub!
|
8
|
+
end
|
9
|
+
|
10
|
+
after(:all) do
|
11
|
+
StubNetwork.unstub!
|
12
|
+
end
|
13
|
+
|
14
|
+
let(:host) do
|
15
|
+
Kanrisuru::Remote::Host.new(
|
16
|
+
host: 'localhost',
|
17
|
+
username: 'ubuntu',
|
18
|
+
keys: ['id_rsa']
|
19
|
+
)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'prepares mount command' do
|
23
|
+
expect_command(host.mount, 'mount')
|
24
|
+
expect_command(host.mount(bind_old: '/mnt/dira', bind_new: '/mnt/dirb'), 'mount --bind /mnt/dira /mnt/dirb')
|
25
|
+
expect_command(host.mount(rbind_old: '/mnt/dira', rbind_new: '/mnt/dirb'), 'mount --rbind /mnt/dira /mnt/dirb')
|
26
|
+
expect_command(host.mount(move_old: '/mnt/dira', move_new: '/mnt/dirb'), 'mount --move /mnt/dira /mnt/dirb')
|
27
|
+
expect_command(host.mount(
|
28
|
+
label: 'cloudimg-rootfs',
|
29
|
+
uuid: '5fbaea960d09e2ad',
|
30
|
+
sloppy: true,
|
31
|
+
internal_only: true,
|
32
|
+
fake: true,
|
33
|
+
no_mtab: true,
|
34
|
+
no_canonicalize: true,
|
35
|
+
device: '/dev/vda9',
|
36
|
+
directory: '/mnt/dir1'
|
37
|
+
), 'mount -L cloudimg-rootfs -U 5fbaea960d09e2ad -f -i -s --no-mtab --no-canonicalize /dev/vda9 /mnt/dir1')
|
38
|
+
|
39
|
+
expect_command(host.mount(
|
40
|
+
fs_opts: { async: true, auto: true, group: true, relatime: true, owner: true },
|
41
|
+
device: '/dev/tty',
|
42
|
+
directory: '/mnt/dir2'
|
43
|
+
), 'mount -o async,auto,group,relatime,owner /dev/tty /mnt/dir2')
|
44
|
+
|
45
|
+
expect do
|
46
|
+
host.mount(fs_opts: { value: true }, device: '/home/ubuntu/dir', directory: '/mnt/dir3')
|
47
|
+
end.to raise_error(ArgumentError)
|
48
|
+
|
49
|
+
expect_command(host.mount(
|
50
|
+
type: 'ext2',
|
51
|
+
device: '/dev/tty',
|
52
|
+
directory: '/mnt/dir2'
|
53
|
+
), 'mount -t ext2 /dev/tty /mnt/dir2')
|
54
|
+
|
55
|
+
expect_command(host.mount(
|
56
|
+
type: 'ext4',
|
57
|
+
fs_opts: { acl: true, journal: 'update', usrquota: true, async: true, owner: true, group: true },
|
58
|
+
device: '/dev/tty',
|
59
|
+
directory: '/mnt/dir2'
|
60
|
+
), 'mount -t ext4 -o acl,journal=update,usrquota,async,owner,group /dev/tty /mnt/dir2')
|
61
|
+
|
62
|
+
expect_command(host.mount(type: 'nontfs,xfs', all: true), 'mount -t nontfs,xfs -a')
|
63
|
+
expect_command(host.mount(type: 'fat,xfs', all: true), 'mount -t fat,xfs -a')
|
64
|
+
|
65
|
+
expect do
|
66
|
+
host.mount(
|
67
|
+
type: 'ext2',
|
68
|
+
fs_opts: { acl: true, journal: 'update', usrquota: true, async: true, owner: true, group: true },
|
69
|
+
device: '/dev/tty',
|
70
|
+
directory: '/mnt/dir2'
|
71
|
+
)
|
72
|
+
end.to raise_error(ArgumentError)
|
73
|
+
|
74
|
+
expect do
|
75
|
+
host.mount(
|
76
|
+
type: 'ext4',
|
77
|
+
fs_opts: { acl: true, journal: true, usrquota: true, async: true, owner: true, group: true },
|
78
|
+
device: '/dev/tty',
|
79
|
+
directory: '/mnt/dir2'
|
80
|
+
)
|
81
|
+
end.to raise_error(ArgumentError)
|
82
|
+
|
83
|
+
expect_command(host.mount(all: true, test_opts: { _netdev: true }), 'mount -a -O _netdev')
|
84
|
+
expect_command(host.mount(all: true, test_opts: { async: true, blocksize: 512, uid: 0, gid: 0, dots: true }, type: 'fat'),
|
85
|
+
'mount -t fat -a -O async,blocksize=512,uid=0,gid=0,dots')
|
86
|
+
|
87
|
+
expect_command(host.mount(
|
88
|
+
type: 'loop',
|
89
|
+
fs_opts: { loop: '/dev/loop3' },
|
90
|
+
device: '/mnt',
|
91
|
+
directory: '/tmp/fdimage'
|
92
|
+
),
|
93
|
+
'mount -t loop -o loop=/dev/loop3 /mnt /tmp/fdimage')
|
94
|
+
end
|
95
|
+
|
96
|
+
it 'prepares umount command' do
|
97
|
+
expect_command(host.umount, 'umount')
|
98
|
+
expect_command(host.umount(
|
99
|
+
fake: true,
|
100
|
+
no_canonicalize: true,
|
101
|
+
no_mtab: true,
|
102
|
+
fail_remount_readonly: true,
|
103
|
+
free_loopback: true,
|
104
|
+
lazy: true,
|
105
|
+
force: true,
|
106
|
+
device: '/dev/vda1'
|
107
|
+
),
|
108
|
+
'umount --fake --no-canonicalize -n -r -d -l -f /dev/vda1')
|
109
|
+
|
110
|
+
expect_command(host.umount(
|
111
|
+
all: true,
|
112
|
+
type: 'ext4,nofat'
|
113
|
+
), 'umount -a -t ext4,nofat')
|
114
|
+
|
115
|
+
expect_command(host.umount(
|
116
|
+
all: true,
|
117
|
+
type: 'ext4',
|
118
|
+
test_opts: { barrier: 1, nouid32: true }
|
119
|
+
), 'umount -a -t ext4 -O barrier=1,nouid32')
|
120
|
+
end
|
121
|
+
end
|