diff options
Diffstat (limited to 'test/apps/bun-install-lockfile-status.sh')
-rw-r--r-- | test/apps/bun-install-lockfile-status.sh | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/test/apps/bun-install-lockfile-status.sh b/test/apps/bun-install-lockfile-status.sh new file mode 100644 index 000000000..b23b4fc3c --- /dev/null +++ b/test/apps/bun-install-lockfile-status.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +set -euo pipefail + +killall -9 $(basename $BUN_BIN) || echo "" + +dir=$(mktemp -d --suffix=bun-lockfile) + +cd $dir + +$BUN_BIN add react + +echo "node_modules" >.gitignore + +git init && git add . && git commit -am "Initial commit" + +$BUN_BIN install + +ORIG_LOCKFILE="$($BUN_BIN pm hash-string)" + +[[ -z $(git status --untracked-files=no --porcelain) ]] || { + echo "ERR: Expected empty git status, got '$(git status --untracked-files=no --porcelain)'" + exit 1 +} + +$BUN_BIN add react + +NEW_LOCKFILE="$($BUN_BIN pm hash-string)" + +diff <(echo "$ORIG_LOCKFILE") <(echo "$NEW_LOCKFILE") || { + echo "ERR: Expected lockfile to be unchanged, got '$NEW_LOCKFILE'" + exit 1 +} + +ORIG_HASH=$($BUN_BIN bun.lockb --hash) + +$BUN_BIN remove react +$BUN_BIN add react + +NEW_HASH=$($BUN_BIN bun.lockb --hash) + +diff <(echo "$ORIG_HASH") <(echo "$NEW_HASH") || { + echo "ERR: Expected hash to be unchanged, got '$NEW_HASH'" + exit 1 +} + +echo '{ "dependencies": { "react": "17.0.2", "react-dom": "17.0.2" } }' >package.json + +$BUN_BIN install + +echo "var {version} = JSON.parse(require(\"fs\").readFileSync('./node_modules/react-dom/package.json', 'utf8')); if (version !== '17.0.2') {throw new Error('Unexpected react-dom version');}; " >index.js +$BUN_BIN run ./index.js + +echo "var {version} = JSON.parse(require(\"fs\").readFileSync('./node_modules/react/package.json', 'utf8')); if (version !== '17.0.2') {throw new Error('Unexpected react version');}; " >index.js +$BUN_BIN run ./index.js + +# This is just making sure that the JS was executed +realpath -e node_modules/react-dom >/dev/null || { + echo "ERR: Expected react-dom to be installed" + exit 1 +} +realpath -e node_modules/react >/dev/null || { + echo "ERR: Expected react to be installed" + exit 1 +} |