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,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Mount
|
6
|
+
def mount(opts = {})
|
7
|
+
type = opts[:type]
|
8
|
+
|
9
|
+
bind_old = opts[:bind_old]
|
10
|
+
bind_new = opts[:bind_new]
|
11
|
+
rbind_old = opts[:rbind_old]
|
12
|
+
rbind_new = opts[:rbind_new]
|
13
|
+
move_old = opts[:move_old]
|
14
|
+
move_new = opts[:move_new]
|
15
|
+
fs_opts = opts[:fs_opts]
|
16
|
+
|
17
|
+
command = Kanrisuru::Command.new('mount')
|
18
|
+
|
19
|
+
if Kanrisuru::Util.present?(bind_old) && Kanrisuru::Util.present?(bind_new)
|
20
|
+
command.append_flag('--bind')
|
21
|
+
command << bind_old
|
22
|
+
command << bind_new
|
23
|
+
elsif Kanrisuru::Util.present?(rbind_old) && Kanrisuru::Util.present?(rbind_new)
|
24
|
+
command.append_flag('--rbind')
|
25
|
+
command << rbind_old
|
26
|
+
command << rbind_new
|
27
|
+
elsif Kanrisuru::Util.present?(move_old) && Kanrisuru::Util.present?(move_new)
|
28
|
+
command.append_flag('--move')
|
29
|
+
command << move_old
|
30
|
+
command << move_new
|
31
|
+
else
|
32
|
+
command.append_arg('-L', opts[:label])
|
33
|
+
command.append_arg('-U', opts[:uuid])
|
34
|
+
command.append_flag('-f', opts[:fake])
|
35
|
+
command.append_flag('-i', opts[:internal_only])
|
36
|
+
command.append_flag('-s', opts[:sloppy])
|
37
|
+
|
38
|
+
command.append_flag('--no-mtab', opts[:no_mtab])
|
39
|
+
command.append_flag('--no-canonicalize', opts[:no_canonicalize])
|
40
|
+
|
41
|
+
fs_options = nil
|
42
|
+
if Kanrisuru::Util.present?(type)
|
43
|
+
add_type(command, type)
|
44
|
+
fs_options = Kanrisuru::Remote::Fstab::Options.new(type, fs_opts) if fs_opts
|
45
|
+
elsif fs_opts
|
46
|
+
fs_options = Kanrisuru::Remote::Fstab::Options.new('common', fs_opts)
|
47
|
+
end
|
48
|
+
|
49
|
+
if Kanrisuru::Util.present?(opts[:all])
|
50
|
+
command.append_flag('-a')
|
51
|
+
add_test_opts(command, opts[:test_opts], type)
|
52
|
+
else
|
53
|
+
command.append_arg('-o', fs_options.to_s)
|
54
|
+
|
55
|
+
command << opts[:device] if Kanrisuru::Util.present?(opts[:device])
|
56
|
+
command << opts[:directory] if Kanrisuru::Util.present?(opts[:directory])
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
execute_shell(command)
|
61
|
+
Kanrisuru::Result.new(command)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Mount
|
6
|
+
def umount(opts = {})
|
7
|
+
all = opts[:all]
|
8
|
+
type = opts[:type]
|
9
|
+
command = Kanrisuru::Command.new('umount')
|
10
|
+
|
11
|
+
command.append_flag('--fake', opts[:fake])
|
12
|
+
command.append_flag('--no-canonicalize', opts[:no_canonicalize])
|
13
|
+
command.append_flag('-n', opts[:no_mtab])
|
14
|
+
command.append_flag('-r', opts[:fail_remount_readonly])
|
15
|
+
command.append_flag('-d', opts[:free_loopback])
|
16
|
+
|
17
|
+
command.append_flag('-l', opts[:lazy])
|
18
|
+
command.append_flag('-f', opts[:force])
|
19
|
+
|
20
|
+
if Kanrisuru::Util.present?(all)
|
21
|
+
command.append_flag('-a')
|
22
|
+
add_type(command, type)
|
23
|
+
add_test_opts(command, opts[:test_opts], type)
|
24
|
+
else
|
25
|
+
command << opts[:device] if Kanrisuru::Util.present?(opts[:device])
|
26
|
+
command << opts[:directory] if Kanrisuru::Util.present?(opts[:directory])
|
27
|
+
end
|
28
|
+
|
29
|
+
execute_shell(command)
|
30
|
+
|
31
|
+
Kanrisuru::Result.new(command)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/mount'
|
4
|
+
require_relative 'commands/umount'
|
5
|
+
|
6
|
+
module Kanrisuru
|
7
|
+
module Core
|
8
|
+
module Mount
|
9
|
+
private
|
10
|
+
|
11
|
+
def add_type(command, type)
|
12
|
+
return unless Kanrisuru::Util.present?(type)
|
13
|
+
|
14
|
+
test_types = nil
|
15
|
+
|
16
|
+
if type.include?(',')
|
17
|
+
if type.include?('no')
|
18
|
+
test_types = type.gsub('no', '')
|
19
|
+
test_types = test_types.split(',')
|
20
|
+
else
|
21
|
+
test_types = type.split(',')
|
22
|
+
end
|
23
|
+
else
|
24
|
+
test_types = [type]
|
25
|
+
end
|
26
|
+
|
27
|
+
test_types.each do |t|
|
28
|
+
device_opts = Kanrisuru::Util::FsMountOpts.get_device(t)
|
29
|
+
raise ArgumentError, "Invalid fstype: #{t}" unless device_opts
|
30
|
+
end
|
31
|
+
|
32
|
+
command.append_arg('-t', type)
|
33
|
+
end
|
34
|
+
|
35
|
+
def add_test_opts(command, test_opts, type)
|
36
|
+
return unless Kanrisuru::Util.present?(test_opts)
|
37
|
+
|
38
|
+
test_options =
|
39
|
+
if Kanrisuru::Util.present?(type)
|
40
|
+
Kanrisuru::Remote::Fstab::Options.new(type, test_opts)
|
41
|
+
else
|
42
|
+
Kanrisuru::Remote::Fstab::Options.new('common', test_opts)
|
43
|
+
end
|
44
|
+
|
45
|
+
command.append_arg('-O', test_options.to_s)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/lib/kanrisuru/core/mount.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'mount/commands'
|
4
|
+
|
3
5
|
module Kanrisuru
|
4
6
|
module Core
|
5
7
|
module Mount
|
@@ -7,132 +9,6 @@ module Kanrisuru
|
|
7
9
|
|
8
10
|
os_define :linux, :mount
|
9
11
|
os_define :linux, :umount
|
10
|
-
|
11
|
-
def mount(opts = {})
|
12
|
-
type = opts[:type]
|
13
|
-
all = opts[:all]
|
14
|
-
device = opts[:device]
|
15
|
-
directory = opts[:directory]
|
16
|
-
|
17
|
-
bind_old = opts[:bind_old]
|
18
|
-
bind_new = opts[:bind_new]
|
19
|
-
rbind_old = opts[:rbind_old]
|
20
|
-
rbind_new = opts[:rbind_new]
|
21
|
-
move_old = opts[:move_old]
|
22
|
-
move_new = opts[:move_new]
|
23
|
-
fs_opts = opts[:fs_opts]
|
24
|
-
|
25
|
-
command = Kanrisuru::Command.new('mount')
|
26
|
-
|
27
|
-
if Kanrisuru::Util.present?(bind_old) && Kanrisuru::Util.present?(bind_new)
|
28
|
-
command.append_flag('--bind')
|
29
|
-
command << bind_old
|
30
|
-
command << bind_new
|
31
|
-
elsif Kanrisuru::Util.present?(rbind_old) && Kanrisuru::Util.present?(rbind_new)
|
32
|
-
command.append_flag('--rbind')
|
33
|
-
command << rbind_old
|
34
|
-
command << rbind_new
|
35
|
-
elsif Kanrisuru::Util.present?(move_old) && Kanrisuru::Util.present?(move_new)
|
36
|
-
command.append_flag('--move')
|
37
|
-
command << move_old
|
38
|
-
command << move_new
|
39
|
-
else
|
40
|
-
command.append_arg('-L', opts[:label])
|
41
|
-
command.append_arg('-U', opts[:uuid])
|
42
|
-
command.append_flag('-n', opts[:no_mtab])
|
43
|
-
command.append_flag('-f', opts[:fake])
|
44
|
-
command.append_flag('-i', opts[:internal_only])
|
45
|
-
command.append_flag('-s', opts[:sloppy])
|
46
|
-
|
47
|
-
command.append_flag('--no-mtab', opts[:no_mtab])
|
48
|
-
command.append_flag('--no-canonicalizeb', opts[:no_canonicalize])
|
49
|
-
|
50
|
-
fs_options = nil
|
51
|
-
if Kanrisuru::Util.present?(type)
|
52
|
-
add_type(command, type)
|
53
|
-
fs_options = Kanrisuru::Remote::Fstab::Options.new(type, fs_opts) if fs_opts
|
54
|
-
elsif fs_opts
|
55
|
-
fs_options = Kanrisuru::Remote::Fstab::Options.new('common', fs_opts)
|
56
|
-
end
|
57
|
-
|
58
|
-
if Kanrisuru::Util.present?(all)
|
59
|
-
command.append_flag('-a')
|
60
|
-
add_test_opts(command, opts[:test_opts], type)
|
61
|
-
else
|
62
|
-
command.append_arg('-o', fs_options.to_s)
|
63
|
-
|
64
|
-
command << device if Kanrisuru::Util.present?(device)
|
65
|
-
command << directory if Kanrisuru::Util.present?(directory)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
execute_shell(command)
|
70
|
-
Kanrisuru::Result.new(command)
|
71
|
-
end
|
72
|
-
|
73
|
-
def umount(opts = {})
|
74
|
-
all = opts[:all]
|
75
|
-
type = opts[:type]
|
76
|
-
command = Kanrisuru::Command.new('umount')
|
77
|
-
|
78
|
-
if Kanrisuru::Util.present?(all)
|
79
|
-
command.append_flag('-a')
|
80
|
-
add_type(command, type)
|
81
|
-
add_test_opts(command, opts[:test_opts], type)
|
82
|
-
end
|
83
|
-
|
84
|
-
command.append_flag('--fake', opts[:fake])
|
85
|
-
command.append_flag('--no-canonicalize', opts[:no_canonicalize])
|
86
|
-
command.append_flag('-n', opts[:no_mtab])
|
87
|
-
command.append_flag('-r', opts[:fail_remount_readonly])
|
88
|
-
command.append_flag('-d', opts[:free_loopback])
|
89
|
-
|
90
|
-
command.append_flag('-l', opts[:lazy])
|
91
|
-
command.append_flag('-f', opts[:force])
|
92
|
-
|
93
|
-
execute_shell(command)
|
94
|
-
|
95
|
-
Kanrisuru::Result.new(command)
|
96
|
-
end
|
97
|
-
|
98
|
-
private
|
99
|
-
|
100
|
-
def add_type(command, type)
|
101
|
-
return unless Kanrisuru::Util.present?(type)
|
102
|
-
|
103
|
-
test_types = nil
|
104
|
-
|
105
|
-
if type.include?(',')
|
106
|
-
if type.include?('no')
|
107
|
-
test_types = type.gsub('no', '')
|
108
|
-
test_types = test_types.split(',')
|
109
|
-
else
|
110
|
-
test_types = type.split(',')
|
111
|
-
end
|
112
|
-
else
|
113
|
-
test_types = [type]
|
114
|
-
end
|
115
|
-
|
116
|
-
test_types.each do |t|
|
117
|
-
device_opts = Kanrisuru::Util::FsMountOpts.get_device(t)
|
118
|
-
raise ArugmentError, "Invalid fstype: #{t}" unless device_opts
|
119
|
-
end
|
120
|
-
|
121
|
-
command.append_arg('-t', type)
|
122
|
-
end
|
123
|
-
|
124
|
-
def add_test_opts(command, test_opts, type)
|
125
|
-
return unless Kanrisuru::Util.present?(test_opts)
|
126
|
-
|
127
|
-
test_options =
|
128
|
-
if Kanrisuru::Util.present?(type)
|
129
|
-
Kanrisuru::Remote::Fstab::Options.new(type, test_opts)
|
130
|
-
else
|
131
|
-
Kanrisuru::Remote::Fstab::Options.new('common', test_opts)
|
132
|
-
end
|
133
|
-
|
134
|
-
command.append_arg('-O', test_options.to_s)
|
135
|
-
end
|
136
12
|
end
|
137
13
|
end
|
138
14
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def ls(opts = {})
|
7
|
+
path = opts[:path]
|
8
|
+
all = opts[:all]
|
9
|
+
id = opts[:id]
|
10
|
+
|
11
|
+
command = Kanrisuru::Command.new('ls')
|
12
|
+
command.append_flag('-i')
|
13
|
+
command.append_flag('-l')
|
14
|
+
command.append_flag('-a', all)
|
15
|
+
command.append_flag('-n', id)
|
16
|
+
|
17
|
+
command << (path || pwd.path)
|
18
|
+
execute_shell(command)
|
19
|
+
|
20
|
+
Kanrisuru::Result.new(command) do |cmd|
|
21
|
+
Parser::Ls.parse(cmd, id)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def pwd
|
7
|
+
command = Kanrisuru::Command.new('pwd')
|
8
|
+
execute_shell(command)
|
9
|
+
|
10
|
+
Kanrisuru::Result.new(command) do |cmd|
|
11
|
+
FilePath.new(cmd.to_s)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def readlink(path, opts = {})
|
7
|
+
command = Kanrisuru::Command.new('readlink')
|
8
|
+
command.append_flag('-f', opts[:canonicalize])
|
9
|
+
command.append_flag('-e', opts[:canonicalize_existing])
|
10
|
+
command.append_flag('-m', opts[:canonicalize_missing])
|
11
|
+
|
12
|
+
command << path
|
13
|
+
|
14
|
+
execute(command)
|
15
|
+
|
16
|
+
Kanrisuru::Result.new(command) do |cmd|
|
17
|
+
FilePath.new(cmd.to_s)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def realpath(path, opts = {})
|
7
|
+
command = Kanrisuru::Command.new("realpath #{path}")
|
8
|
+
command.append_flag('-s', opts[:strip])
|
9
|
+
|
10
|
+
execute(command)
|
11
|
+
|
12
|
+
Kanrisuru::Result.new(command) do |cmd|
|
13
|
+
FilePath.new(cmd.to_s)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def which(program, opts = {})
|
7
|
+
command = Kanrisuru::Command.new('which')
|
8
|
+
command.append_flag('-a', opts[:all])
|
9
|
+
command << program
|
10
|
+
|
11
|
+
execute_shell(command)
|
12
|
+
|
13
|
+
Kanrisuru::Result.new(command) do |cmd|
|
14
|
+
Parser::Which.parse(cmd)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
def whoami
|
7
|
+
command = Kanrisuru::Command.new('whoami')
|
8
|
+
execute_shell(command)
|
9
|
+
|
10
|
+
Kanrisuru::Result.new(command) do |cmd|
|
11
|
+
UserName.new(cmd.to_s)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
module Parser
|
7
|
+
class Ls
|
8
|
+
def self.parse(command, id)
|
9
|
+
items = []
|
10
|
+
rows = command.to_a
|
11
|
+
|
12
|
+
rows.each.with_index do |row, index|
|
13
|
+
next if index.zero?
|
14
|
+
|
15
|
+
values = row.split
|
16
|
+
date = DateTime.parse("#{values[6]} #{values[7]} #{values[8]}")
|
17
|
+
|
18
|
+
type = values[1].include?('d') ? 'directory' : 'file'
|
19
|
+
items <<
|
20
|
+
if id
|
21
|
+
Kanrisuru::Core::Path::FileInfo.new(
|
22
|
+
values[0].to_i,
|
23
|
+
Kanrisuru::Mode.new(values[1]),
|
24
|
+
values[2].to_i,
|
25
|
+
values[3].to_i,
|
26
|
+
values[4].to_i,
|
27
|
+
values[5].to_i,
|
28
|
+
date,
|
29
|
+
values[9],
|
30
|
+
type
|
31
|
+
)
|
32
|
+
else
|
33
|
+
Kanrisuru::Core::Path::FileInfo.new(
|
34
|
+
values[0].to_i,
|
35
|
+
Kanrisuru::Mode.new(values[1]),
|
36
|
+
values[2].to_i,
|
37
|
+
values[3],
|
38
|
+
values[4],
|
39
|
+
values[5].to_i,
|
40
|
+
date,
|
41
|
+
values[9],
|
42
|
+
type
|
43
|
+
)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
items
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
module Parser
|
7
|
+
class Which
|
8
|
+
def self.parse(command)
|
9
|
+
rows = command.to_a
|
10
|
+
rows.map do |row|
|
11
|
+
FilePath.new(row)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Path
|
6
|
+
FilePath = Struct.new(:path)
|
7
|
+
FileInfoId = Struct.new(:inode, :mode, :hard_links, :uid, :gid, :fsize, :date, :path, :type)
|
8
|
+
FileInfo = Struct.new(:inode, :mode, :hard_links, :owner, :group, :fsize, :date, :path, :type)
|
9
|
+
UserName = Struct.new(:user)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
data/lib/kanrisuru/core/path.rb
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
require_relative 'path/types'
|
6
|
+
require_relative 'path/parser'
|
7
|
+
require_relative 'path/commands'
|
8
|
+
|
5
9
|
module Kanrisuru
|
6
10
|
module Core
|
7
11
|
module Path
|
@@ -13,127 +17,6 @@ module Kanrisuru
|
|
13
17
|
os_define :linux, :readlink
|
14
18
|
os_define :linux, :whoami
|
15
19
|
os_define :linux, :which
|
16
|
-
|
17
|
-
FilePath = Struct.new(:path)
|
18
|
-
FileInfoId = Struct.new(:inode, :mode, :hard_links, :uid, :gid, :fsize, :date, :path, :type)
|
19
|
-
FileInfo = Struct.new(:inode, :mode, :hard_links, :owner, :group, :fsize, :date, :path, :type)
|
20
|
-
UserName = Struct.new(:user)
|
21
|
-
|
22
|
-
def ls(opts = {})
|
23
|
-
path = opts[:path]
|
24
|
-
all = opts[:all]
|
25
|
-
id = opts[:id]
|
26
|
-
|
27
|
-
command = Kanrisuru::Command.new('ls')
|
28
|
-
command.append_flag('-i')
|
29
|
-
command.append_flag('-l')
|
30
|
-
command.append_flag('-a', all)
|
31
|
-
command.append_flag('-n', id)
|
32
|
-
|
33
|
-
command << (path || pwd.path)
|
34
|
-
execute_shell(command)
|
35
|
-
|
36
|
-
Kanrisuru::Result.new(command) do |cmd|
|
37
|
-
items = []
|
38
|
-
rows = cmd.to_a
|
39
|
-
|
40
|
-
rows.each.with_index do |row, index|
|
41
|
-
next if index.zero?
|
42
|
-
|
43
|
-
values = row.split
|
44
|
-
date = DateTime.parse("#{values[6]} #{values[7]} #{values[8]}")
|
45
|
-
|
46
|
-
type = values[1].include?('d') ? 'directory' : 'file'
|
47
|
-
items <<
|
48
|
-
if id
|
49
|
-
FileInfo.new(
|
50
|
-
values[0].to_i,
|
51
|
-
Kanrisuru::Mode.new(values[1]),
|
52
|
-
values[2].to_i,
|
53
|
-
values[3].to_i,
|
54
|
-
values[4].to_i,
|
55
|
-
values[5].to_i,
|
56
|
-
date,
|
57
|
-
values[9],
|
58
|
-
type
|
59
|
-
)
|
60
|
-
else
|
61
|
-
FileInfo.new(
|
62
|
-
values[0].to_i,
|
63
|
-
Kanrisuru::Mode.new(values[1]),
|
64
|
-
values[2].to_i,
|
65
|
-
values[3],
|
66
|
-
values[4],
|
67
|
-
values[5].to_i,
|
68
|
-
date,
|
69
|
-
values[9],
|
70
|
-
type
|
71
|
-
)
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
items
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
def whoami
|
80
|
-
command = Kanrisuru::Command.new('whoami')
|
81
|
-
execute_shell(command)
|
82
|
-
|
83
|
-
Kanrisuru::Result.new(command) do |cmd|
|
84
|
-
UserName.new(cmd.to_s)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
def pwd
|
89
|
-
command = Kanrisuru::Command.new('pwd')
|
90
|
-
execute_shell(command)
|
91
|
-
|
92
|
-
Kanrisuru::Result.new(command) do |cmd|
|
93
|
-
FilePath.new(cmd.to_s)
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
def which(program, opts = {})
|
98
|
-
command = Kanrisuru::Command.new('which')
|
99
|
-
command.append_flag('-a', opts[:all])
|
100
|
-
command << program
|
101
|
-
|
102
|
-
execute_shell(command)
|
103
|
-
|
104
|
-
Kanrisuru::Result.new(command) do |cmd|
|
105
|
-
rows = cmd.to_a
|
106
|
-
rows.map do |row|
|
107
|
-
FilePath.new(row)
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
def realpath(path, opts = {})
|
113
|
-
command = Kanrisuru::Command.new("realpath #{path}")
|
114
|
-
command.append_flag('-s', opts[:strip])
|
115
|
-
|
116
|
-
execute(command)
|
117
|
-
|
118
|
-
Kanrisuru::Result.new(command) do |cmd|
|
119
|
-
FilePath.new(cmd.to_s)
|
120
|
-
end
|
121
|
-
end
|
122
|
-
|
123
|
-
def readlink(path, opts = {})
|
124
|
-
command = Kanrisuru::Command.new('readlink')
|
125
|
-
command.append_flag('-f', opts[:canonicalize])
|
126
|
-
command.append_flag('-e', opts[:canonicalize_existing])
|
127
|
-
command.append_flag('-m', opts[:canonicalize_missing])
|
128
|
-
|
129
|
-
command << path
|
130
|
-
|
131
|
-
execute(command)
|
132
|
-
|
133
|
-
Kanrisuru::Result.new(command) do |cmd|
|
134
|
-
FilePath.new(cmd.to_s)
|
135
|
-
end
|
136
|
-
end
|
137
20
|
end
|
138
21
|
end
|
139
22
|
end
|