com.nortal.test.asserts.AssertionsFormatter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-automation-assert Show documentation
Show all versions of test-automation-assert Show documentation
Cucumber based API and UI test framework
The newest version!
/**
* Copyright (c) 2022 Nortal AS
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.nortal.test.asserts
import com.nortal.test.core.report.JsonFormattingUtils
import com.nortal.test.core.report.ReportFormatter
import com.nortal.test.core.report.ReportFormatter.Attachment.Companion.create
import com.nortal.test.core.report.html.ReportHtmlTableGenerator
import org.springframework.stereotype.Component
import java.util.ArrayList
import java.util.stream.Collectors
@Component
open class AssertionsFormatter(
private val reportHtmlTableGenerator: ReportHtmlTableGenerator,
private val reportFormatter: ReportFormatter,
) {
fun formatAndAttachToReport(validation: Validation, completedAssertions: List) {
val assertionsTable: MutableList> = ArrayList()
assertionsTable.add(HEADERS)
completedAssertions.stream()
.map { assertion: ValidationService.CompletedAssertion -> convertToTableLine(assertion, validation) }
.forEach { e: List -> assertionsTable.add(e) }
val formattedAssertionsTable = reportHtmlTableGenerator.generateTable(assertionsTable, false)
val attachment = create().setName(validation.title)
attachment.addSection(
validation.contextDescription?:"", ReportFormatter.SectionType.COLLAPSIBLE,
JsonFormattingUtils.prettyPrintHtml(validation.context)
)
attachment.addSection("Assertions", ReportFormatter.SectionType.TABLE, formattedAssertionsTable)
reportFormatter.formatAndAddToReport(attachment)
}
fun formatIntoErrorMessage(failedAssertions: List): String {
return failedAssertions.stream()
.map { completedAssertion: ValidationService.CompletedAssertion -> getExceptionMessage(completedAssertion) }
.collect(Collectors.joining("\n"))
}
private fun getExceptionMessage(completedAssertion: ValidationService.CompletedAssertion): String {
val expression = getExpression(completedAssertion.assertion, completedAssertion.baseExpression)
val expectedValue = getExpectedValue(completedAssertion.assertion)
val actualValue = getActualValue(completedAssertion)
return java.lang.String.format(
"Failed assertion: %s, path [%s] expected [%s] operation [%s] actual [%s]",
completedAssertion.assertion.message,
expression,
expectedValue,
completedAssertion.assertion.operation,
actualValue
)
}
companion object {
val HEADERS = listOf("Status", "Message", "Actual value path", "Operation", "Expected value", "Actual value")
private fun convertToTableLine(completedAssertion: ValidationService.CompletedAssertion, validation: Validation): List {
val assertion = completedAssertion.assertion
val expectedValueString = getExpectedValue(assertion)
val expression = getExpression(assertion, validation.baseExpression)
val actualValueString = getActualValue(completedAssertion)
return listOf(
completedAssertion.status.toString(),
assertion.message,
expression,
assertion.operation.toString(),
expectedValueString,
actualValueString
)
}
private fun getActualValue(completedAssertion: ValidationService.CompletedAssertion): String {
return if (completedAssertion.actualValue == null) {
"NULL"
} else {
completedAssertion.actualValue.toString()
}
}
private fun getExpression(assertion: Assertion, baseExpression: String): String {
return if (assertion.expressionType.equals(ExpressionType.RELATIVE)) {
baseExpression + assertion.expression
} else {
assertion.expression
}
}
private fun getExpectedValue(assertion: Assertion): String {
return if (assertion.operation.equals(AssertionOperation.NOT_NULL)) {
""
} else {
val expectedValue: Any? = assertion.expectedValue
expectedValue?.toString() ?: "NULL"
}
}
}
}