forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-mongodb-aws-test.sh
executable file
·49 lines (38 loc) · 1.4 KB
/
run-mongodb-aws-test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env bash
set -o xtrace
set -o errexit # Exit the script with error if any of the commands fail
# Supported/used environment variables:
# MONGODB_URI Set the URI, including username/password to use to connect to the server via MONGODBAWS authentication mechanism
# OS Current operation system
# ASSERT_NO_URI_CREDS Determines whether we need assert existence credentials in connection string or not
############################################
# Main Program #
############################################
echo "Running MONGODB-AWS authentication tests"
echo "OS: $OS"
for var in TMP TEMP NUGET_PACKAGES NUGET_HTTP_CACHE_PATH APPDATA; do
if [[ "$OS" =~ Windows|windows ]]; then
export $var=z:\\data\\tmp;
else
export $var=/data/tmp;
fi
done
# ensure no secrets are printed in log files
set +x
# Handle credentials and environment setup.
. $DRIVERS_TOOLS/.evergreen/auth_aws/aws_setup.sh $1
if [ "${ASSERT_NO_URI_CREDS:-false}" = "true" ]; then
if echo "$MONGODB_URI" | grep -q "@"; then
echo "MONGODB_URI unexpectedly contains user credentials!";
exit 1
fi
fi
export MONGODB_URI
export AWS_TESTS_ENABLED=true
# show test output
set -x
if [[ "$OS" =~ Windows|windows ]]; then
powershell.exe .\\build.ps1 --target=TestAwsAuthentication
else
./build.sh --target=TestAwsAuthentication
fi