use of org.jenkins.plugins.audit2db.model.BuildDetails in project selenium_java by sergueik.
the class TestUtils method createRandomBuildHistory.
public static List<BuildDetails> createRandomBuildHistory(final String hostName, final String projectName, final int numOfBuilds, final boolean withParams) {
final List<BuildDetails> retval = new ArrayList<BuildDetails>(numOfBuilds);
for (int buildCtr = 1; buildCtr <= numOfBuilds; buildCtr++) {
final BuildDetails buildDetails = createRandomBuildDetails(withParams);
buildDetails.setId(buildDetails.getId() + buildCtr);
buildDetails.setName(projectName);
buildDetails.getNode().setMasterHostName(hostName);
retval.add(buildDetails);
}
return retval;
}
use of org.jenkins.plugins.audit2db.model.BuildDetails in project selenium_java by sergueik.
the class WhenRunningJobsByDateReport method testShouldDisplaySomeRecordsForMatchingSelection.
@Test
public void testShouldDisplaySomeRecordsForMatchingSelection() {
final JobsByDateReport report = TestUtils.getReportExtension(JobsByDateReport.class);
final BuildDetailsHibernateRepository repository = (BuildDetailsHibernateRepository) report.getRepository();
final Map<String, List<BuildDetails>> dataset = TestUtils.createRandomDataset(DbAuditUtil.getHostName());
// after each test run
for (final List<BuildDetails> detailsList : dataset.values()) {
repository.saveBuildDetailsList(detailsList);
}
// used for debugging
String pageText = null;
try {
page.load();
page.setStartDate(now);
page.setEndDate(tomorrow);
final HtmlPage resultPage = page.submit();
pageText = resultPage.asText();
WebAssert.assertElementPresent(resultPage, "reportResults");
} catch (final Exception e) {
// expecting successful run
LOGGER.log(Level.SEVERE, pageText, e);
fail("Unexpected error.");
}
}
use of org.jenkins.plugins.audit2db.model.BuildDetails in project selenium_java by sergueik.
the class WhenRunningJobsByDateReport method testShouldDisplayNoRecordsForNonMatchingSelection.
@Test
public void testShouldDisplayNoRecordsForNonMatchingSelection() {
final JobsByDateReport report = TestUtils.getReportExtension(JobsByDateReport.class);
final BuildDetailsHibernateRepository repository = (BuildDetailsHibernateRepository) report.getRepository();
final Map<String, List<BuildDetails>> dataset = TestUtils.createRandomDataset(DbAuditUtil.getHostName());
// after each test run
for (final List<BuildDetails> detailsList : dataset.values()) {
repository.saveBuildDetailsList(detailsList);
}
// used for debugging
String pageText = null;
try {
page.load();
page.setStartDate(yesterday);
page.setEndDate(yesterday);
final HtmlPage resultPage = page.submit();
pageText = resultPage.asText();
WebAssert.assertElementPresent(resultPage, "noDataWarning");
} catch (final Exception e) {
// expecting successful run
LOGGER.log(Level.SEVERE, pageText, e);
fail("Unexpected error.");
}
}
use of org.jenkins.plugins.audit2db.model.BuildDetails in project selenium_java by sergueik.
the class WhenRunningJobsHistoryReport method testShouldDisplayNoRecordsForNonMatchingSelection.
@Test
public void testShouldDisplayNoRecordsForNonMatchingSelection() {
final JobHistoryReport report = TestUtils.getReportExtension(JobHistoryReport.class);
final BuildDetailsHibernateRepository repository = (BuildDetailsHibernateRepository) report.getRepository();
final Map<String, List<BuildDetails>> dataset = TestUtils.createRandomDataset(DbAuditUtil.getHostName());
// after each test run
for (final List<BuildDetails> detailsList : dataset.values()) {
repository.saveBuildDetailsList(detailsList);
}
// used for debugging
String pageText = null;
try {
page.load();
page.setStartDate(yesterday);
page.setEndDate(tomorrow);
page.setJobName("A JOB THAT DOES NOT EXIST");
final HtmlPage resultPage = page.submit();
pageText = resultPage.asText();
WebAssert.assertElementPresent(resultPage, "noDataWarning");
} catch (final Exception e) {
// expecting successful run
LOGGER.log(Level.SEVERE, pageText, e);
fail("Unexpected error.");
}
}
use of org.jenkins.plugins.audit2db.model.BuildDetails in project selenium_java by sergueik.
the class WhenRunningJobsHistoryReport method testShouldDisplaySomeRecordsForMatchingSelection.
@Test
public void testShouldDisplaySomeRecordsForMatchingSelection() {
final JobHistoryReport report = TestUtils.getReportExtension(JobHistoryReport.class);
final BuildDetailsHibernateRepository repository = (BuildDetailsHibernateRepository) report.getRepository();
final Map<String, List<BuildDetails>> dataset = TestUtils.createRandomDataset(DbAuditUtil.getHostName());
// after each test run
for (final List<BuildDetails> detailsList : dataset.values()) {
repository.saveBuildDetailsList(detailsList);
}
final String projectName = dataset.keySet().iterator().next();
// used for debugging
String pageText = null;
try {
page.load();
page.setStartDate(now);
page.setEndDate(tomorrow);
// test wildcard
page.setJobName(projectName + "%");
final HtmlPage resultPage = page.submit();
pageText = resultPage.asText();
WebAssert.assertElementPresent(resultPage, "reportResults");
} catch (final Exception e) {
// expecting successful run
LOGGER.log(Level.SEVERE, pageText, e);
fail("Unexpected error.");
}
}
Aggregations