aboutsummaryrefslogtreecommitdiffstats
path: root/screwdriver/test-quick-start-guide.sh
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahooinc.com>2023-03-14 12:17:31 +0100
committerArnstein Ressem <aressem@yahooinc.com>2023-03-15 10:39:00 +0100
commit4645af85f4b767d953de90fd3e88993b46c4bff4 (patch)
tree5bf02487de7ef110f6a8d6f256a59da5e7e71f2e /screwdriver/test-quick-start-guide.sh
parent66df58b0c5783e231a8232f8d45e748d25ef30d1 (diff)
Separate out quick start guide test and use the same both for regular and legacy image.
Diffstat (limited to 'screwdriver/test-quick-start-guide.sh')
-rwxr-xr-xscrewdriver/test-quick-start-guide.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/screwdriver/test-quick-start-guide.sh b/screwdriver/test-quick-start-guide.sh
new file mode 100755
index 00000000000..f3f12c229b0
--- /dev/null
+++ b/screwdriver/test-quick-start-guide.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+# This test will test the quick start guide that use the vespaengine/vespa:latest image. To test a locally
+# generated image, make sure that the image is tagged as vespaengine/vespa:latest.
+set -xeuo pipefail
+
+TESTDIR=$(mktemp -d)
+trap "rm -rf $TESTDIR" EXIT
+
+cd $TESTDIR
+
+# Clone and setup doc tests
+git clone -q --depth 1 https://github.com/vespa-engine/documentation
+cd documentation
+python3 -m pip install -qqq -r test/requirements.txt --user
+echo -e "urls:\n - en/vespa-quick-start.html" > test/_quick-start.yaml
+
+# Get the required vespa CLI
+VESPA_CLI_VERSION=$(curl -fsSL https://api.github.com/repos/vespa-engine/vespa/releases/latest | grep -Po '"tag_name": "v\K.*?(?=")')
+curl -fsSL https://github.com/vespa-engine/vespa/releases/download/v${VESPA_CLI_VERSION}/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64.tar.gz | tar -zxf - -C /opt
+ln -sf /opt/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64/bin/vespa /usr/local/bin/
+
+# Run test
+test/test.py -v -c test/_quick-start.yaml
+