From 7744ad699254571c2cddb3fcfccaec035d308baa Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Thu, 26 Oct 2017 20:17:08 +0530 Subject: Add sample for customer-create CLI-57 Change-Id: I19938237709ad128f0e2771d9e4f539bb92aca7f Signed-off-by: Kanagaraj Manickam k00365106 --- .../customer/customer-create-sample-1.1.yaml | 8 -------- .../customer/customer-create-schema-1.1-moco.json | 22 ++++++++++++++++++++++ .../customer-create-schema-1.1-sample.yaml | 10 ++++++++++ 3 files changed, 32 insertions(+), 8 deletions(-) delete mode 100644 plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-sample-1.1.yaml create mode 100644 plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-moco.json create mode 100644 plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-sample.yaml (limited to 'plugins/aai/src/test/resources') diff --git a/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-sample-1.1.yaml b/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-sample-1.1.yaml deleted file mode 100644 index d5332115..00000000 --- a/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-sample-1.1.yaml +++ /dev/null @@ -1,8 +0,0 @@ -onap_cli_sample_version: 1.0 - -name: customer-create -version: onap-1.1 -samples: - sample1: - name: Create a customer - input: -h https://locahost:8443 -u AAI -p AAI -x customer-1 -y subscriber-1 diff --git a/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-moco.json b/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-moco.json new file mode 100644 index 00000000..18bb05d7 --- /dev/null +++ b/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-moco.json @@ -0,0 +1,22 @@ +[ { + "request" : { + "method" : "put", + "uri" : "/aai/v11/business/customers/customer/test", + "headers" : { + "Authorization" : "Basic QUFJOkFBSQ==", + "X-FromAppId" : "onap-cli", + "Accept" : "application/json", + "X-TransactionId" : "req-9ad55bff-efbb-4306-bc8a-b76687e8e065", + "Content-Type" : "application/json" + }, + "json" : { + "global-customer-id" : "test", + "subscriber-name" : "test", + "subscriber-type" : "INFRA" + } + }, + "response" : { + "status" : 201, + "json" : null + } +} ] \ No newline at end of file diff --git a/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-sample.yaml b/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-sample.yaml new file mode 100644 index 00000000..db4a5135 --- /dev/null +++ b/plugins/aai/src/test/resources/onap-cli-sample/customer/customer-create-schema-1.1-sample.yaml @@ -0,0 +1,10 @@ +onap_cli_sample_version: 1.0 +name: customer-create +version: onap-1.1 +samples: + sample1: + name: customer-create + input: --customer-name test --subscriber-name test + moco: customer-create-schema-1.1-moco.json + ouput: | + -- cgit 1.2.3-korg