2024-01-30 14:24:55 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
SUPER_LINTER_TEST_CONTAINER_URL="${1}"
|
|
|
|
TEST_FUNCTION_NAME="${2}"
|
|
|
|
|
2024-04-18 02:48:55 -04:00
|
|
|
DEFAULT_BRANCH="main"
|
|
|
|
|
|
|
|
COMMAND_TO_RUN=(docker run -e DEFAULT_BRANCH="${DEFAULT_BRANCH}" -e ENABLE_GITHUB_ACTIONS_GROUP_TITLE=true)
|
|
|
|
|
|
|
|
configure_linters_for_test_cases() {
|
|
|
|
COMMAND_TO_RUN+=(-e TEST_CASE_RUN=true -e JSCPD_CONFIG_FILE=".jscpd-test-linters.json" -e RENOVATE_SHAREABLE_CONFIG_PRESET_FILE_NAMES="default.json,hoge.json" -e TYPESCRIPT_STANDARD_TSCONFIG_FILE=".github/linters/tsconfig.json")
|
|
|
|
}
|
2024-01-30 14:24:55 -05:00
|
|
|
|
|
|
|
run_test_cases_expect_failure() {
|
2024-04-18 02:48:55 -04:00
|
|
|
configure_linters_for_test_cases
|
2024-01-30 14:24:55 -05:00
|
|
|
COMMAND_TO_RUN+=(-e ANSIBLE_DIRECTORY="/test/linters/ansible/bad" -e CHECKOV_FILE_NAME=".checkov-test-linters-failure.yaml" -e FILTER_REGEX_INCLUDE=".*bad.*")
|
|
|
|
EXPECTED_EXIT_CODE=1
|
|
|
|
}
|
|
|
|
|
|
|
|
run_test_cases_expect_success() {
|
2024-04-18 02:48:55 -04:00
|
|
|
configure_linters_for_test_cases
|
2024-01-30 14:24:55 -05:00
|
|
|
COMMAND_TO_RUN+=(-e ANSIBLE_DIRECTORY="/test/linters/ansible/good" -e CHECKOV_FILE_NAME=".checkov-test-linters-success.yaml" -e FILTER_REGEX_INCLUDE=".*good.*")
|
|
|
|
}
|
|
|
|
|
2024-02-09 13:43:58 -05:00
|
|
|
run_test_cases_log_level() {
|
|
|
|
run_test_cases_expect_success
|
|
|
|
LOG_LEVEL="NOTICE"
|
|
|
|
}
|
|
|
|
|
2024-02-10 04:16:31 -05:00
|
|
|
run_test_cases_expect_failure_notice_log() {
|
|
|
|
run_test_cases_expect_failure
|
|
|
|
LOG_LEVEL="NOTICE"
|
|
|
|
}
|
|
|
|
|
2024-02-09 17:57:01 -05:00
|
|
|
run_test_cases_non_default_home() {
|
|
|
|
run_test_cases_expect_success
|
|
|
|
COMMAND_TO_RUN+=(-e HOME=/tmp)
|
|
|
|
}
|
|
|
|
|
2024-02-27 13:17:22 -05:00
|
|
|
run_test_case_bash_exec_library_expect_failure() {
|
|
|
|
run_test_cases_expect_failure
|
|
|
|
COMMAND_TO_RUN+=(-e BASH_EXEC_IGNORE_LIBRARIES="true")
|
|
|
|
}
|
|
|
|
|
|
|
|
run_test_case_bash_exec_library_expect_success() {
|
|
|
|
run_test_cases_expect_success
|
|
|
|
COMMAND_TO_RUN+=(-e BASH_EXEC_IGNORE_LIBRARIES="true")
|
|
|
|
}
|
|
|
|
|
2024-04-18 02:48:55 -04:00
|
|
|
run_test_case_git_initial_commit() {
|
|
|
|
local GIT_REPOSITORY_PATH
|
|
|
|
GIT_REPOSITORY_PATH="$(mktemp -d)"
|
|
|
|
# shellcheck disable=SC2064 # Once the path is set, we don't expect it to change
|
|
|
|
trap "rm -fr '${GIT_REPOSITORY_PATH}'" EXIT
|
|
|
|
|
|
|
|
git -C "${GIT_REPOSITORY_PATH}" init --initial-branch="${DEFAULT_BRANCH}"
|
|
|
|
git -C "${GIT_REPOSITORY_PATH}" config user.name "Super-linter Test"
|
|
|
|
git -C "${GIT_REPOSITORY_PATH}" config user.email "super-linter-test@example.com"
|
|
|
|
cp -v test/data/github-event/github-event-push.json "${GIT_REPOSITORY_PATH}/"
|
|
|
|
git -C "${GIT_REPOSITORY_PATH}" add .
|
|
|
|
git -C "${GIT_REPOSITORY_PATH}" commit -m "feat: initial commit"
|
|
|
|
|
|
|
|
local TEST_GITHUB_SHA
|
|
|
|
TEST_GITHUB_SHA="$(git -C "${GIT_REPOSITORY_PATH}" rev-parse HEAD)"
|
|
|
|
|
|
|
|
RUN_LOCAL=false
|
|
|
|
SUPER_LINTER_WORKSPACE="${GIT_REPOSITORY_PATH}"
|
|
|
|
COMMAND_TO_RUN+=(-e GITHUB_WORKSPACE="/tmp/lint")
|
|
|
|
COMMAND_TO_RUN+=(-e GITHUB_EVENT_NAME="push")
|
|
|
|
COMMAND_TO_RUN+=(-e GITHUB_EVENT_PATH="/tmp/lint/github-event-push.json")
|
|
|
|
COMMAND_TO_RUN+=(-e GITHUB_SHA="${TEST_GITHUB_SHA}")
|
|
|
|
COMMAND_TO_RUN+=(-e MULTI_STATUS=false)
|
|
|
|
COMMAND_TO_RUN+=(-e VALIDATE_ALL_CODEBASE=false)
|
|
|
|
COMMAND_TO_RUN+=(-e VALIDATE_JSON=true)
|
|
|
|
}
|
|
|
|
|
2024-01-30 14:24:55 -05:00
|
|
|
# Run the test setup function
|
|
|
|
${TEST_FUNCTION_NAME}
|
|
|
|
|
2024-02-09 13:43:58 -05:00
|
|
|
COMMAND_TO_RUN+=(-e LOG_LEVEL="${LOG_LEVEL:-"DEBUG"}")
|
2024-04-18 02:48:55 -04:00
|
|
|
COMMAND_TO_RUN+=(-e RUN_LOCAL="${RUN_LOCAL:-true}")
|
|
|
|
COMMAND_TO_RUN+=(-v "${SUPER_LINTER_WORKSPACE:-$(pwd)}:/tmp/lint")
|
2024-01-30 14:24:55 -05:00
|
|
|
COMMAND_TO_RUN+=("${SUPER_LINTER_TEST_CONTAINER_URL}")
|
|
|
|
|
|
|
|
declare -i EXPECTED_EXIT_CODE
|
|
|
|
EXPECTED_EXIT_CODE=${EXPECTED_EXIT_CODE:-0}
|
|
|
|
|
|
|
|
if [ ${EXPECTED_EXIT_CODE} -ne 0 ]; then
|
|
|
|
echo "Disable failures on error because the expected exit code is ${EXPECTED_EXIT_CODE}"
|
|
|
|
set +o errexit
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Command to run: ${COMMAND_TO_RUN[*]}"
|
|
|
|
|
|
|
|
"${COMMAND_TO_RUN[@]}"
|
|
|
|
SUPER_LINTER_EXIT_CODE=$?
|
|
|
|
# Enable the errexit option in case we disabled it
|
|
|
|
set -o errexit
|
|
|
|
|
|
|
|
echo "Super-linter exit code: ${SUPER_LINTER_EXIT_CODE}"
|
|
|
|
|
|
|
|
if [ ${SUPER_LINTER_EXIT_CODE} -ne ${EXPECTED_EXIT_CODE} ]; then
|
|
|
|
echo "Super-linter exited with an unexpected code: ${SUPER_LINTER_EXIT_CODE}"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "Super-linter exited with the expected code: ${SUPER_LINTER_EXIT_CODE}"
|
|
|
|
fi
|