From 4835a4603463ab944e366bac369f98476749125d Mon Sep 17 00:00:00 2001 From: NicolasLaplaud Date: Fri, 7 Sep 2018 16:19:49 +0200 Subject: Add HubRessource Test - Improve junit test coverage on HubResource method Change-Id: Icef152f6065fa999bedc2e32ffd7bf07892bb82c Issue-ID: EXTAPI-135 Signed-off-by: NicolasLaplaud --- .../org/onap/nbi/apis/assertions/HubAssertions.java | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'src/test') diff --git a/src/test/java/org/onap/nbi/apis/assertions/HubAssertions.java b/src/test/java/org/onap/nbi/apis/assertions/HubAssertions.java index 486c4ef..f2b72f8 100644 --- a/src/test/java/org/onap/nbi/apis/assertions/HubAssertions.java +++ b/src/test/java/org/onap/nbi/apis/assertions/HubAssertions.java @@ -15,14 +15,19 @@ */ package org.onap.nbi.apis.assertions; +import org.onap.nbi.apis.hub.model.Event; +import org.onap.nbi.apis.hub.model.EventType; import org.onap.nbi.apis.hub.model.Subscription; +import java.util.Date; +import java.util.UUID; + public class HubAssertions { public static Subscription createServiceOrderCreationSubscription(){ Subscription subscription = new Subscription(); subscription.setId("id"); - subscription.setCallback("http://localhost:8090"); + subscription.setCallback("http://localhost:8080/test"); subscription.setQuery("eventType = ServiceOrderCreationNotification"); return subscription; } @@ -30,7 +35,7 @@ public class HubAssertions { public static Subscription createServiceOrderStateChangeSubscription(){ Subscription subscription = new Subscription(); subscription.setId("id"); - subscription.setCallback("http://localhost:8090"); + subscription.setCallback("http://localhost/test"); subscription.setQuery("eventType = ServiceOrderStateChangeNotification"); return subscription; } @@ -38,8 +43,16 @@ public class HubAssertions { public static Subscription createServiceOrderItemStateChangeSubscription(){ Subscription subscription = new Subscription(); subscription.setId("id"); - subscription.setCallback("http://localhost:8090"); + subscription.setCallback("http://localhost/test"); subscription.setQuery("eventType = ServiceOrderItemStateChangeNotification"); return subscription; } + + public static Event createFakeEvent() { + Event event = new Event(); + event.setEventId(UUID.randomUUID().toString()); + event.setEventDate(new Date()); + event.setEventType(EventType.SERVICE_ORDER_CREATION.value()); + return event; + } } -- cgit 1.2.3-korg