netcron 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of netcron might be problematic. Click here for more details.
- package/.cache/replit/__replit_disk_meta.json +1 -0
- package/.cache/replit/nix/env.json +1 -0
- package/.config/configstore/update-notifier-npm.json +4 -0
- package/.config/configstore/update-notifier-npm.json.1735545094 +4 -0
- package/.config/nvm/.dockerignore +16 -0
- package/.config/nvm/.editorconfig +28 -0
- package/.config/nvm/.gitattributes +1 -0
- package/.config/nvm/.github/FUNDING.yml +12 -0
- package/.config/nvm/.github/ISSUE_TEMPLATE.md +44 -0
- package/.config/nvm/.github/SECURITY.md +3 -0
- package/.config/nvm/.github/workflows/latest-npm.yml +81 -0
- package/.config/nvm/.github/workflows/lint.yml +77 -0
- package/.config/nvm/.github/workflows/rebase.yml +23 -0
- package/.config/nvm/.github/workflows/release.yml +32 -0
- package/.config/nvm/.github/workflows/require-allow-edits.yml +21 -0
- package/.config/nvm/.github/workflows/shellcheck.yml +58 -0
- package/.config/nvm/.github/workflows/tests.yml +56 -0
- package/.config/nvm/.github/workflows/toc.yml +37 -0
- package/.config/nvm/.github/workflows/windows-npm.yml +134 -0
- package/.config/nvm/.mailmap +1 -0
- package/.config/nvm/.travis.yml +100 -0
- package/.config/nvm/CODE_OF_CONDUCT.md +125 -0
- package/.config/nvm/CONTRIBUTING.md +115 -0
- package/.config/nvm/Dockerfile +111 -0
- package/.config/nvm/GOVERNANCE.md +10 -0
- package/.config/nvm/LICENSE.md +22 -0
- package/.config/nvm/Makefile +85 -0
- package/.config/nvm/PROJECT_CHARTER.md +49 -0
- package/.config/nvm/README.md +1047 -0
- package/.config/nvm/ROADMAP.md +9 -0
- package/.config/nvm/bash_completion +99 -0
- package/.config/nvm/install.sh +479 -0
- package/.config/nvm/nvm-exec +17 -0
- package/.config/nvm/nvm.sh +4417 -0
- package/.config/nvm/package.json +51 -0
- package/.config/nvm/rename_test.sh +52 -0
- package/.config/nvm/test/common.sh +103 -0
- package/.config/nvm/test/fast/Aliases/'nvm alias' should not accept aliases with slashes +26 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should accept aliases when they shadow a built-in alias +17 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should not accept aliases with names equal to built-in alias +25 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should not accept aliases with slashes +26 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias /313/202aliasname/313/203 /313/202target/313/203' again should change the target" +24 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias /313/202aliasname/313/203' should list but one alias" +4 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' lists implicit aliases when they do not exist +26 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' lists manual aliases instead of implicit aliases when present +49 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' should list all aliases +48 -0
- package/.config/nvm/test/fast/Aliases/circular/nvm_resolve_alias +36 -0
- package/.config/nvm/test/fast/Aliases/circular/nvm_resolve_local_alias +36 -0
- package/.config/nvm/test/fast/Aliases/circular/setup +9 -0
- package/.config/nvm/test/fast/Aliases/circular/teardown +9 -0
- package/.config/nvm/test/fast/Aliases/lts/'nvm alias' should ensure LTS alias dir exists +18 -0
- package/.config/nvm/test/fast/Aliases/lts/setup_dir +10 -0
- package/.config/nvm/test/fast/Aliases/lts/teardown_dir +10 -0
- package/.config/nvm/test/fast/Aliases/nvm_ensure_default_set +20 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases calls nvm_get_colors +22 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases works with LTS aliases +31 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases works with no LTS aliases present +21 -0
- package/.config/nvm/test/fast/Aliases/nvm_print_alias_path calls nvm_get_colors +28 -0
- package/.config/nvm/test/fast/Aliases/nvm_print_formatted_alias calls nvm_get_colors +21 -0
- package/.config/nvm/test/fast/Aliases/nvm_resolve_alias +33 -0
- package/.config/nvm/test/fast/Aliases/nvm_resolve_local_alias +35 -0
- package/.config/nvm/test/fast/Aliases/setup +16 -0
- package/.config/nvm/test/fast/Aliases/teardown +17 -0
- package/.config/nvm/test/fast/Listing paths/Running 'nvm which 0.0.2' should display only version 0.0.2 +27 -0
- package/.config/nvm/test/fast/Listing paths/Running 'nvm which foo' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing paths/teardown +3 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls --no-alias' does not call into nvm_alias +34 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls --no-alias' with a pattern errors +15 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls 0.0.2' should display only version 0.0.2 +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls 0.2' should display only 0.2.x versions +42 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls foo' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls io' should return NA +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls node_' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls stable' and 'nvm ls unstable' should return the appropriate implicit alias +29 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls system' should include 'system' when appropriate +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' calls into nvm_alias +35 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should display all installed versions +44 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should filter out '.nvm' +10 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should filter out 'versions' +10 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should include 'system' when appropriate +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should list versions in the 'versions' directory +12 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should not show a trailing slash +42 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' with node-like versioning vx.x.x should only list a matched version +11 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' with nounset should not fail +23 -0
- package/.config/nvm/test/fast/Listing versions/Using a nonstandard IFS should not break +19 -0
- package/.config/nvm/test/fast/Listing versions/teardown +16 -0
- package/.config/nvm/test/fast/Running 'nvm alias' should create a file in the alias directory +11 -0
- package/.config/nvm/test/fast/Running 'nvm current' should display current nvm environment +13 -0
- package/.config/nvm/test/fast/Running 'nvm deactivate' should unset the nvm environment variables +25 -0
- package/.config/nvm/test/fast/Running 'nvm install' with '--reinstall-packages-from' requires a valid version +59 -0
- package/.config/nvm/test/fast/Running 'nvm install' with an invalid version fails nicely +15 -0
- package/.config/nvm/test/fast/Running 'nvm unalias' should remove the alias file +13 -0
- package/.config/nvm/test/fast/Running 'nvm uninstall' should remove the appropriate directory +12 -0
- package/.config/nvm/test/fast/Running 'nvm uninstall' with incorrect file permissions fails nicely +14 -0
- package/.config/nvm/test/fast/Running 'nvm unload' should unset all function and variables +30 -0
- package/.config/nvm/test/fast/Running 'nvm use foo' where 'foo' is circular aborts +39 -0
- package/.config/nvm/test/fast/Running 'nvm use iojs' uses latest io.js version +37 -0
- package/.config/nvm/test/fast/Running 'nvm use system' should work as expected +44 -0
- package/.config/nvm/test/fast/Running 'nvm use x' should create and change the 'current' symlink +36 -0
- package/.config/nvm/test/fast/Running 'nvm use x' should not create the 'current' symlink if $NVM_SYMLINK_CURRENT is false +86 -0
- package/.config/nvm/test/fast/Running 'nvm use' should drop CR char automatically +33 -0
- package/.config/nvm/test/fast/Set Colors/nvm_echo_with_colors +21 -0
- package/.config/nvm/test/fast/Set Colors/nvm_err_with_colors +19 -0
- package/.config/nvm/test/fast/Set Colors/nvm_print_default_alias calls nvm_get_colors +24 -0
- package/.config/nvm/test/fast/Set Colors/nvm_print_versions calls nvm_get_colors +52 -0
- package/.config/nvm/test/fast/Sourcing nvm.sh should make the nvm command available +7 -0
- package/.config/nvm/test/fast/Sourcing nvm.sh should not modify parameters of caller +7 -0
- package/.config/nvm/test/fast/Unit tests/mocks/LTS_names.txt +8 -0
- package/.config/nvm/test/fast/Unit tests/mocks/iojs.org-dist-index.tab +42 -0
- package/.config/nvm/test/fast/Unit tests/mocks/lts-star.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nodejs.org-dist-index.tab +671 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nodejs.org-download-nightly-index.tab +2915 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote iojs.txt +41 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote lts.txt +194 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote node.txt +670 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote.txt +711 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS argon.txt +36 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly argon.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly.txt +26 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS.txt +194 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote nightly.txt +150 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote stable nightly.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote stable.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote.txt +670 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote_iojs.txt +41 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_make_alias LTS alias calls.txt +9 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable nightly.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-both/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-pkg/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/no-nesting-pkg/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/nvm ls-remote +73 -0
- package/.config/nvm/test/fast/Unit tests/nvm set_colors +52 -0
- package/.config/nvm/test/fast/Unit tests/nvm version-remote +51 -0
- package/.config/nvm/test/fast/Unit tests/nvm_add_iojs_prefix +9 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias LTS-N +36 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias_path +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_change_path +57 -0
- package/.config/nvm/test/fast/Unit tests/nvm_check_for_help +9 -0
- package/.config/nvm/test/fast/Unit tests/nvm_clang_version +62 -0
- package/.config/nvm/test/fast/Unit tests/nvm_command_info +58 -0
- package/.config/nvm/test/fast/Unit tests/nvm_compare_checksum +72 -0
- package/.config/nvm/test/fast/Unit tests/nvm_compute_checksum +23 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_libz_support +39 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_use_compression +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_version +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_die_on_prefix +192 -0
- package/.config/nvm/test/fast/Unit tests/nvm_download +18 -0
- package/.config/nvm/test/fast/Unit tests/nvm_download_artifact +55 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_default_set +15 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_version_installed +72 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_version_prefix +12 -0
- package/.config/nvm/test/fast/Unit tests/nvm_extract_tarball +12 -0
- package/.config/nvm/test/fast/Unit tests/nvm_find_project_dir +36 -0
- package/.config/nvm/test/fast/Unit tests/nvm_find_up +26 -0
- package/.config/nvm/test/fast/Unit tests/nvm_format_version +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_arch +85 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_artifact_compression +22 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum +45 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum_alg +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum_binary +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_colors +79 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_default_packages +92 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_download_slug +111 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_latest missing curl or wget +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_minor_version +45 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_mirror +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has +11 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_non_aliased +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_solaris_binary +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_system_iojs +27 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_system_node +27 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_binary_extract +59 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_binary_nosource +30 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_latest_npm +58 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_no_progress_bar +43 -0
- package/.config/nvm/test/fast/Unit tests/nvm_iojs_prefix +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_iojs_version_has_solaris_binary +17 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_alias +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_iojs_version +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_merged_node_version +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_natural_num +17 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_valid_version +13 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_version_installed +54 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_current +39 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote +86 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote LTS aliases +49 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote nightly +65 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote_iojs +37 -0
- package/.config/nvm/test/fast/Unit tests/nvm_make_alias +19 -0
- package/.config/nvm/test/fast/Unit tests/nvm_node_prefix +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_node_version_has_solaris_binary +33 -0
- package/.config/nvm/test/fast/Unit tests/nvm_normalize_lts +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_num_version_groups +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_alias_path +44 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_color_code +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_default_alias +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_implicit_alias errors +25 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_implicit_alias success +106 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_npm_version +28 -0
- package/.config/nvm/test/fast/Unit tests/nvm_remote_version +78 -0
- package/.config/nvm/test/fast/Unit tests/nvm_remote_versions +77 -0
- package/.config/nvm/test/fast/Unit tests/nvm_stdout_is_terminal +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_strip_iojs_prefix +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_strip_path +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_supports_xz +42 -0
- package/.config/nvm/test/fast/Unit tests/nvm_tree_contains_path +31 -0
- package/.config/nvm/test/fast/Unit tests/nvm_use_if_needed +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_validate_implicit_alias +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version +48 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_dir +11 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_greater +15 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_path +14 -0
- package/.config/nvm/test/fast/Unit tests/nvm_wrap_with_color_code +1 -0
- package/.config/nvm/test/fast/nvm should remove the last trailing slash in $NVM_DIR +18 -0
- package/.config/nvm/test/fast/setup +14 -0
- package/.config/nvm/test/fast/setup_dir +18 -0
- package/.config/nvm/test/fast/teardown +12 -0
- package/.config/nvm/test/fast/teardown_dir +15 -0
- package/.config/nvm/test/install_script/install_nvm_from_git +129 -0
- package/.config/nvm/test/install_script/nvm_check_global_modules +65 -0
- package/.config/nvm/test/install_script/nvm_detect_profile +126 -0
- package/.config/nvm/test/install_script/nvm_do_install +18 -0
- package/.config/nvm/test/install_script/nvm_download +18 -0
- package/.config/nvm/test/install_script/nvm_install_dir +25 -0
- package/.config/nvm/test/install_script/nvm_install_with_aliased_dot +24 -0
- package/.config/nvm/test/install_script/nvm_install_with_node_version +12 -0
- package/.config/nvm/test/install_script/nvm_profile_is_bash_or_zsh +14 -0
- package/.config/nvm/test/install_script/nvm_reset +38 -0
- package/.config/nvm/test/install_script/nvm_source +43 -0
- package/.config/nvm/test/installation_iojs/install already installed uses it +25 -0
- package/.config/nvm/test/installation_iojs/install from binary +22 -0
- package/.config/nvm/test/installation_iojs/install from source +22 -0
- package/.config/nvm/test/installation_iojs/install two versions and use the latest one +25 -0
- package/.config/nvm/test/installation_iojs/install version specified in .nvmrc from binary +22 -0
- package/.config/nvm/test/installation_iojs/install version specified in .nvmrc from source +23 -0
- package/.config/nvm/test/installation_iojs/install while reinstalling packages +31 -0
- package/.config/nvm/test/installation_iojs/nvm install v1 works +19 -0
- package/.config/nvm/test/installation_iojs/setup_dir +5 -0
- package/.config/nvm/test/installation_iojs/teardown_dir +16 -0
- package/.config/nvm/test/installation_node/default-packages +123 -0
- package/.config/nvm/test/installation_node/install LTS +29 -0
- package/.config/nvm/test/installation_node/install already installed uses it +23 -0
- package/.config/nvm/test/installation_node/install from binary +23 -0
- package/.config/nvm/test/installation_node/install from binary with binary flag set +37 -0
- package/.config/nvm/test/installation_node/install from source +29 -0
- package/.config/nvm/test/installation_node/install from source with thread parameter +33 -0
- package/.config/nvm/test/installation_node/install from source without V8 snapshot for ARM +25 -0
- package/.config/nvm/test/installation_node/install hook +45 -0
- package/.config/nvm/test/installation_node/install latest npm +51 -0
- package/.config/nvm/test/installation_node/install on bash with ERR trap and set -E +50 -0
- package/.config/nvm/test/installation_node/install two versions and use the latest one +24 -0
- package/.config/nvm/test/installation_node/install version specified in .nvmrc from binary +20 -0
- package/.config/nvm/test/installation_node/install while reinstalling packages +46 -0
- package/.config/nvm/test/installation_node/install with --alias +11 -0
- package/.config/nvm/test/installation_node/install with --default +11 -0
- package/.config/nvm/test/installation_node/install with --latest-npm +12 -0
- package/.config/nvm/test/installation_node/setup_dir +5 -0
- package/.config/nvm/test/installation_node/teardown_dir +18 -0
- package/.config/nvm/test/mocks/isainfo_amd64 +5 -0
- package/.config/nvm/test/mocks/isainfo_x86 +5 -0
- package/.config/nvm/test/mocks/pkg_info_amd64 +4 -0
- package/.config/nvm/test/mocks/pkg_info_fail +1 -0
- package/.config/nvm/test/mocks/pkg_info_x86 +1 -0
- package/.config/nvm/test/mocks/uname_linux_armv8l +5 -0
- package/.config/nvm/test/mocks/uname_osx_amd64 +5 -0
- package/.config/nvm/test/mocks/uname_osx_x86 +5 -0
- package/.config/nvm/test/mocks/uname_smartos_amd64 +5 -0
- package/.config/nvm/test/mocks/uname_smartos_x86 +5 -0
- package/.config/nvm/test/slow/Running 'nvm current' should display current nvm environment +9 -0
- package/.config/nvm/test/slow/nvm exec/Preamble works and respects 'silent' flag +30 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec --lts' should work +18 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec 0.x' should work +15 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec' should pick up .nvmrc version +16 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec' with help should not parse +9 -0
- package/.config/nvm/test/slow/nvm exec/setup_dir +10 -0
- package/.config/nvm/test/slow/nvm exec/teardown_dir +13 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/Running 'nvm copy-packages $(nvm ls current)' should error out +17 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/setup_dir +11 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/should work as expected +31 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/teardown_dir +13 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/test-npmlink/index.js +2 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/test-npmlink/package.json +10 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/works with no installs +18 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run --harmony --version' should work +8 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run --lts' should work +15 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run 0.x' should error out sensibly when 0.x is not installed +16 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run 0.x' should work +8 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run' should pick up .nvmrc version +25 -0
- package/.config/nvm/test/slow/nvm run/setup_dir +11 -0
- package/.config/nvm/test/slow/nvm run/teardown_dir +14 -0
- package/.config/nvm/test/slow/nvm uninstall/Running 'nvm uninstall 0.12.6' uninstalls v0.12.6 +33 -0
- package/.config/nvm/test/slow/nvm uninstall/Running 'nvm uninstall' with incorrect file permissions fails nicely +30 -0
- package/.config/nvm/test/slow/nvm uninstall/setup_dir +4 -0
- package/.config/nvm/test/slow/nvm uninstall/teardown_dir +5 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use --lts' uses latest LTS version +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use --lts=foo' uses latest 'foo' LTS version +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use iojs' uses latest io.js version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use node --silent' doesn't print anything +13 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use node' uses latest stable node version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use v1.0.0' uses iojs-v1.0.0 iojs version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use' calls 'nvm_die_on_prefix' +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use' with nvmrc containing not intalled version +28 -0
- package/.config/nvm/test/slow/nvm use/setup_dir +23 -0
- package/.config/nvm/test/slow/nvm use/teardown_dir +22 -0
- package/.config/nvm/test/slow/nvm_get_latest/nvm_get_latest +101 -0
- package/.config/nvm/test/slow/nvm_get_latest/nvm_get_latest failed redirect +25 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh global alias bug +30 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh should keep version if one is active +20 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh should use the default if available and no nvm node is loaded +28 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --install and .nvmrc should install it +27 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --install should install the default +32 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --no-use should not use anything +31 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with no default should return 0 +11 -0
- package/.config/nvm/test/sourcing/setup +14 -0
- package/.config/nvm/test/sourcing/teardown +7 -0
- package/.config/nvm/test/xenial/install from source +29 -0
- package/.config/nvm/test/xenial/install from source implicitly +23 -0
- package/.config/nvm/test/xenial/install from source with thread parameter +33 -0
- package/.config/nvm/test/xenial/install from source without V8 snapshot for ARM +25 -0
- package/.config/nvm/test/xenial/install hook +45 -0
- package/.config/nvm/test/xenial/install version specified in .nvmrc from source +20 -0
- package/.config/nvm/test/xenial/node 0.6.21 should install 0.6.21-pre +11 -0
- package/.config/nvm/update_test_mocks.sh +59 -0
- package/.gitattributes +2 -0
- package/.replit +84 -0
- package/.upm/store.json +1 -0
- package/Extra/Database/index.js +470 -0
- package/Extra/ExtraAddons.js +82 -0
- package/Extra/ExtraFindUID.js +62 -0
- package/Extra/ExtraGetThread.js +340 -0
- package/Extra/ExtraScreenShot.js +430 -0
- package/Extra/ExtraUptimeRobot.js +38 -0
- package/Extra/Html/Classic/script.js +833 -0
- package/Extra/Html/Classic/style.css +1222 -0
- package/Extra/Security/Index.js +173 -0
- package/Extra/Security/Step_1.js +6 -0
- package/Extra/Security/Step_2.js +22 -0
- package/Extra/Security/Step_3.js +22 -0
- package/Extra/Src/Change_Environment.js +24 -0
- package/Extra/Src/Check_Update.js +66 -0
- package/Extra/Src/History.js +115 -0
- package/Extra/Src/Instant_Update.js +64 -0
- package/Extra/Src/Last-Run.js +65 -0
- package/Extra/Src/Release_Memory.js +41 -0
- package/Extra/Src/image/checkmate.jpg +0 -0
- package/Extra/Src/uuid.js +137 -0
- package/Func/AcceptAgreement.js +31 -0
- package/Func/ClearCache.js +64 -0
- package/Func/ReportV1.js +54 -0
- package/Index.js +378 -0
- package/LICENSE +21 -0
- package/Language/index.json +224 -0
- package/Main.js +1110 -0
- package/README.md +144 -0
- package/broadcast.js +40 -0
- package/logger.js +66 -0
- package/package.json +231 -0
- package/replit.nix +8 -0
- package/src/Dev_Horizon_Data.js +125 -0
- package/src/Premium.js +25 -0
- package/src/Screenshot.js +83 -0
- package/src/addExternalModule.js +16 -0
- package/src/addUserToGroup.js +79 -0
- package/src/changeAdminStatus.js +79 -0
- package/src/changeArchivedStatus.js +41 -0
- package/src/changeAvt.js +85 -0
- package/src/changeBio.js +65 -0
- package/src/changeBlockedStatus.js +36 -0
- package/src/changeGroupImage.js +106 -0
- package/src/changeNickname.js +45 -0
- package/src/changeThreadColor.js +62 -0
- package/src/changeThreadEmoji.js +42 -0
- package/src/createNewGroup.js +70 -0
- package/src/createPoll.js +60 -0
- package/src/deleteMessage.js +45 -0
- package/src/deleteThread.js +43 -0
- package/src/forwardAttachment.js +48 -0
- package/src/getAccessToken.js +28 -0
- package/src/getCurrentUserID.js +7 -0
- package/src/getEmojiUrl.js +27 -0
- package/src/getFriendsList.js +73 -0
- package/src/getMessage.js +80 -0
- package/src/getThreadHistory.js +537 -0
- package/src/getThreadInfo.js +425 -0
- package/src/getThreadList.js +213 -0
- package/src/getThreadMain.js +220 -0
- package/src/getThreadPictures.js +59 -0
- package/src/getUID.js +59 -0
- package/src/getUserID.js +62 -0
- package/src/getUserInfo.js +113 -0
- package/src/getUserInfoMain.js +65 -0
- package/src/getUserInfoV2.js +32 -0
- package/src/getUserInfoV3.js +63 -0
- package/src/getUserInfoV4.js +55 -0
- package/src/getUserInfoV5.js +61 -0
- package/src/handleFriendRequest.js +46 -0
- package/src/handleMessageRequest.js +49 -0
- package/src/httpGet.js +49 -0
- package/src/httpPost.js +48 -0
- package/src/httpPostFormData.js +41 -0
- package/src/listenMqtt.js +786 -0
- package/src/logout.js +68 -0
- package/src/markAsDelivered.js +48 -0
- package/src/markAsRead.js +70 -0
- package/src/markAsReadAll.js +43 -0
- package/src/markAsSeen.js +51 -0
- package/src/muteThread.js +47 -0
- package/src/removeUserFromGroup.js +49 -0
- package/src/resolvePhotoUrl.js +37 -0
- package/src/searchForThread.js +43 -0
- package/src/sendMessage.js +379 -0
- package/src/sendTypingIndicator.js +80 -0
- package/src/setMessageReaction.js +109 -0
- package/src/setPostReaction.js +102 -0
- package/src/setTitle.js +74 -0
- package/src/threadColors.js +39 -0
- package/src/unfriend.js +43 -0
- package/src/unsendMessage.js +40 -0
- package/utils.js +1684 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
set -ex
|
4
|
+
|
5
|
+
die () { echo "$@" ; exit 1; }
|
6
|
+
|
7
|
+
\. ../../../nvm.sh
|
8
|
+
|
9
|
+
# Testing valid input
|
10
|
+
OUTPUT=$(nvm_print_color_code m)
|
11
|
+
EXPECTED_OUTPUT='0;35m'
|
12
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "nvm_print_color_code returned wrong code; got $(echo ">$OUTPUT<") expected $(echo ">$EXPECTED_OUTPUT<")"
|
13
|
+
|
14
|
+
# Testing invalid input
|
15
|
+
set +x # needed for stderr
|
16
|
+
OUTPUT="$(nvm_print_color_code q 2>&1)" ||:
|
17
|
+
set -x
|
18
|
+
echo "OUTPUT WAS SET TO: $OUTPUT"
|
19
|
+
EXPECTED_OUTPUT="Invalid color code: q"
|
20
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "nvm_print_color_code did not recognize the invalid input; got $(echo ">$OUTPUT<") expected $(echo ">$EXPECTED_OUTPUT<")"
|
@@ -0,0 +1,38 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
\. ../../common.sh
|
3
|
+
|
4
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
5
|
+
|
6
|
+
cleanup () {
|
7
|
+
unset -f nvm_print_implicit_alias nvm_version
|
8
|
+
}
|
9
|
+
|
10
|
+
\. ../../../nvm.sh
|
11
|
+
|
12
|
+
nvm_print_implicit_alias() {
|
13
|
+
echo ''
|
14
|
+
}
|
15
|
+
|
16
|
+
OUTPUT="$(nvm_print_default_alias 2>&1)"
|
17
|
+
EXPECTED_OUTPUT='A default alias is required.'
|
18
|
+
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "'nvm_print_default_alias' produced wrong output; got '$OUTPUT', expected '$EXPECTED_OUTPUT'"
|
19
|
+
|
20
|
+
OUTPUT="$(nvm_print_default_alias foo | strip_colors)"
|
21
|
+
EXPECTED_OUTPUT=''
|
22
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "'nvm_print_default_alias foo' should produce no output when nvm_print_implicit_alias does not; got '$OUTPUT'"
|
23
|
+
|
24
|
+
EXIT_CODE="$(nvm_print_default_alias foo >/dev/null 2>&1 ; echo $?)"
|
25
|
+
[ "$EXIT_CODE" = '0' ] || die "'nvm_print_default_alias foo' should exit zero when nvm_print_implicit_alias produces no output; got $EXIT_CODE"
|
26
|
+
|
27
|
+
nvm_print_implicit_alias() {
|
28
|
+
echo "\"$1-$2\""
|
29
|
+
}
|
30
|
+
nvm_version() {
|
31
|
+
echo "v$1"
|
32
|
+
}
|
33
|
+
|
34
|
+
OUTPUT="$(nvm_print_default_alias blah | strip_colors)"
|
35
|
+
EXPECTED_OUTPUT='blah -> "local-blah" (-> v"local-blah") (default)'
|
36
|
+
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "'nvm_print_default_alias blah' should strip alias dir and print nvm_print_implicit_alias output; got '$OUTPUT', expected '$EXPECTED_OUTPUT'"
|
37
|
+
|
38
|
+
cleanup
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
EXPECTED_FIRST_MSG="nvm_print_implicit_alias must be specified with local or remote as the first argument."
|
8
|
+
[ "_$(nvm_print_implicit_alias 2>&1)" = "_$EXPECTED_FIRST_MSG" ] \
|
9
|
+
|| die "nvm_print_implicit_alias did not require local|remote as first argument"
|
10
|
+
[ "_$(nvm_print_implicit_alias foo 2>&1)" = "_$EXPECTED_FIRST_MSG" ] \
|
11
|
+
|| die "nvm_print_implicit_alias did not require local|remote as first argument"
|
12
|
+
|
13
|
+
FIRST_EXIT_CODE="$(nvm_print_implicit_alias > /dev/null 2>&1 ; echo $?)"
|
14
|
+
[ "_$FIRST_EXIT_CODE" = "_1" ] \
|
15
|
+
|| die "nvm_print_implicit_alias without local|remote had wrong exit code: expected 1, got $FIRST_EXIT_CODE"
|
16
|
+
|
17
|
+
EXPECTED_SECOND_MSG="Only implicit aliases 'stable', 'unstable', 'iojs', and 'node' are supported."
|
18
|
+
[ "_$(nvm_print_implicit_alias local 2>&1)" = "_$EXPECTED_SECOND_MSG" ] \
|
19
|
+
|| die "nvm_print_implicit_alias did not require stable|unstable|iojs|node as second argument"
|
20
|
+
[ "_$(nvm_print_implicit_alias local foo 2>&1)" = "_$EXPECTED_SECOND_MSG" ] \
|
21
|
+
|| die "nvm_print_implicit_alias did not require stable|unstable|iojs|node as second argument"
|
22
|
+
|
23
|
+
SECOND_EXIT_CODE="$(nvm_print_implicit_alias local > /dev/null 2>&1 ; echo $?)"
|
24
|
+
[ "_$SECOND_EXIT_CODE" = "_2" ] \
|
25
|
+
|| die "nvm_print_implicit_alias without stable|unstable|iojs|node had wrong exit code: expected 2, got $SECOND_EXIT_CODE"
|
@@ -0,0 +1,106 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
cleanup() {
|
5
|
+
rm -rf "${NVM_DIR}/v0.2.3"
|
6
|
+
rm -rf "${NVM_DIR}/v0.3.4"
|
7
|
+
rm -rf "${NVM_DIR}/v0.4.6"
|
8
|
+
rm -rf "${NVM_DIR}/v0.5.7"
|
9
|
+
rm -rf "${NVM_DIR}/v0.7.7"
|
10
|
+
rm -rf "${NVM_DIR}/versions/io.js/v0.98.0"
|
11
|
+
rm -rf "${NVM_DIR}/versions/node/v1.0.0"
|
12
|
+
rm -rf "${NVM_DIR}/versions/node/v1.1.0"
|
13
|
+
unset -f nvm_ls_remote nvm_ls_remote_iojs
|
14
|
+
}
|
15
|
+
|
16
|
+
\. ../../../nvm.sh
|
17
|
+
\. ../../common.sh
|
18
|
+
|
19
|
+
make_fake_node v0.2.3
|
20
|
+
make_fake_node v0.3.4
|
21
|
+
make_fake_node v0.4.6
|
22
|
+
make_fake_node v0.5.7
|
23
|
+
make_fake_node v0.7.7
|
24
|
+
make_fake_iojs v0.98.0
|
25
|
+
|
26
|
+
LATEST_STABLE="$(nvm_print_implicit_alias local stable)"
|
27
|
+
[ "_$LATEST_STABLE" = "_0.4" ] || die "local stable is not latest even minor: expected 0.4, got $LATEST_STABLE"
|
28
|
+
|
29
|
+
LATEST_NODE="$(nvm_print_implicit_alias local node)"
|
30
|
+
[ "_$LATEST_NODE" = "_stable" ] || die "local node is not stable: expected stable, got $LATEST_NODE"
|
31
|
+
|
32
|
+
LATEST_UNSTABLE="$(nvm_print_implicit_alias local unstable)"
|
33
|
+
[ "_$LATEST_UNSTABLE" = "_0.7" ] || die "local unstable is not latest odd minor: expected 0.7, got $LATEST_UNSTABLE"
|
34
|
+
|
35
|
+
LATEST_IOJS="$(nvm_print_implicit_alias local iojs)"
|
36
|
+
[ "_$LATEST_IOJS" = "_iojs-v0.98" ] || die "local iojs is not latest iojs: expected iojs-v0.98, got $LATEST_IOJS"
|
37
|
+
|
38
|
+
## node post v1.0/io.js merger ##
|
39
|
+
make_fake_node v1.0.0
|
40
|
+
make_fake_node v1.1.0
|
41
|
+
|
42
|
+
|
43
|
+
LATEST_STABLE="$(nvm_print_implicit_alias local stable)"
|
44
|
+
[ "_$LATEST_STABLE" = "_1.1" ] || die "local stable when post-v1.0 exists is not latest: expected 1.1, got $LATEST_STABLE"
|
45
|
+
|
46
|
+
LATEST_UNSTABLE="$(nvm_print_implicit_alias local unstable)"
|
47
|
+
[ "_$LATEST_UNSTABLE" = "_0.7" ] || die "local unstable is not latest pre-v1.0 odd minor: expected 0.7, got $LATEST_UNSTABLE"
|
48
|
+
## ** ##
|
49
|
+
|
50
|
+
nvm_ls_remote() {
|
51
|
+
echo "v0.4.3"
|
52
|
+
echo "v0.5.4"
|
53
|
+
echo "v0.6.6"
|
54
|
+
echo "v0.7.7"
|
55
|
+
echo "v0.9.7"
|
56
|
+
echo "v0.4.3"
|
57
|
+
echo "v0.5.4"
|
58
|
+
echo "v0.6.6"
|
59
|
+
echo "v0.7.7"
|
60
|
+
echo "v0.9.7"
|
61
|
+
}
|
62
|
+
|
63
|
+
nvm_ls_remote_iojs() {
|
64
|
+
echo "iojs-v0.1.0"
|
65
|
+
echo "iojs-v0.1.1"
|
66
|
+
echo "iojs-v0.7.8"
|
67
|
+
echo "iojs-v0.98.5"
|
68
|
+
echo "iojs-v0.99.0"
|
69
|
+
}
|
70
|
+
|
71
|
+
LATEST_STABLE="$(nvm_print_implicit_alias remote stable)"
|
72
|
+
[ "_$LATEST_STABLE" = "_0.6" ] || die "remote stable is not latest even minor: expected 0.6, got $LATEST_STABLE"
|
73
|
+
|
74
|
+
LATEST_NODE="$(nvm_print_implicit_alias remote node)"
|
75
|
+
[ "_$LATEST_NODE" = "_stable" ] || die "remote node is not stable: expected stable, got $LATEST_NODE"
|
76
|
+
|
77
|
+
LATEST_UNSTABLE="$(nvm_print_implicit_alias remote unstable)"
|
78
|
+
[ "_$LATEST_UNSTABLE" = "_0.9" ] || die "remote unstable is not latest odd minor: expected 0.9, got $LATEST_UNSTABLE"
|
79
|
+
|
80
|
+
LATEST_IOJS="$(nvm_print_implicit_alias remote iojs)"
|
81
|
+
[ "_$LATEST_IOJS" = "_iojs-v0.99" ] || die "remote iojs is not latest: expected iojs-v0.99, got $LATEST_IOJS"
|
82
|
+
|
83
|
+
## node post v1.0/io.js merger ##
|
84
|
+
nvm_ls_remote() {
|
85
|
+
echo "v0.4.3"
|
86
|
+
echo "v0.5.4"
|
87
|
+
echo "v0.6.6"
|
88
|
+
echo "v0.7.7"
|
89
|
+
echo "v0.9.7"
|
90
|
+
echo "v0.4.3"
|
91
|
+
echo "v0.5.4"
|
92
|
+
echo "v0.6.6"
|
93
|
+
echo "v0.7.7"
|
94
|
+
echo "v0.9.7"
|
95
|
+
echo "v1.0.0"
|
96
|
+
echo "v1.1.0"
|
97
|
+
}
|
98
|
+
|
99
|
+
LATEST_STABLE="$(nvm_print_implicit_alias remote stable)"
|
100
|
+
[ "_$LATEST_STABLE" = "_1.1" ] || die "remote stable when post-v1.0 exists is not latest: expected 1.1, got $LATEST_STABLE"
|
101
|
+
|
102
|
+
LATEST_UNSTABLE="$(nvm_print_implicit_alias remote unstable)"
|
103
|
+
[ "_$LATEST_UNSTABLE" = "_0.9" ] || die "remote unstable is not latest odd pre-v1.0 minor: expected 0.9, got $LATEST_UNSTABLE"
|
104
|
+
## ** ##
|
105
|
+
|
106
|
+
cleanup
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
cleanup () {
|
4
|
+
alias nvm_has='\nvm_has'
|
5
|
+
alias npm='\npm'
|
6
|
+
unset -f nvm_has npm
|
7
|
+
}
|
8
|
+
die () { echo "$@" ; exit 1; }
|
9
|
+
|
10
|
+
\. ../../../nvm.sh
|
11
|
+
|
12
|
+
nvm_has() { return 1; }
|
13
|
+
OUTPUT="$(nvm_print_npm_version)"
|
14
|
+
[ -z "$OUTPUT" ] || die "nvm_print_npm_version did not return empty when nvm_has returns 1, got '$OUTPUT'"
|
15
|
+
|
16
|
+
nvm_has() { return 0; }
|
17
|
+
npm() {
|
18
|
+
if [ "_$@" = "_--version" ]; then
|
19
|
+
echo "1.2.3"
|
20
|
+
else
|
21
|
+
echo "error"
|
22
|
+
fi
|
23
|
+
}
|
24
|
+
OUTPUT="$(nvm_print_npm_version)"
|
25
|
+
EXPECTED_OUTPUT=" (npm v1.2.3)"
|
26
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "nvm_print_npm_version did not provided '$EXPECTED_OUTPUT', got '$OUTPUT'"
|
27
|
+
|
28
|
+
cleanup
|
@@ -0,0 +1,78 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
|
5
|
+
cleanup() {
|
6
|
+
unset -f nvm_ls_remote nvm_ls_remote_iojs
|
7
|
+
}
|
8
|
+
|
9
|
+
\. ../../../nvm.sh
|
10
|
+
|
11
|
+
nvm_ls_remote() {
|
12
|
+
echo "N/A"
|
13
|
+
}
|
14
|
+
OUTPUT="$(nvm_remote_version foo)"
|
15
|
+
EXIT_CODE="$(nvm_remote_version foo >/dev/null 2>&1 ; echo $?)"
|
16
|
+
[ "_$OUTPUT" = "_N/A" ] || die "nonexistent version did not report N/A"
|
17
|
+
[ "_$EXIT_CODE" = "_3" ] || die "nonexistent version did not exit with code 3, got $EXIT_CODE"
|
18
|
+
|
19
|
+
nvm_ls_remote_iojs() {
|
20
|
+
echo "N/A"
|
21
|
+
}
|
22
|
+
OUTPUT="$(nvm_remote_version iojs-foo)"
|
23
|
+
EXIT_CODE="$(nvm_remote_version iojs-foo >/dev/null 2>&1 ; echo $?)"
|
24
|
+
[ "_$OUTPUT" = "_N/A" ] || die "nonexistent version did not report N/A"
|
25
|
+
[ "_$EXIT_CODE" = "_3" ] || die "nonexistent version did not exit with code 3, got $EXIT_CODE"
|
26
|
+
|
27
|
+
|
28
|
+
nvm_ls_remote() {
|
29
|
+
if [ -z "$1" ] || ! nvm_is_iojs_version "$1"; then
|
30
|
+
echo "test_output"
|
31
|
+
echo "more_test_output"
|
32
|
+
echo "pattern_received:_$1_"
|
33
|
+
fi
|
34
|
+
}
|
35
|
+
nvm_ls_remote_iojs() {
|
36
|
+
if [ -z "$1" ] || nvm_is_iojs_version "$1"; then
|
37
|
+
echo "test_iojs_output"
|
38
|
+
echo "more_iojs_test_output"
|
39
|
+
echo "iojs_pattern_received:_$1_"
|
40
|
+
fi
|
41
|
+
}
|
42
|
+
OUTPUT="$(nvm_remote_version foo)"
|
43
|
+
EXIT_CODE="$(nvm_remote_version foo >/dev/null 2>&1 ; echo $?)"
|
44
|
+
[ "_$OUTPUT" = "_pattern_received:_foo_" ] \
|
45
|
+
|| die "nvm_remote_version foo did not return last line only of nvm_ls_remote foo; got $OUTPUT"
|
46
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version foo did not exit with 0, got $EXIT_CODE"
|
47
|
+
|
48
|
+
OUTPUT="$(nvm_remote_version iojs-foo)"
|
49
|
+
EXIT_CODE="$(nvm_remote_version iojs-foo >/dev/null 2>&1 ; echo $?)"
|
50
|
+
[ "_$OUTPUT" = "_iojs_pattern_received:_iojs-foo_" ] \
|
51
|
+
|| die "nvm_remote_version iojs-foo did not return last line only of nvm_ls_remote_iojs foo; got $OUTPUT"
|
52
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version iojs-foo did not exit with 0, got $EXIT_CODE"
|
53
|
+
|
54
|
+
OUTPUT="$(nvm_remote_version iojs)"
|
55
|
+
EXIT_CODE="$(nvm_remote_version iojs >/dev/null 2>&1 ; echo $?)"
|
56
|
+
[ "_$OUTPUT" = "_iojs_pattern_received:__" ] \
|
57
|
+
|| die "nvm_remote_version iojs did not return last line only of nvm_ls_remote_iojs; got $OUTPUT"
|
58
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version iojs did not exit with 0, got $EXIT_CODE"
|
59
|
+
|
60
|
+
OUTPUT="$(nvm_remote_version stable)"
|
61
|
+
EXIT_CODE="$(nvm_remote_version stable >/dev/null 2>&1 ; echo $?)"
|
62
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote stable)" ] \
|
63
|
+
|| die "nvm_remote_version stable did not return contents of nvm_ls_remote stable; got $OUTPUT"
|
64
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version stable did not exit with 0, got $EXIT_CODE"
|
65
|
+
|
66
|
+
OUTPUT="$(nvm_remote_version unstable)"
|
67
|
+
EXIT_CODE="$(nvm_remote_version unstable >/dev/null 2>&1 ; echo $?)"
|
68
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote unstable)" ] \
|
69
|
+
|| die "nvm_remote_version unstable did not return contents of nvm_ls_remote unstable; got $OUTPUT"
|
70
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version unstable did not exit with 0, got $EXIT_CODE"
|
71
|
+
|
72
|
+
OUTPUT="$(nvm_remote_version node)"
|
73
|
+
EXIT_CODE="$(nvm_remote_version node >/dev/null 2>&1 ; echo $?)"
|
74
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote node)" ] \
|
75
|
+
|| die "nvm_remote_version node did not return contents of nvm_ls_remote node; got $OUTPUT"
|
76
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_version node did not exit with 0, got $EXIT_CODE"
|
77
|
+
|
78
|
+
cleanup
|
@@ -0,0 +1,77 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
|
5
|
+
cleanup() {
|
6
|
+
unset -f nvm_ls_remote nvm_ls_remote_iojs
|
7
|
+
}
|
8
|
+
|
9
|
+
\. ../../../nvm.sh
|
10
|
+
|
11
|
+
OUTPUT="$(nvm_remote_versions stable 2>&1)"
|
12
|
+
EXPECTED_OUTPUT="Implicit aliases are not supported in nvm_remote_versions."
|
13
|
+
EXIT_CODE="$(nvm_remote_versions stable >/dev/null 2>&1; echo $?)"
|
14
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "implicit alias 'stable' did not error out with correct message, got $OUTPUT"
|
15
|
+
[ "_$EXIT_CODE" = "_1" ] || die "implicit alias 'stable' did not exit with code 1, got $EXIT_CODE"
|
16
|
+
|
17
|
+
OUTPUT="$(nvm_remote_versions unstable 2>&1)"
|
18
|
+
EXPECTED_OUTPUT="Implicit aliases are not supported in nvm_remote_versions."
|
19
|
+
EXIT_CODE="$(nvm_remote_versions unstable >/dev/null 2>&1; echo $?)"
|
20
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "implicit alias 'unstable' did not error out with correct message, got $OUTPUT"
|
21
|
+
[ "_$EXIT_CODE" = "_1" ] || die "implicit alias 'unstable' did not exit with code 1, got $EXIT_CODE"
|
22
|
+
|
23
|
+
nvm_ls_remote() {
|
24
|
+
echo "N/A"
|
25
|
+
}
|
26
|
+
OUTPUT="$(nvm_remote_versions foo)"
|
27
|
+
EXIT_CODE="$(nvm_remote_versions foo >/dev/null 2>&1 ; echo $?)"
|
28
|
+
[ "_$OUTPUT" = "_N/A" ] || die "nonexistent version did not report N/A"
|
29
|
+
[ "_$EXIT_CODE" = "_3" ] || die "nonexistent version did not exit with code 3, got $EXIT_CODE"
|
30
|
+
|
31
|
+
nvm_ls_remote_iojs() {
|
32
|
+
echo "N/A"
|
33
|
+
}
|
34
|
+
OUTPUT="$(nvm_remote_versions iojs-foo)"
|
35
|
+
EXIT_CODE="$(nvm_remote_versions iojs-foo >/dev/null 2>&1 ; echo $?)"
|
36
|
+
[ "_$OUTPUT" = "_N/A" ] || die "nonexistent version did not report N/A"
|
37
|
+
[ "_$EXIT_CODE" = "_3" ] || die "nonexistent version did not exit with code 3, got $EXIT_CODE"
|
38
|
+
|
39
|
+
|
40
|
+
nvm_ls_remote() {
|
41
|
+
echo "test output"
|
42
|
+
echo "more test output"
|
43
|
+
echo "pattern received: _$1_"
|
44
|
+
}
|
45
|
+
nvm_ls_remote_iojs() {
|
46
|
+
echo "test iojs output"
|
47
|
+
echo "more iojs test output"
|
48
|
+
echo "iojs pattern received: _$1_"
|
49
|
+
}
|
50
|
+
|
51
|
+
OUTPUT="$(nvm_remote_versions foo)"
|
52
|
+
EXIT_CODE="$(nvm_remote_versions foo >/dev/null 2>&1 ; echo $?)"
|
53
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote foo)
|
54
|
+
$(nvm_ls_remote_iojs foo)" ] \
|
55
|
+
|| die "nvm_remote_versions foo did not return contents of nvm_ls_remote foo combined with nvm_ls_remote_iojs foo; got $OUTPUT"
|
56
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_versions foo did not exit with 0, got $EXIT_CODE"
|
57
|
+
|
58
|
+
OUTPUT="$(nvm_remote_versions node)"
|
59
|
+
EXIT_CODE="$(nvm_remote_versions node >/dev/null 2>&1 ; echo $?)"
|
60
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote)" ] \
|
61
|
+
|| die "nvm_remote_versions node did not return contents of nvm_ls_remote; got $OUTPUT"
|
62
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_versions node did not exit with 0, got $EXIT_CODE"
|
63
|
+
|
64
|
+
OUTPUT="$(nvm_remote_versions iojs-foo)"
|
65
|
+
EXIT_CODE="$(nvm_remote_versions iojs-foo >/dev/null 2>&1 ; echo $?)"
|
66
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote iojs-foo)
|
67
|
+
$(nvm_ls_remote_iojs iojs-foo)" ] \
|
68
|
+
|| die "nvm_remote_versions iojs-foo did not return contents of nvm_ls_remote iojs-foo combined with nvm_ls_remote_iojs iojs-foo; got $OUTPUT"
|
69
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_versions iojs-foo did not exit with 0, got $EXIT_CODE"
|
70
|
+
|
71
|
+
OUTPUT="$(nvm_remote_versions iojs)"
|
72
|
+
EXIT_CODE="$(nvm_remote_versions iojs >/dev/null 2>&1 ; echo $?)"
|
73
|
+
[ "_$OUTPUT" = "_$(nvm_ls_remote_iojs)" ] \
|
74
|
+
|| die "nvm_remote_versions iojs did not return contents of nvm_ls_remote_iojs; got $OUTPUT"
|
75
|
+
[ "_$EXIT_CODE" = "_0" ] || die "nvm_remote_versions iojs did not exit with 0, got $EXIT_CODE"
|
76
|
+
|
77
|
+
cleanup
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
tempfile=$(mktemp)
|
4
|
+
|
5
|
+
die () { echo "$@" ; cleanup; exit 1; }
|
6
|
+
cleanup() { rm -f "$tempfile"; }
|
7
|
+
|
8
|
+
\. ../../../nvm.sh
|
9
|
+
|
10
|
+
if [ -t 1 ] ; then
|
11
|
+
# test is running in a terminal, e.g. locally
|
12
|
+
nvm_stdout_is_terminal || die 'nvm_stdout_is_terminal should be true'
|
13
|
+
nvm_stdout_is_terminal 2>/dev/null || die 'nvm_stdout_is_terminal should be true when stderr is redirected'
|
14
|
+
nvm_stdout_is_terminal </dev/null || die 'nvm_stdout_is_terminal should be true when stdin is redirected'
|
15
|
+
else
|
16
|
+
# test is not running in a terminal, e.g. on travis-ci
|
17
|
+
! nvm_stdout_is_terminal || die 'nvm_stdout_is_terminal should be false'
|
18
|
+
! nvm_stdout_is_terminal 2>/dev/null || die 'nvm_stdout_is_terminal should be false when stderr is redirected'
|
19
|
+
! nvm_stdout_is_terminal </dev/null || die 'nvm_stdout_is_terminal should be false when stdin is redirected'
|
20
|
+
fi
|
21
|
+
|
22
|
+
(! nvm_stdout_is_terminal || echo "boo!") | read && die 'nvm_stdout_is_terminal should be false when stdout goes to a pipe'
|
23
|
+
! nvm_stdout_is_terminal >/dev/null || die 'nvm_stdout_is_terminal should be false when stdout goes to /dev/null'
|
24
|
+
! nvm_stdout_is_terminal >"$tempfile" || die 'nvm_stdout_is_terminal should be false when stdout goes to a file'
|
25
|
+
[ "$(nvm_stdout_is_terminal; echo $?)" = "1" ] || die 'nvm_stdout_is_terminal should be false in command substitution'
|
26
|
+
|
27
|
+
# also test the 'true' case while running on travis-ci or similar environments
|
28
|
+
nvm_stdout_is_terminal >/dev/tty || die 'nvm_stdout_is_terminal should be true when stdout goes to /dev/tty'
|
29
|
+
nvm_stdout_is_terminal >/dev/tty 2>/dev/null || die 'nvm_stdout_is_terminal should be true when stdout goes to /dev/tty and stderr is redirected'
|
30
|
+
nvm_stdout_is_terminal >/dev/tty </dev/null || die 'nvm_stdout_is_terminal should be true when stdout goes to /dev/tty and stdin is redirected'
|
31
|
+
|
32
|
+
cleanup
|
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
[ "_$(nvm_strip_iojs_prefix iojs)" = "_" ] || die '"nvm_strip_iojs_prefix iojs" did not return an empty string'
|
8
|
+
[ "_$(nvm_strip_iojs_prefix iojs-)" = "_" ] || die '"nvm_strip_iojs_prefix iojs-" did not return an empty string'
|
9
|
+
[ "_$(nvm_strip_iojs_prefix iojs-foo)" = "_foo" ] || die '"nvm_strip_iojs_prefix iojs-foo" did not return "foo"'
|
10
|
+
[ "_$(nvm_strip_iojs_prefix iojsfoo)" = "_iojsfoo" ] || die '"nvm_strip_iojs_prefix iojsfoo" did not return "iojsfoo"'
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
TEST_PATH=$NVM_DIR/v0.10.5/bin:/usr/bin:$NVM_DIR/v0.11.5/bin:$NVM_DIR/v0.9.5/bin:/usr/local/bin:$NVM_DIR/v0.2.5/bin:$NVM_DIR/versions/node/v0.12.0/bin:$NVM_DIR/versions/io.js/v1.0.0/bin
|
8
|
+
|
9
|
+
STRIPPED_PATH=`nvm_strip_path "$TEST_PATH" "/bin"`
|
10
|
+
|
11
|
+
[ "$STRIPPED_PATH" = "/usr/bin:/usr/local/bin" ] || die "Not correctly stripped: $STRIPPED_PATH "
|
12
|
+
|
13
|
+
NVM_DIR='/#*.^$[]'
|
14
|
+
TEST_PATH="$NVM_DIR/v0.10.5/bin:/usr/bin:$NVM_DIR/v0.11.5/bin:$NVM_DIR/v0.9.5/bin:/usr/local/bin:$NVM_DIR/v0.2.5/bin:$NVM_DIR/versions/node/v0.12.0/bin:$NVM_DIR/versions/io.js/v1.0.0/bin"
|
15
|
+
|
16
|
+
STRIPPED_PATH=`nvm_strip_path "$TEST_PATH" "/bin"`
|
17
|
+
|
18
|
+
[ "$STRIPPED_PATH" = "/usr/bin:/usr/local/bin" ] || die "Not correctly stripped: $STRIPPED_PATH "
|
19
|
+
|
20
|
+
TEST_PATH=":/a/b/bin::/c/d/bin:"
|
21
|
+
|
22
|
+
STRIPPED_PATH=`nvm_strip_path "$TEST_PATH" "/bin"`
|
23
|
+
|
24
|
+
[ "$STRIPPED_PATH" = "$TEST_PATH" ] || die "Stripping does not preserve colons: $STRIPPED_PATH "
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
OLDPATH=$PATH
|
4
|
+
TEST_PATH=../../xz-test
|
5
|
+
|
6
|
+
cleanup() {
|
7
|
+
rm -rf $TEST_PATH/{xz,which,awk,rm,command}
|
8
|
+
export PATH=$OLDPATH
|
9
|
+
}
|
10
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
11
|
+
|
12
|
+
\. ../../../nvm.sh
|
13
|
+
|
14
|
+
OLDPATH=$PATH
|
15
|
+
|
16
|
+
mkdir -p $TEST_PATH
|
17
|
+
touch ../../xz-test/xz
|
18
|
+
chmod +x ../../xz-test/xz
|
19
|
+
|
20
|
+
export PATH=$TEST_PATH:$PATH
|
21
|
+
|
22
|
+
$(nvm_supports_xz "v2.3.2") || \
|
23
|
+
die "expected 'nvm_supports_xz v2.3.2' to exit with 0"
|
24
|
+
|
25
|
+
$(nvm_supports_xz "v0.12.7") && \
|
26
|
+
die "expected 'nvm_supports_xz v0.12.7' to exit with 1"
|
27
|
+
|
28
|
+
|
29
|
+
# set up for a failure by having a minimal toolset available
|
30
|
+
# but remove xz
|
31
|
+
ln -s /usr/bin/which $TEST_PATH/which
|
32
|
+
ln -s /usr/bin/command $TEST_PATH/command
|
33
|
+
ln -s /usr/bin/awk $TEST_PATH/awk
|
34
|
+
ln -s $(which rm) $TEST_PATH/rm
|
35
|
+
|
36
|
+
export PATH=$TEST_PATH
|
37
|
+
rm $TEST_PATH/xz
|
38
|
+
|
39
|
+
$(nvm_supports_xz "v2.3.2") && \
|
40
|
+
die "expected 'nvm_supports_xz v2.3.2' with a missing xz binary to exit with 1"
|
41
|
+
|
42
|
+
cleanup
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
cleanup () {
|
4
|
+
rm tmp/node
|
5
|
+
rmdir tmp
|
6
|
+
rm tmp2/node
|
7
|
+
rmdir tmp2
|
8
|
+
}
|
9
|
+
die () { echo "$@" ; cleanup; exit 1; }
|
10
|
+
|
11
|
+
\. ../../../nvm.sh
|
12
|
+
|
13
|
+
mkdir -p tmp
|
14
|
+
touch tmp/node
|
15
|
+
mkdir -p tmp2
|
16
|
+
touch tmp2/node
|
17
|
+
|
18
|
+
[ "$(nvm_tree_contains_path 2>&1)" = "both the tree and the node path are required" ] || die 'incorrect error message with no args'
|
19
|
+
[ "$(nvm_tree_contains_path > /dev/null 2>&1 ; echo $?)" = "2" ] || die 'incorrect error code with no args'
|
20
|
+
[ "$(nvm_tree_contains_path tmp 2>&1)" = "both the tree and the node path are required" ] || die 'incorrect error message with one arg'
|
21
|
+
[ "$(nvm_tree_contains_path > /dev/null 2>&1 ; echo $?)" = "2" ] || die 'incorrect error code with one arg'
|
22
|
+
|
23
|
+
nvm_tree_contains_path tmp tmp/node || die '"tmp" should contain "tmp/node"'
|
24
|
+
|
25
|
+
nvm_tree_contains_path tmp tmp2/node && die '"tmp" should not contain "tmp2/node"'
|
26
|
+
|
27
|
+
nvm_tree_contains_path tmp2 tmp2/node || die '"tmp2" should contain "tmp2/node"'
|
28
|
+
|
29
|
+
nvm_tree_contains_path tmp2 tmp/node && die '"tmp2" should not contain "tmp/node"'
|
30
|
+
|
31
|
+
cleanup
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
cleanup() { unset -f nvm_ls_current nvm; }
|
4
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
5
|
+
|
6
|
+
\. ../../../nvm.sh
|
7
|
+
|
8
|
+
nvm_ls_current() { echo foo; }
|
9
|
+
|
10
|
+
nvm() {
|
11
|
+
echo "nvm: $@"
|
12
|
+
}
|
13
|
+
|
14
|
+
OUTPUT="$(nvm_use_if_needed foo)"
|
15
|
+
EXPECTED_OUTPUT=''
|
16
|
+
|
17
|
+
[ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] || die "expected >${EXPECTED_OUTPUT}<; got >${OUTPUT}<"
|
18
|
+
|
19
|
+
OUTPUT="$(nvm_use_if_needed bar)"
|
20
|
+
EXPECTED_OUTPUT='nvm: use bar'
|
21
|
+
|
22
|
+
[ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] || die "expected >${EXPECTED_OUTPUT}<; got >${OUTPUT}<"
|
23
|
+
|
24
|
+
cleanup
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
EXPECTED_MSG="Only implicit aliases 'stable', 'unstable', 'iojs', and 'node' are supported."
|
8
|
+
[ "_$(nvm_validate_implicit_alias 2>&1)" = "_$EXPECTED_MSG" ] \
|
9
|
+
|| die "nvm_validate_implicit_alias did not require stable|unstable|iojs|node"
|
10
|
+
[ "_$(nvm_validate_implicit_alias foo 2>&1)" = "_$EXPECTED_MSG" ] \
|
11
|
+
|| die "nvm_validate_implicit_alias did not require stable|unstable|iojs|node"
|
12
|
+
|
13
|
+
EXIT_CODE="$(nvm_validate_implicit_alias >/dev/null 2>&1 ; echo $?)"
|
14
|
+
[ "_$EXIT_CODE" = "_1" ] \
|
15
|
+
|| die "nvm_validate_implicit_alias without stable|unstable|iojs|node had wrong exit code: expected 1, got $EXIT_CODE"
|
16
|
+
|
17
|
+
nvm_validate_implicit_alias stable || die "nvm_validate_implicit_alias stable did not exit 0"
|
18
|
+
nvm_validate_implicit_alias unstable || die "nvm_validate_implicit_alias unstable did not exit 0"
|
19
|
+
nvm_validate_implicit_alias node || die "nvm_validate_implicit_alias node did not exit 0"
|
20
|
+
nvm_validate_implicit_alias iojs || die "nvm_validate_implicit_alias iojs did not exit 0"
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
cleanup () {
|
5
|
+
unset -f nvm_ls_current nvm_ls
|
6
|
+
}
|
7
|
+
|
8
|
+
\. ../../../nvm.sh
|
9
|
+
|
10
|
+
nvm_ls_current() {
|
11
|
+
echo "CURRENT!"
|
12
|
+
return 7
|
13
|
+
}
|
14
|
+
|
15
|
+
OUTPUT="$(nvm_version current)"
|
16
|
+
EXPECTED_OUTPUT="CURRENT!"
|
17
|
+
EXIT_CODE="$(nvm_version current 2>&1 >/dev/null ; echo $?)"
|
18
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die '"nvm_version current" did not return nvm_ls_current output'
|
19
|
+
[ "_$EXIT_CODE" = "_7" ] || die '"nvm_version current" did not return nvm_ls_current exit code'
|
20
|
+
|
21
|
+
OUTPUT="$(nvm_version)"
|
22
|
+
EXPECTED_OUTPUT="CURRENT!"
|
23
|
+
EXIT_CODE="$(nvm_version 2>&1 >/dev/null ; echo $?)"
|
24
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die '"nvm_version" did not return nvm_ls_current output'
|
25
|
+
[ "_$EXIT_CODE" = "_7" ] || die '"nvm_version" did not return nvm_ls_current exit code'
|
26
|
+
|
27
|
+
nvm_ls() {
|
28
|
+
echo "line 1"
|
29
|
+
echo "line 2"
|
30
|
+
echo "pattern: $1"
|
31
|
+
}
|
32
|
+
[ "_$(nvm_version foo)" = "_pattern: foo" ] || die '"nvm_version foo" did not pass the pattern to "nvm_ls", or return the last line'
|
33
|
+
[ "_$(nvm_version node)" = "_pattern: stable" ] || die '"nvm_version node" did not pass "stable" to "nvm_ls"'
|
34
|
+
[ "_$(nvm_version node-)" = "_pattern: stable" ] || die '"nvm_version node-" did not pass "stable" to "nvm_ls"'
|
35
|
+
|
36
|
+
nvm_ls() { echo "N/A"; }
|
37
|
+
OUTPUT="$(nvm_version foo)"
|
38
|
+
EXPECTED_OUTPUT="N/A"
|
39
|
+
EXIT_CODE="$(nvm_version foo 2>&1 >/dev/null ; echo $?)"
|
40
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die '"nvm_version" did not return N/A when nvm_ls returns N/A'
|
41
|
+
[ "_$EXIT_CODE" = "_3" ] || die '"nvm_version" returning N/A did not exit code with code 3'
|
42
|
+
|
43
|
+
nvm_ls() { echo; }
|
44
|
+
OUTPUT="$(nvm_version foo)"
|
45
|
+
EXPECTED_OUTPUT="N/A"
|
46
|
+
EXIT_CODE="$(nvm_version foo 2>&1 >/dev/null ; echo $?)"
|
47
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die '"nvm_version" did not return N/A when nvm_ls returns nothing'
|
48
|
+
[ "_$EXIT_CODE" = "_3" ] || die '"nvm_version" returning N/A did not exit code with code 3'
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
[ "$(nvm_version_dir)" = "$NVM_DIR/versions/node" ] || die '"nvm_version_dir" did not return new dir path'
|
8
|
+
[ "$(nvm_version_dir iojs)" = "$NVM_DIR/versions/io.js" ] || die '"nvm_version_dir iojs" did not return iojs dir path'
|
9
|
+
[ "$(nvm_version_dir new)" = "$(nvm_version_dir)" ] || die '"nvm_version_dir new" did not return new dir path'
|
10
|
+
[ "$(nvm_version_dir old)" = "$NVM_DIR" ] || die '"nvm_version_dir old" did not return old dir path'
|
11
|
+
[ "$(nvm_version_dir foo 2>&1)" = "unknown version dir" ] || die '"nvm_version_dir foo" did not error out'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm_version_greater 0.10.0 0.2.12 || die '"nvm_version_greater 0.10.0 0.2.12" did not return true'
|
8
|
+
|
9
|
+
if nvm_version_greater 0.10.0 0.20.12; then
|
10
|
+
die '"nvm_version_greater 0.10.0 0.20.12" returned true'
|
11
|
+
fi
|
12
|
+
|
13
|
+
if nvm_version_greater 0.10.0 0.10.0; then
|
14
|
+
die '"nvm_version_greater" returned false for the same two versions'
|
15
|
+
fi
|