From b363bf83e6aac8b5187a6d6a56b46346a8d297ae Mon Sep 17 00:00:00 2001 From: Mikko Karjalainen Date: Mon, 14 Oct 2019 08:59:05 +0100 Subject: [PATCH] Add TestErrorReporter and ProjectConfig to Styx functional test suite. --- .../hotels/styx/support/TestErrorReporter.kt | 65 +++++++++++++++++++ .../io/kotlintest/provided/ProjectConfig.kt | 24 +++++++ 2 files changed, 89 insertions(+) create mode 100644 system-tests/ft-suite/src/test/kotlin/com/hotels/styx/support/TestErrorReporter.kt create mode 100644 system-tests/ft-suite/src/test/kotlin/io/kotlintest/provided/ProjectConfig.kt diff --git a/system-tests/ft-suite/src/test/kotlin/com/hotels/styx/support/TestErrorReporter.kt b/system-tests/ft-suite/src/test/kotlin/com/hotels/styx/support/TestErrorReporter.kt new file mode 100644 index 0000000000..bc623c9ca2 --- /dev/null +++ b/system-tests/ft-suite/src/test/kotlin/com/hotels/styx/support/TestErrorReporter.kt @@ -0,0 +1,65 @@ +/* + Copyright (C) 2013-2019 Expedia Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ +package com.hotels.styx.support + +import io.kotlintest.Spec +import io.kotlintest.TestCase +import io.kotlintest.TestResult +import io.kotlintest.TestStatus +import io.kotlintest.extensions.TestListener +import org.slf4j.LoggerFactory + +object TestErrorReporter: TestListener { + val LOGGER = LoggerFactory.getLogger("StyxFT") + + override fun beforeSpec(spec: Spec) { + super.beforeSpec(spec) + LOGGER.info("Starting ${spec.description().fullName()}") + } + + override fun afterSpec(spec: Spec) { + LOGGER.info("Finished ${spec.description().fullName()}") + super.afterSpec(spec) + } + + override fun beforeTest(testCase: TestCase) { + super.beforeTest(testCase) + + LOGGER.info("Running '${testCase.name}' - ${testCase.source.fileName}:${testCase.source.lineNumber}") + } + + override fun afterTest(testCase: TestCase, result: TestResult) { + super.afterTest(testCase, result) + + LOGGER.info("${testCase.name} - ${result.status}") + when (result.status) { + TestStatus.Success -> { } + TestStatus.Ignored -> { } + TestStatus.Error -> { + result.error?.let { + LOGGER.info(it.message) + it.printStackTrace() + } + } + TestStatus.Failure -> { + result.error?.let { + LOGGER.info(it.message) + it.printStackTrace() + } + } + } + } +} \ No newline at end of file diff --git a/system-tests/ft-suite/src/test/kotlin/io/kotlintest/provided/ProjectConfig.kt b/system-tests/ft-suite/src/test/kotlin/io/kotlintest/provided/ProjectConfig.kt new file mode 100644 index 0000000000..799f43af2b --- /dev/null +++ b/system-tests/ft-suite/src/test/kotlin/io/kotlintest/provided/ProjectConfig.kt @@ -0,0 +1,24 @@ +/* + Copyright (C) 2013-2019 Expedia Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ +package io.kotlintest.provided + +import com.hotels.styx.support.TestErrorReporter +import io.kotlintest.AbstractProjectConfig +import io.kotlintest.extensions.TestListener + +class ProjectConfig: AbstractProjectConfig() { + override fun listeners(): List = listOf(TestErrorReporter) +}