From 3a301649f333c583130d5e2ef8921d48a7bed776 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Mon, 30 Oct 2017 10:54:18 +0530 Subject: Add samples for vsp-checkin CLI-57 Change-Id: Ia7f55d8c71f55e312da587a9cb7c6a4306bad6b1 Signed-off-by: Kanagaraj Manickam k00365106 --- .../vsp/vsp-checkin-schema-1.1.yaml | 31 ++++++++++++++++++++++ .../vsp-checkin-schema-1.1-moco.json | 21 +++++++++++++++ .../vsp-checkin-schema-1.1-sample.yaml | 9 +++++++ 3 files changed, 61 insertions(+) create mode 100644 plugins/sdc/src/main/resources/onap-cli-schema/vsp/vsp-checkin-schema-1.1.yaml create mode 100644 plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-moco.json create mode 100644 plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-sample.yaml 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 index 00000000..569dd3d7 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vsp/vsp-checkin-schema-1.1.yaml @@ -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 index 00000000..ff239076 --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-moco.json @@ -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 index 00000000..81148ef8 --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vsp-checkin-schema-1.1-sample.yaml @@ -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 -- cgit 1.2.3-korg