Details
Assignee
UnassignedUnassignedReporter
Ron RoskensRon RoskensLabels
Components
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Ron Roskens
Ron RoskensLabels
Components
Priority
PagerDuty
PagerDuty
PagerDuty
Created July 21, 2017 at 8:30 PM
Updated September 21, 2021 at 6:22 PM
I'm trying to add methods to check that a particular scheduled outage is on a package in pollerd, collectd, and threshd. Its working for Pollerd & Threshd, but the unit test is failing for Collectd. Here is the added method to ScheduledOutagesRestService:
@GET @Path("{outageName}/collectd/{packageName}") @Produces(MediaType.TEXT_PLAIN) public String isOutageToCollectorPackage(@PathParam("outageName") String outageName, @PathParam("packageName") String packageName) { Outage outage = getOutage(outageName); if (outage == null) { throw getException(Status.NOT_FOUND, "Scheduled outage {} was not found.", outageName); } Package pkg = m_collectdConfigFactory.getCollectdConfig().getPackage(packageName); if (pkg == null) { throw getException(Status.NOT_FOUND, "Collectd package {} was not found.", packageName); } Boolean found = pkg.getOutageCalendars().contains(outageName); return found.toString(); }
And the modified method in ScheduledOutagesRestServiceIT:
@Test public void testUpdateCollectdConfig() throws Exception { sendRequest(PUT, "/sched-outages/my-junit-test/collectd/example1", 204); String out = sendRequest(GET, "/sched-outages/my-junit-test/collectd/example1", 200); Assert.assertEquals("collectd package example1 contains my-junit-test", "true", out); sendRequest(DELETE, "/sched-outages/my-junit-test/collectd/example1", 204); }
This test fails to pass the assertEquals.