c51ff3bce1
* feat: add installExtension integration test This adds a new helper function called `runCodeServerCommand` along with a test for `--install-extension`. We can use this approach for writing integration tests (i.e. testing a real code-server build, CLI commands, etc). * refactor: s/ test:standalone with test:integration This replaces our integration approach to use Jest instead of a single bash script. By doing this, we will be able to easily maintain and add to our integration test suite. * refactor: filter unit tests Now that our integration tests also use Jest, we need to update our unit test script to ignore `test/integration`. * refactor: add SKIP_SUBMODULE_DEPS to postinstall * refactor: add SKIP_SUBMODULE_DEPS to postinstall * fixup!: skip submod deps * refactor: move runCodeServerCommand into sep. file When Jest runs a test, it loads all the files and imports for that test. This means you might be "requiring" code that's unrelated to your tests. This leads to unexpected errors depending on where the code runs. Moved this file to avoid GLIBC and other errors relaed to argon2 when running integration tests in CI. * fizup: formatting * fizup: increase timeout * refactor: use fixture in installExtension test Instead of relying on a network to install an extension, we use a fixture - vsix file in the repo. This is also faster. * feat: add integration test for listExtensions * chore: ignore integration fixtures * fixup: formatting * fixup: remove custom-hacks.css * fixup: formatting * Update test/integration/installExtension.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/integration/listExtensions.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/integration/installExtension.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/integration/listExtensions.test.ts Co-authored-by: Asher <ash@coder.com> * fixup: contributing integration tests section * fixup: update ci/readme * fixup: use RELEASE_PATH in test-integration.sh * refactor: unzip vsix for listExtensions * refactor: use exec instead of spawn * Update docs/CONTRIBUTING.md Co-authored-by: Asher <ash@coder.com> * Update test/integration/listExtensions.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/integration/listExtensions.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/integration/listExtensions.test.ts Co-authored-by: Asher <ash@coder.com> * refactor: use different default binary path * fixup!: formatting Co-authored-by: Asher <ash@coder.com>
40 lines
988 B
Bash
Executable File
40 lines
988 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Install dependencies in $1.
|
|
install-deps() {
|
|
local args=(install)
|
|
if [[ ${CI-} ]]; then
|
|
args+=(--frozen-lockfile)
|
|
fi
|
|
if [[ "$1" == "lib/vscode" ]]; then
|
|
args+=(--no-default-rc)
|
|
fi
|
|
# If there is no package.json then yarn will look upward and end up installing
|
|
# from the root resulting in an infinite loop (this can happen if you have not
|
|
# checked out the submodule yet for example).
|
|
if [[ ! -f "$1/package.json" ]]; then
|
|
echo "$1/package.json is missing; did you run git submodule update --init?"
|
|
exit 1
|
|
fi
|
|
pushd "$1"
|
|
echo "Installing dependencies for $PWD"
|
|
yarn "${args[@]}"
|
|
popd
|
|
}
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
install-deps test
|
|
install-deps test/e2e/extensions/test-extension
|
|
# We don't need these when running the integration tests
|
|
# so you can pass SKIP_SUBMODULE_DEPS
|
|
if [[ ! ${SKIP_SUBMODULE_DEPS-} ]]; then
|
|
install-deps lib/vscode
|
|
fi
|
|
}
|
|
|
|
main "$@"
|