2019-09-02 21:03:41 +00:00
|
|
|
#! /bin/bash
|
2016-04-02 02:19:32 +00:00
|
|
|
PLATFORM=$1
|
|
|
|
TYPE=$2
|
2019-09-02 21:03:41 +00:00
|
|
|
COVERAGE=$3
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="Category!=ManualTest"
|
2016-04-02 02:19:32 +00:00
|
|
|
TEST_PATTERN="*Test.dll"
|
2020-01-19 19:28:04 +00:00
|
|
|
FILES=( "Radarr.Api.Test.dll" "Radarr.Automation.Test.dll" "Radarr.Common.Test.dll" "Radarr.Core.Test.dll" "Radarr.Host.Test.dll" "Radarr.Integration.Test.dll" "Radarr.Libraries.Test.dll" "Radarr.Mono.Test.dll" "Radarr.Update.Test.dll" "Radarr.Windows.Test.dll" )
|
|
|
|
ASSMEBLIES=""
|
2019-09-02 21:03:41 +00:00
|
|
|
TEST_LOG_FILE="TestLog.txt"
|
|
|
|
|
|
|
|
echo "test dir: $TEST_DIR"
|
|
|
|
if [ -z "$TEST_DIR" ]; then
|
|
|
|
TEST_DIR="."
|
|
|
|
fi
|
2016-04-02 02:19:32 +00:00
|
|
|
|
|
|
|
if [ -d "$TEST_DIR/_tests" ]; then
|
|
|
|
TEST_DIR="$TEST_DIR/_tests"
|
|
|
|
fi
|
|
|
|
|
2019-09-02 21:03:41 +00:00
|
|
|
rm -f "$TEST_LOG_FILE"
|
|
|
|
|
|
|
|
# Uncomment to log test output to a file instead of the console
|
|
|
|
export RADARR_TESTS_LOG_OUTPUT="File"
|
|
|
|
|
2020-08-12 20:33:37 +00:00
|
|
|
VSTEST_PARAMS="--logger:nunit;LogFilePath=TestResult.xml"
|
2019-09-02 21:03:41 +00:00
|
|
|
|
|
|
|
if [ "$PLATFORM" = "Mac" ]; then
|
|
|
|
|
2019-10-14 20:21:00 +00:00
|
|
|
export DYLD_FALLBACK_LIBRARY_PATH="$TEST_DIR:$MONOPREFIX/lib:/usr/local/lib:/lib:/usr/lib"
|
2019-09-02 21:03:41 +00:00
|
|
|
echo $DYLD_FALLBACK_LIBRARY_PATH
|
2019-10-14 20:21:00 +00:00
|
|
|
mono --version
|
2019-09-02 21:03:41 +00:00
|
|
|
|
|
|
|
# To debug which libraries are being loaded:
|
|
|
|
# export DYLD_PRINT_LIBRARIES=YES
|
|
|
|
fi
|
2016-04-02 02:19:32 +00:00
|
|
|
|
|
|
|
if [ "$PLATFORM" = "Windows" ]; then
|
2019-09-02 21:03:41 +00:00
|
|
|
mkdir -p "$ProgramData/Radarr"
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="$WHERE&Category!=LINUX"
|
2019-09-02 21:03:41 +00:00
|
|
|
elif [ "$PLATFORM" = "Linux" ] || [ "$PLATFORM" = "Mac" ] ; then
|
|
|
|
mkdir -p ~/.config/Radarr
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="$WHERE&Category!=WINDOWS"
|
2016-04-02 02:19:32 +00:00
|
|
|
else
|
|
|
|
echo "Platform must be provided as first arguement: Windows, Linux or Mac"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$TYPE" = "Unit" ]; then
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="$WHERE&Category!=IntegrationTest&Category!=AutomationTest"
|
2016-04-02 02:19:32 +00:00
|
|
|
elif [ "$TYPE" = "Integration" ] || [ "$TYPE" = "int" ] ; then
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="$WHERE&Category=IntegrationTest"
|
2016-04-02 02:19:32 +00:00
|
|
|
elif [ "$TYPE" = "Automation" ] ; then
|
2019-10-14 21:42:30 +00:00
|
|
|
WHERE="$WHERE&Category=AutomationTest"
|
2016-04-02 02:19:32 +00:00
|
|
|
else
|
|
|
|
echo "Type must be provided as second argument: Unit, Integration or Automation"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2020-01-19 19:28:04 +00:00
|
|
|
for i in "${FILES[@]}";
|
|
|
|
do ASSEMBLIES="$ASSEMBLIES $TEST_DIR/$i"
|
2016-04-02 02:19:32 +00:00
|
|
|
done
|
|
|
|
|
2020-08-12 20:33:37 +00:00
|
|
|
DOTNET_PARAMS="$ASSEMBLIES --filter:$WHERE $VSTEST_PARAMS"
|
2019-12-07 07:37:11 +00:00
|
|
|
|
2019-09-02 21:03:41 +00:00
|
|
|
if [ "$COVERAGE" = "Coverage" ]; then
|
2020-08-12 20:33:37 +00:00
|
|
|
dotnet test $DOTNET_PARAMS --settings:"src/coverlet.runsettings" --results-directory:./CoverageResults
|
2019-12-07 07:37:11 +00:00
|
|
|
EXIT_CODE=$?
|
2019-09-02 21:03:41 +00:00
|
|
|
elif [ "$COVERAGE" = "Test" ] ; then
|
2020-08-12 20:33:37 +00:00
|
|
|
dotnet test $DOTNET_PARAMS
|
2019-09-02 21:03:41 +00:00
|
|
|
EXIT_CODE=$?
|
|
|
|
else
|
|
|
|
echo "Run Type must be provided as third argument: Coverage or Test"
|
|
|
|
exit 3
|
|
|
|
fi
|
2016-10-25 21:00:27 +00:00
|
|
|
|
|
|
|
if [ "$EXIT_CODE" -ge 0 ]; then
|
|
|
|
echo "Failed tests: $EXIT_CODE"
|
2019-09-02 21:03:41 +00:00
|
|
|
exit 0
|
2016-10-25 21:00:27 +00:00
|
|
|
else
|
|
|
|
exit $EXIT_CODE
|
|
|
|
fi
|