Skip to content
Snippets Groups Projects
Commit 5faa41e8 authored by Mark Chance's avatar Mark Chance
Browse files

test for exceptions

parent f5c48b52
No related branches found
No related tags found
2 merge requests!620Update version of default branch to 0.27.0-SNAPSHOT,!535Extend cron to catch about to expire legal tags
Pipeline #247913 failed
package org.opengroup.osdu.legal.jobs;
import org.junit.Ignore;
import org.opengroup.osdu.core.common.model.http.AppException;
import org.opengroup.osdu.core.common.model.http.DpsHeaders;
import org.opengroup.osdu.core.common.model.legal.StatusChangedTags;
import org.opengroup.osdu.legal.logging.AuditLogger;
......@@ -215,6 +216,44 @@ public class LegalTagStatusJobTests {
assertEquals(1, result.aboutToExpireLegalTags.getAboutToExpireLegalTags().size());
assertEquals("aboutToExpireLegalTag", result.aboutToExpireLegalTags.getAboutToExpireLegalTags().get(0));
}
@Test
public void should_throwException_when_legalTagBadExpireDate() throws Exception {
ReflectionTestUtils.setField(sut, "legalTagExpiration", "XXXy");
Collection<LegalTag> validLegalTags = new ArrayList<>();
LegalTag aboutToExpireLegalTag = createValidLegalTagWithIsValidStatus("aboutToExpireLegalTag", true, 354);
validLegalTags.add(aboutToExpireLegalTag);
LegalTag longTermLegalTag = createValidLegalTagWithIsValidStatus("longTermLegalTag", true, 367);
validLegalTags.add(longTermLegalTag);
try {
sut = createSut(validLegalTags);
LegalTagJobResult result = sut.run("project1", headers, "tenant");
fail("Should throw an exception");
} catch (AppException e) {
assertEquals("Invalid legalTagExpiration value: XXXy", e.getMessage());
assertEquals(500, e.getError().getCode());
}
}
@Test
public void should_throwException_when_legalTagBadFormat() throws Exception {
ReflectionTestUtils.setField(sut, "legalTagExpiration", "XXX");
Collection<LegalTag> validLegalTags = new ArrayList<>();
LegalTag aboutToExpireLegalTag = createValidLegalTagWithIsValidStatus("aboutToExpireLegalTag", true, 354);
validLegalTags.add(aboutToExpireLegalTag);
LegalTag longTermLegalTag = createValidLegalTagWithIsValidStatus("longTermLegalTag", true, 367);
validLegalTags.add(longTermLegalTag);
try {
sut = createSut(validLegalTags);
LegalTagJobResult result = sut.run("project1", headers, "tenant");
fail("Should throw an exception");
} catch (AppException e) {
assertEquals("Invalid legalTagExpiration value: XXX", e.getMessage());
assertEquals(500, e.getError().getCode());
}
}
@Test
public void should_returnAboutToExpireLegalTagName_when_invalidTimeToExpire() throws Exception {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment