Add ACM interceptor for DME
[nonrtric/plt/rappmanager.git] / rapp-manager-acm / src / test / java / com / oransc / rappmanager / models / rapp / RappResourceBuilder.java
index 9aa2107..9da38fb 100755 (executable)
@@ -1,6 +1,26 @@
+/*-
+ * ============LICENSE_START======================================================================
+ * Copyright (C) 2023 Nordix Foundation. All rights reserved.
+ * Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
+ * ===============================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END========================================================================
+ */
+
 package com.oransc.rappmanager.models.rapp;
 
 import com.oransc.rappmanager.models.rappinstance.RappACMInstance;
+import com.oransc.rappmanager.models.rappinstance.RappDMEInstance;
 import com.oransc.rappmanager.models.rappinstance.RappInstance;
 import java.util.Set;
 
@@ -11,6 +31,11 @@ public class RappResourceBuilder {
         RappResources.ACMResources acmResources = new RappResources.ACMResources("compositions", Set.of());
         acmResources.setCompositionInstances(Set.of("kserve-instance"));
         rappResources.setAcm(acmResources);
+        RappResources.DMEResources dmeResources =
+                new RappResources.DMEResources(Set.of("json-file-data-from-filestore"),
+                        Set.of("xml-file-data-from-filestore"), Set.of("json-file-data-producer"),
+                        Set.of("json-file-consumer"));
+        rappResources.setDme(dmeResources);
         return rappResources;
     }
 
@@ -19,6 +44,12 @@ public class RappResourceBuilder {
         RappACMInstance rappACMInstance = new RappACMInstance();
         rappACMInstance.setInstance("kserve-instance");
         rappInstance.setAcm(rappACMInstance);
+        RappDMEInstance rappDMEInstance = new RappDMEInstance();
+        rappDMEInstance.setInfoTypeConsumer("json-file-data-from-filestore");
+        rappDMEInstance.setInfoTypesProducer(Set.of("xml-file-data-from-filestore"));
+        rappDMEInstance.setInfoProducer("json-file-data-producer");
+        rappDMEInstance.setInfoConsumer("json-file-consumer");
+        rappInstance.setDme(rappDMEInstance);
         return rappInstance;
     }
 }