forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-gssapi-auth-tests.sh
executable file
·45 lines (34 loc) · 1.86 KB
/
run-gssapi-auth-tests.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
#!/usr/bin/env bash
# Don't trace since the URI contains a password that shouldn't show up in the logs
set -o errexit # Exit the script with error if any of the commands fail
# Supported/used environment variables:
# AUTH_HOST Set the hostname of a key distribution center (KDC)
# AUTH_GSSAPI Set the GSSAPI credentials, including a user principal/password to use to connect to AUTH_HOST server via GSSAPI authentication mechanism
# FRAMEWORK Set target framework to test against
# OS Set whether the current operating system is Windows or not
# PROJECT_DIRECTORY Set the working directory for the project (only required for non-Windows environments)
############################################
# Main Program #
############################################
echo "Running GSSAPI authentication tests"
export GSSAPI_TESTS_ENABLED=true
TARGET="TestGssapi${FRAMEWORK}"
if [ "Windows_NT" = "$OS" ]; then
cmd /c "REG ADD HKLM\SYSTEM\ControlSet001\Control\Lsa\Kerberos\Domains\LDAPTEST.10GEN.CC /v KdcNames /d ldaptest.10gen.cc /t REG_MULTI_SZ /f"
echo "LDAPTEST.10GEN.CC registry has been added"
cmd /c "REG ADD HKLM\SYSTEM\ControlSet001\Control\Lsa\Kerberos\Domains\LDAPTEST2.10GEN.CC /v KdcNames /d ldaptest.10gen.cc /t REG_MULTI_SZ /f"
echo "LDAPTEST2.10GEN.CC registry has been added"
for var in TMP TEMP NUGET_PACKAGES NUGET_HTTP_CACHE_PATH APPDATA; do
setx $var z:\\data\\tmp
export $var=z:\\data\\tmp
done
powershell.exe .\\build.ps1 --target $TARGET
else
echo "Setting krb5 config file"
touch ${PROJECT_DIRECTORY}/evergreen/krb5.conf.empty
export KRB5_CONFIG=${PROJECT_DIRECTORY}/evergreen/krb5.conf.empty
for var in TMP TEMP NUGET_PACKAGES NUGET_HTTP_CACHE_PATH APPDATA; do
export $var=/data/tmp;
done
./build.sh --target=$TARGET
fi;