/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/junitreport/test/integration.sh
44 строки
1 KB
Clayton Coleman
Correctly parse nested go tests
18 окт 2017, 00:34
Не верифицирован
18 окт 2017, 00:34
8d7e455
Код
Авторство
О чём код?
#!/bin/bash # This file runs the integration tests for the `junitreport` binary to ensure that correct jUnit XML is produced. set -o errexit set -o nounset set -o pipefail JUNITREPORT_ROOT=$(dirname "${BASH_SOURCE}")/.. pushd "${JUNITREPORT_ROOT}" > /dev/null diff_args='-ydb --suppress-common-lines' TMPDIR="/tmp/junitreport/test/integration" mkdir -p "${TMPDIR}" for suite in test/*/; do suite_name=$( basename ${suite} ) echo "[INFO] Testing suite ${suite_name}..." WORKINGDIR="${TMPDIR}/${suite_name}" mkdir -p "${WORKINGDIR}" # test every case with flat and nested suites for test in ${suite}/testdata/*.txt; do test_name=$( basename ${test} '.txt' ) cat "${test}" | junitreport -type "${suite_name}" -suites flat > "${WORKINGDIR}/${test_name}_flat.xml" if ! diff ${diff_args} "${suite}/reports/${test_name}_flat.xml" "${WORKINGDIR}/${test_name}_flat.xml"; then echo "[FAIL] Test '${test_name}' in suite '${suite_name}' failed for flat suite builder." exit 1 fi cat "${WORKINGDIR}/${test_name}_flat.xml" | junitreport summarize > "${WORKINGDIR}/${test_name}_summary.txt" if ! diff ${diff_args} "${suite}/summaries/${test_name}_summary.txt" "${WORKINGDIR}/${test_name}_summary.txt"; then echo "[FAIL] Test '${test_name}' in suite '${suite_name}' failed to summarize flat XML." fi done echo "[PASS] Test output type passed: ${suite_name}" done echo "[PASS] junitreport testing successful" popd > /dev/null