|
| 1 | +package com.redhat.cloud.notifications.routers.internal; |
| 2 | + |
| 3 | +import com.redhat.cloud.notifications.TestHelpers; |
| 4 | +import com.redhat.cloud.notifications.TestLifecycleManager; |
| 5 | +import com.redhat.cloud.notifications.db.DbIsolatedTest; |
| 6 | +import com.redhat.cloud.notifications.models.EventType; |
| 7 | +import io.quarkus.test.common.QuarkusTestResource; |
| 8 | +import io.quarkus.test.junit.QuarkusTest; |
| 9 | +import io.restassured.common.mapper.TypeRef; |
| 10 | +import io.restassured.http.Header; |
| 11 | +import org.apache.commons.lang3.RandomStringUtils; |
| 12 | +import org.eclipse.microprofile.config.inject.ConfigProperty; |
| 13 | +import org.junit.jupiter.api.Test; |
| 14 | +import java.util.List; |
| 15 | +import java.util.Map; |
| 16 | +import java.util.UUID; |
| 17 | + |
| 18 | +import static com.redhat.cloud.notifications.CrudTestHelpers.createApp; |
| 19 | +import static com.redhat.cloud.notifications.CrudTestHelpers.createBundle; |
| 20 | +import static com.redhat.cloud.notifications.CrudTestHelpers.createEventType; |
| 21 | +import static io.restassured.RestAssured.given; |
| 22 | +import static io.restassured.http.ContentType.JSON; |
| 23 | +import static jakarta.ws.rs.core.Response.Status.OK; |
| 24 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 25 | +import static org.junit.jupiter.api.Assertions.assertTrue; |
| 26 | + |
| 27 | + |
| 28 | +@QuarkusTest |
| 29 | +@QuarkusTestResource(TestLifecycleManager.class) |
| 30 | +class ValidationResourceTest extends DbIsolatedTest { |
| 31 | + |
| 32 | + |
| 33 | + @ConfigProperty(name = "internal.admin-role") |
| 34 | + String adminRole; |
| 35 | + |
| 36 | + @Test |
| 37 | + void testGetBaetList() { |
| 38 | + Header adminIdentity = TestHelpers.createTurnpikeIdentityHeader("user", adminRole); |
| 39 | + |
| 40 | + final String bundleName = "bundle-name-baet1"; |
| 41 | + final String applicationName = "application-name-baet1"; |
| 42 | + String bundleId = createBundle(adminIdentity, bundleName, RandomStringUtils.secure().nextAlphanumeric(10), OK.getStatusCode()).get(); |
| 43 | + String applicationId = createApp(adminIdentity, bundleId, applicationName, RandomStringUtils.secure().nextAlphanumeric(10), null, OK.getStatusCode()).get(); |
| 44 | + EventType eventType = new EventType(); |
| 45 | + eventType.setDescription(RandomStringUtils.secure().nextAlphanumeric(10)); |
| 46 | + eventType.setName("event1"); |
| 47 | + eventType.setDisplayName("Event 1"); |
| 48 | + eventType.setApplicationId(UUID.fromString(applicationId)); |
| 49 | + createEventType(adminIdentity, eventType, OK.getStatusCode()); |
| 50 | + |
| 51 | + eventType.setName("event2"); |
| 52 | + eventType.setDisplayName("Event 2"); |
| 53 | + createEventType(adminIdentity, eventType, OK.getStatusCode()); |
| 54 | + |
| 55 | + Map<String, Map<String, List<String>>> baetMap = given() |
| 56 | + .header(adminIdentity) |
| 57 | + .contentType(JSON) |
| 58 | + .when() |
| 59 | + .get("/internal/validation/baet_list") |
| 60 | + .then() |
| 61 | + .statusCode(OK.getStatusCode()).extract().as(new TypeRef<>() { }); |
| 62 | + |
| 63 | + assertEquals(2, baetMap.size()); |
| 64 | + assertEquals(1, baetMap.get("rhel").size()); |
| 65 | + assertEquals(1, baetMap.get("rhel").get("policies").size()); |
| 66 | + assertTrue(baetMap.get("rhel").get("policies").contains("policy-triggered")); |
| 67 | + |
| 68 | + assertEquals(1, baetMap.get(bundleName).size()); |
| 69 | + assertEquals(2, baetMap.get(bundleName).get(applicationName).size()); |
| 70 | + assertTrue(baetMap.get(bundleName).get(applicationName).contains("event1")); |
| 71 | + assertTrue(baetMap.get(bundleName).get(applicationName).contains("event2")); |
| 72 | + } |
| 73 | +} |
0 commit comments