sourcegraph/dev/codeintel-qa
2022-05-05 19:13:59 +01:00
..
cmd codeintel-qa: Add clear command (#34936) 2022-05-05 19:13:59 +01:00
internal codeintel-qa: Add clear command (#34936) 2022-05-05 19:13:59 +01:00
scripts migrations: Small refactor to runner package (#30428) 2022-01-31 14:47:48 -07:00
.gitignore codeintel-qa: Rewrite precise-code-intel-tester (#25412) 2021-10-04 09:46:24 -05:00
CODENOTIFY codeintel-qa: Rewrite precise-code-intel-tester (#25412) 2021-10-04 09:46:24 -05:00
README.md codeintel-qa: Add clear command (#34936) 2022-05-05 19:13:59 +01:00

Precise code intel tester

This package provides integration and load testing utilities for precise code intel services.

Prerequisites

Ensure that the following tools are available on your path:

Set:

SOURCEGRAPH_BASE_URL=http://localhost:3080
SOURCEGRAPH_SUDO_TOKEN=<YOUR SOURCEGRAPH API ACCESS TOKEN>

Testing

  1. Ensure these repositories exist on your instance (in Site Admin -> Manage repositories -> GitHub):
  "repos": [
    "sourcegraph-testing/etcd",
    "sourcegraph-testing/tidb",
    "sourcegraph-testing/titan",
    "sourcegraph-testing/zap"
  ],
  1. Download the test indexes by running the following command:
./scripts/download.sh

Alternatively, generate them by running the following command (this takes much longer):

./scripts/clone-and-index.sh

If there is previous upload or index state on the target instance, they can be cleared by running the following command:

go run ./cmd/clear

Upload the indexes to the target instance by running the following command:

go run ./cmd/upload

Then run test queries against the target instance by running the following command:

go run ./cmd/query

Refreshing indexes

If there is a change to an indexer that needs to be tested, the indexes can be regenerated and uploaded to gcloud for future test runs.

Generate indexes by running the following command:

./scripts/clone-and-index.sh

Upload the generated indexes by running the following command:

./scripts/upload.sh

Or if you just want to test an indexer change locally, you can:

rm -rf testdata/indexes/

Then rerun the testing steps described above (starting at clone-and-index.sh)