aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/resource-resolution/src/test
diff options
context:
space:
mode:
authorBrinda Santh <brindasanth@in.ibm.com>2019-08-01 18:40:55 -0400
committerDan Timoney <dtimoney@att.com>2019-08-09 20:02:30 +0000
commitf48dcc232cfd6e7c11c1155a58f6017d3a71c007 (patch)
treebf9d21512e5e574aaa81944a898611346457fda1 /ms/blueprintsprocessor/functions/resource-resolution/src/test
parentf70690830c018b1a0a0ada113eb0df33c52965f8 (diff)
Add resource source node type DSL definitions.
Change-Id: If21c4964bda08e5d50e6fd11fb1d657e5bf8785c Issue-ID: CCSDK-1577 Signed-off-by: Brinda Santh <brindasanth@in.ibm.com>
Diffstat (limited to 'ms/blueprintsprocessor/functions/resource-resolution/src/test')
-rw-r--r--ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/ResourceSourceDSLTest.kt59
1 files changed, 59 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/ResourceSourceDSLTest.kt b/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/ResourceSourceDSLTest.kt
new file mode 100644
index 000000000..6ad6bc56a
--- /dev/null
+++ b/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/ResourceSourceDSLTest.kt
@@ -0,0 +1,59 @@
+/*
+ * Copyright © 2019 IBM.
+ *
+ * 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.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution
+
+import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintTypes
+import kotlin.test.Test
+import kotlin.test.assertNotNull
+
+class ResourceSourceDSLTest {
+
+ @Test
+ fun testNodeTypeSourceInput() {
+ val nodeTemplate = BluePrintTypes.nodeTypeSourceInput()
+ //println(nodeTemplate.asJsonString(true))
+ assertNotNull(nodeTemplate, "failed to generate nodeTypeSourceInput")
+ }
+
+ @Test
+ fun testNodeTypeSourceDefault() {
+ val nodeTemplate = BluePrintTypes.nodeTypeSourceDefault()
+ //println(nodeTemplate.asJsonString(true))
+ assertNotNull(nodeTemplate, "failed to generate nodeTypeSourceDefault")
+ }
+
+ @Test
+ fun testNodeTypeSourceDb() {
+ val nodeTemplate = BluePrintTypes.nodeTypeSourceDb()
+ //println(nodeTemplate.asJsonString(true))
+ assertNotNull(nodeTemplate, "failed to generate nodeTypeSourceDb")
+ }
+
+ @Test
+ fun testNodeTypeSourceRest() {
+ val nodeTemplate = BluePrintTypes.nodeTypeSourceRest()
+ //println(nodeTemplate.asJsonString(true))
+ assertNotNull(nodeTemplate, "failed to generate nodeTypeSourceRest")
+ }
+
+ @Test
+ fun testNodeTypeSourceCapability() {
+ val nodeTemplate = BluePrintTypes.nodeTypeSourceCapability()
+ //println(nodeTemplate.asJsonString(true))
+ assertNotNull(nodeTemplate, "failed to generate nodeTypeSourceCapability")
+ }
+} \ No newline at end of file