use of org.sakuli.builder.TestSuiteExampleBuilder in project sakuli by ConSol.
the class Icinga2OutputBuilderTest method testBuildWarningInSuite.
@Test
public void testBuildWarningInSuite() throws Exception {
TestSuite testSuite = new TestSuiteExampleBuilder().withState(TestSuiteState.WARNING_IN_SUITE).withId("TEST-SUITE-ID").withWarningTime(100).withTestCases(Collections.singletonList(new TestCaseExampleBuilder().withId("TEST-CASE-ID").withState(TestCaseState.OK).buildExample())).buildExample();
ReflectionTestUtils.setField(testling, "testSuite", testSuite);
Assert.assertEquals(testling.build(), "[WARN] Sakuli suite \"TEST-SUITE-ID\" warning (120.00s/warn at 100s). (Last suite run: 17.08.14 14:02:00)\n" + "[OK] case \"TEST-CASE-ID\" ran in 3.00s - ok");
}
use of org.sakuli.builder.TestSuiteExampleBuilder in project sakuli by ConSol.
the class AbstractOutputBuilderTest method testFormatTestSuiteStateMessageUnknown.
@Test
public void testFormatTestSuiteStateMessageUnknown() throws Exception {
TestSuite testSuiteExample = new TestSuiteExampleBuilder().withId("sakuli-123").withState(TestSuiteState.RUNNING).withStopDate(null).buildExample();
String result = testling.formatTestSuiteSummaryStateMessage(testSuiteExample, properties.getTemplateSuiteSummary());
assertEquals(result, "[UNKN] Sakuli suite \"sakuli-123\" suite still running. (Last suite run: xx)");
}
use of org.sakuli.builder.TestSuiteExampleBuilder in project sakuli by ConSol.
the class AbstractPerformanceDataBuilderTest method testGetPerformanceData.
@Test
public void testGetPerformanceData() throws Exception {
Date startDate = new GregorianCalendar(2014, 14, 7, 13, 0).getTime();
TestSuite testSuiteExample = new TestSuiteExampleBuilder().withId("sakuli-123").withStartDate(startDate).withStopDate(DateUtils.addSeconds(startDate, 120)).withWarningTime(100).withCriticalTime(150).withTestCases(Arrays.asList(new TestCaseExampleBuilder().withState(TestCaseState.WARNING_IN_STEP).withId("case-warning").withStartDate(startDate).withStopDate(DateUtils.addSeconds(startDate, 20)).withWarningTime(19).withCriticalTime(25).withTestCaseSteps(Arrays.asList(new TestCaseStepExampleBuilder().withName("step1").withState(TestCaseStepState.WARNING).withStartDate(startDate).withStopDate(DateUtils.addSeconds(startDate, 10)).withWarningTime(9).buildExample(), new TestCaseStepExampleBuilder().withName("step2").withState(TestCaseStepState.OK).withStartDate(DateUtils.addSeconds(startDate, 11)).withStopDate(DateUtils.addSeconds(startDate, 19)).withWarningTime(10).buildExample())).buildExample(), new TestCaseExampleBuilder().withState(TestCaseState.OK).withId("case with no steps").withStartDate(DateUtils.addSeconds(startDate, 25)).withStopDate(DateUtils.addSeconds(startDate, 40)).withWarningTime(0).withCriticalTime(0).withTestCaseSteps(null).buildExample())).buildExample();
testSuiteExample.refreshState();
assertEquals(AbstractPerformanceDataBuilder.getTestSuitePerformanceData(testSuiteExample), "suite__state=1;;;; " + "suite__warning=100s;;;; " + "suite__critical=150s;;;; " + "suite_sakuli-123=120.00s;100;150;; " + "c_001__state=1;;;; " + "c_001__warning=19s;;;; " + "c_001__critical=25s;;;; " + "c_001_case-warning=20.00s;19;25;; " + "s_001_001_step1=10.00s;9;;; " + "s_001_002_step2=8.00s;10;;; " + "c_002__state=0;;;; " + "c_002_case_with_no_steps=15.00s;;;;");
}
Aggregations