Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move the dev tests to the dev_e2e subfolder #147

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion environment/aws/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
terraform.tfstate*
terraform.tfstate*
topology.json
4 changes: 2 additions & 2 deletions jenkins/pipelines/android/android_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ echo "Start the environment"
jenkins/pipelines/shared/setup_backend.sh "${SG_URL}"

echo "Configure the tests"
rm -rf tests/config_android.json
rm -rf tests/dev_e2e/config_android.json
cp -f "jenkins/pipelines/android/config_android.json" tests
pushd tests
pushd tests/dev_e2e
echo ' "test-servers": ["http://'"$ANDROID_IP"':8080"]' >> config_android.json
echo '}' >> config_android.json
cat config_android.json
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/c/ios_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SGW_URL=${5}

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
TEST_SERVER_DIR="${SCRIPT_DIR}/../../../servers/c"
TESTS_DIR="${SCRIPT_DIR}/../../../tests"
TESTS_DIR="${SCRIPT_DIR}/../../../tests/dev_e2e"

echo "Build Test Server"
pushd "${TEST_SERVER_DIR}" > /dev/null
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/c/linux_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SGW_URL=${5}

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
TEST_SERVER_DIR="${SCRIPT_DIR}/../../../servers/c"
TESTS_DIR="${SCRIPT_DIR}/../../../tests"
TESTS_DIR="${SCRIPT_DIR}/../../../tests/dev_e2e"

echo "Build Test Server"
pushd "${TEST_SERVER_DIR}" > /dev/null
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/c/macos_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SGW_URL=${5}

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
TEST_SERVER_DIR="${SCRIPT_DIR}/../../../servers/c"
TESTS_DIR="${SCRIPT_DIR}/../../../tests"
TESTS_DIR="${SCRIPT_DIR}/../../../tests/dev_e2e"

echo "Build Test Server"
pushd "${TEST_SERVER_DIR}" > /dev/null
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/c/wins_test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param(

$TestServerDir = "$PSScriptRoot\..\..\..\servers\c"
$SharedDir="$PSScriptRoot\..\shared"
$TestsDir = "$PSScriptRoot\..\..\..\tests"
$TestsDir = "$PSScriptRoot\..\..\..\tests\dev_e2e"

Write-Host "Build Test Server"
Push-Location $TestServerDir
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/dotnet/run_test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if ($null -ne $PrivateKeyPath) {

python $PSScriptRoot\setup_test.py @python_args

Push-Location $PSScriptRoot\..\..\..\tests
Push-Location $PSScriptRoot\..\..\..\tests\dev_e2e
pip install -r requirements.txt
pytest -v --no-header --config config.json
$saved_exit = $LASTEXITCODE
Expand Down
2 changes: 1 addition & 1 deletion jenkins/pipelines/dotnet/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ else
python3 $SCRIPT_DIR/setup_test.py $platform $cbl_version $sgw_url
fi

pushd $SCRIPT_DIR/../../../tests
pushd $SCRIPT_DIR/../../../tests/dev_e2e
pip install -r requirements.txt
pytest -v --no-header --config config.json
deactivate
2 changes: 1 addition & 1 deletion jenkins/pipelines/dotnet/setup_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@
args.sgw_url,
str(SCRIPT_DIR / "config_aws.json"),
private_key=args.private_key,
tdk_config_out=str(SCRIPT_DIR.parents[2] / "tests" / "config.json"),
tdk_config_out=str(SCRIPT_DIR.parents[2] / "tests" / "dev_e2e" / "config.json"),
)
2 changes: 1 addition & 1 deletion jenkins/pipelines/ios/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SGW_URL=${5}
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
SHARED_DIR="${SCRIPT_DIR}/../shared"
TEST_SERVER_DIR="${SCRIPT_DIR}/../../../servers/ios"
TESTS_DIR="${SCRIPT_DIR}/../../../tests"
TESTS_DIR="${SCRIPT_DIR}/../../../tests/dev_e2e"

# Find a connected iOS device:
DEVICE_UDID="$("${SHARED_DIR}/ios_device.sh")"
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/desktop/linux_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ while [[ -z "$SERVER_URL" ]]; do
done

echo "Linux Desktop: Configure the tests"
rm -rf tests/config_java_desktop.json
rm -rf tests/dev_e2e/config_java_desktop.json
cp -f "jenkins/pipelines/java/desktop/config_java_desktop.json" tests
pushd tests > /dev/null
pushd tests/dev_e2e > /dev/null
echo ' "test-servers": ["'"$SERVER_URL"'"]' >> config_java_desktop.json
echo '}' >> config_java_desktop.json
cat config_java_desktop.json
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/desktop/osx_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ while [[ -z "$SERVER_URL" ]]; do
done

echo "OSX Desktop: Configure the tests"
rm -rf tests/config_java_desktop.json
rm -rf tests/dev_e2e/config_java_desktop.json
cp -f "jenkins/pipelines/java/desktop/config_java_desktop.json" tests
pushd tests > /dev/null
pushd tests/dev_e2e > /dev/null
echo ' "test-servers": ["'"$SERVER_URL"'"]' >> config_java_desktop.json
echo '}' >> config_java_desktop.json
cat config_java_desktop.json
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/desktop/win_tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ try
}

Write-Host "Windows Desktop: Configure the tests"
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue tests\config_java_desktop.json
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue tests\dev_e2e\config_java_desktop.json
Copy-Item .\jenkins\pipelines\java\desktop\config_java_desktop.json -Destination tests
Push-Location tests
Push-Location tests\dev_e2e
Add-Content config_java_desktop.json " `"test-servers`": [`"$serverUrl`"]"
Add-Content config_java_desktop.json '}'
Get-Content config_java_desktop.json
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/webservice/linux_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ while [[ -z "$SERVER_URL" ]]; do
done

echo "Linux Web Service: Configure the tests"
rm -rf tests/config_java_webservice.json
rm -rf tests/dev_e2e/config_java_webservice.json
cp -f "jenkins/pipelines/java/webservice/config_java_webservice.json" tests
pushd tests > /dev/null
pushd tests/dev_e2e > /dev/null
echo ' "test-servers": ["'"$SERVER_URL"'"]' >> config_java_webservice.json
echo '}' >> config_java_webservice.json
cat config_java_webservice.json
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/webservice/osx_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ while [[ -z "$SERVER_URL" ]]; do
done

echo "OSX Web Service: Configure the tests"
rm -rf tests/config_java_webservice.json
rm -rf tests/dev_e2e/config_java_webservice.json
cp -f "jenkins/pipelines/java/webservice/config_java_webservice.json" tests
pushd tests > /dev/null
pushd tests/dev_e2e > /dev/null
echo ' "test-servers": ["'"$SERVER_URL"'"]' >> config_java_webservice.json
echo '}' >> config_java_webservice.json
cat config_java_webservice.json
Expand Down
4 changes: 2 additions & 2 deletions jenkins/pipelines/java/webservice/win_tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ try
}

Write-Host "Windows Web Service: Configure the tests"
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue tests\config_java_webservice.json
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue tests\dev_e2e\config_java_webservice.json
Copy-Item jenkins\pipelines\java\webservice\config_java_webservice.json -Destination tests
Push-Location tests
Push-Location tests\dev_e2e
Add-Content config_java_webservice.json " `"test-servers`": [`"$serverUrl`"]"
Add-Content config_java_webservice.json '}'
Get-Content config_java_webservice.json
Expand Down
1 change: 1 addition & 0 deletions tests/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ java-config.json
c-config.json
testserver.log
session.log
config.json
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading