Add samples for vsp-checkin 13/21213/1
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Mon, 30 Oct 2017 05:24:18 +0000 (10:54 +0530)
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Mon, 30 Oct 2017 05:33:46 +0000 (11:03 +0530)
CLI-57

Change-Id: Ia7f55d8c71f55e312da587a9cb7c6a4306bad6b1
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
plugins/sdc/src/main/resources/onap-cli-schema/vsp/vsp-checkin-schema-1.1.yaml [new file with mode: 0644]
plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-moco.json [new file with mode: 0644]
plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-sample.yaml [new file with mode: 0644]

diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vsp/vsp-checkin-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vsp/vsp-checkin-schema-1.1.yaml
new file mode 100644 (file)
index 0000000..569dd3d
--- /dev/null
@@ -0,0 +1,31 @@
+open_cli_schema_version: 1.0
+name: vsp-checkin
+description: Checkin Vendor Software Product
+version: onap-1.1
+service:
+  name: sdc
+  version: v1.0
+  auth: basic
+  mode: direct
+
+parameters:
+  - name: vsp-id
+    description: Onap VSP ID
+    type: string
+    short_option: x
+    long_option: vsp-id
+    is_optional: false
+  - name: vsp-version
+    description: VSP version
+    type: string
+    short_option: y
+    long_option: vsp-version
+    is_optional: false
+http:
+  request:
+    uri: /onboarding-api/v1.0/vendor-software-products/${vsp-id}/versions/${vsp-version}/actions
+    method: PUT
+    body: '{"action": "Checkin"}'
+  success_codes:
+    - 201
+    - 200
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-moco.json b/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-moco.json
new file mode 100644 (file)
index 0000000..ff23907
--- /dev/null
@@ -0,0 +1,21 @@
+[ {
+  "request" : {
+    "method" : "put",
+    "uri" : "/onboarding-api/v1.0/vendor-software-products/5ca119e2326045d1857ae3f04a816434/versions/0.1/actions",
+    "headers" : {
+      "Authorization" : "Basic Y3MwMDA4OmRlbW8xMjM0NTYh",
+      "X-FromAppId" : "onap-cli",
+      "Accept" : "application/json",
+      "USER_ID" : "cs0008",
+      "X-TransactionId" : "req-25c70cc1-fcfb-4058-baf3-c0f3d8a1a224",
+      "Content-Type" : "application/json"
+    },
+    "json" : {
+      "action" : "Checkin"
+    }
+  },
+  "response" : {
+    "status" : 200,
+    "json" : { }
+  }
+} ]
\ No newline at end of file
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-sample.yaml b/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-sample.yaml
new file mode 100644 (file)
index 0000000..81148ef
--- /dev/null
@@ -0,0 +1,9 @@
+onap_cli_sample_version: 1.0
+name: vsp-checkin
+version: onap-1.1
+samples:
+  sample1:
+    name: vsp-checkin
+    input: --vsp-id 5ca119e2326045d1857ae3f04a816434 --vsp-version 0.1
+    moco: vsp-checkin-schema-1.1-moco.json
+    ouput:
\ No newline at end of file