-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a22b63f
commit 934c07b
Showing
5 changed files
with
117 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Run tests | ||
|
||
env: | ||
|
||
# Trigger test workflow whenever: | ||
# 1. Commits are pushed directly to the mrt branch | ||
on: | ||
push: | ||
branches: ["mrt"] | ||
pull_request: | ||
branches: ["mrt"] | ||
types: [ | ||
# Default triggers | ||
opened, | ||
synchronize, | ||
reopened, | ||
# Additional triggers | ||
labeled, | ||
unlabeled | ||
] | ||
workflow_dispatch: | ||
inputs: | ||
test-server-rc: | ||
type: boolean | ||
default: false | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 6.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Install dependencies | ||
run: dotnet add package NeoLua --version 1.3.14 | ||
- name: Build | ||
run: dotnet build --no-restore | ||
|
||
test-ee: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: ./.github/actions/run-ee-server | ||
with: | ||
use-server-rc: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }} | ||
docker-hub-username: ${{ secrets.DOCKER_HUB_BOT_USERNAME }} | ||
docker-hub-password: ${{ secrets.DOCKER_HUB_BOT_PW }} | ||
|
||
- name: Run tests | ||
run: dotnet test --no-build --verbosity normal | ||
|
||
- name: Show logs if failed | ||
if: ${{ failure() }} | ||
run: | | ||
docker container logs aerospike | ||
cat ./configs/aerospike.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
# Makes sure that if the "docker exec" command fails, it is not ignored | ||
set -o pipefail | ||
|
||
container_name=$1 | ||
is_security_enabled=$2 | ||
|
||
if [[ $is_security_enabled == true ]]; then | ||
# We need to pass credentials to asinfo if server requires it | ||
# TODO: passing in credentials via command line flags since I can't figure out how to use --instance with global astools.conf | ||
user_credentials="--user=admin --password=admin" | ||
fi | ||
|
||
while true; do | ||
# An unset variable will have a default empty value | ||
# Intermediate step is to print docker exec command's output in case it fails | ||
# Sometimes, errors only appear in stdout and not stderr, like if asinfo throws an error because of no credentials | ||
# (This is a bug in asinfo since all error messages should be sent to stderr) | ||
# But piping and passing stdin to grep will hide the first command's stdout. | ||
# grep doesn't have a way to print all lines passed as input. | ||
# ack does have an option but it doesn't come installed by default | ||
# shellcheck disable=SC2086 # The flags in user credentials should be separate anyways. Not one string | ||
echo "Checking if we can reach the server via the service port..." | ||
if docker exec "$container_name" asinfo $user_credentials -v status | tee >(cat) | grep -qE "^ok"; then | ||
# Server is ready when asinfo returns ok | ||
echo "Can reach server now." | ||
# docker container inspect "$container_name" | ||
break | ||
fi | ||
|
||
echo "Server didn't return ok via the service port. Polling again..." | ||
done | ||
|
||
# Although the server may be reachable via the service port, the cluster may not be fully initialized yet. | ||
# If we try to connect too soon (e.g right after "status" returns ok), the client may throw error code -1 | ||
while true; do | ||
echo "Waiting for server to stabilize (i.e return a cluster key)..." | ||
# We assume that when an ERROR is returned, the cluster is not stable yet (i.e not fully initialized) | ||
if docker exec "$container_name" asinfo $user_credentials -v cluster-stable 2>&1 | (! grep -qE "^ERROR"); then | ||
echo "Server is in a stable state." | ||
break | ||
fi | ||
|
||
echo "Server did not return a cluster key. Polling again..." | ||
done |