From 20dc78d226aca6cb390586a9e19e522d68d0821b Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Fri, 6 Oct 2017 22:30:23 +0530 Subject: Normalize OnapCommandSchema discovery is optimized to register the plugins and http commands from one function Issue-Id: CLI-66 Change-Id: I3b813862ffd5640c5218c4cced7d10f914dce4ad Signed-off-by: Kanagaraj Manickam k00365106 --- .../open-cli-schema/sample-test-schema.yaml | 86 ++++++++++++++++++++++ .../src/test/resources/sample-test-schema.yaml | 86 ---------------------- 2 files changed, 86 insertions(+), 86 deletions(-) create mode 100644 framework/src/test/resources/open-cli-schema/sample-test-schema.yaml delete mode 100644 framework/src/test/resources/sample-test-schema.yaml (limited to 'framework/src/test/resources') diff --git a/framework/src/test/resources/open-cli-schema/sample-test-schema.yaml b/framework/src/test/resources/open-cli-schema/sample-test-schema.yaml new file mode 100644 index 00000000..e3b415b1 --- /dev/null +++ b/framework/src/test/resources/open-cli-schema/sample-test-schema.yaml @@ -0,0 +1,86 @@ +open_cli_schema_version: 1.0 +name: sample-test +description: Onap sample command to test the command features +info: + product: open-cli + service: test + type: cmd + author: Kanagaraj Manickam mkr1481@gmail.com +parameters: + - name: bool-param + type: bool + description: Onap boolean param, by default its always false. + short_option: b + long_option: bool + is_optional: true + default_value: false + is_include: true + - name: secure-param + type: string + description: Onap secure param such as password + short_option: x + long_option: secure + is_secured: true + is_optional: true + default_Value: pass123# + - name: string-param + type: string + description: Onap string param + long_option: string-param + short_option: c + is_optional: true + default_Value: test + - name: yaml-param + type: json + description: Onap yaml file location param + long_option: yaml-param + short_option: y + is_optional: true + - name: json-param + type: json + description: Onap json file location param + long_option: json-param + short_option: j + is_optional: true + is_secured: false + - name: long-param + type: digit + description: Onap long param + short_option: l + long_option: long-opt + is_optional: true + default_value: 10 + - name: url-param + type: url + description: Onap url param + short_option: r + long_option: url + is_optional: true + default_value: http://localhost:8082/file.txt + - name: env-param + type: string + description: Onap env param. + short_option: z + long_option: env + is_optional: true + default_value: ${ENV_VAR} + - name: positional-args + type: string + description: Onap positional args, if no short option and no long option given for it + is_optional: true + default_value: http://localhost:8082/file.txt +results: + direction: portrait + attributes: + - name: output-1 + description: Onap output attribute marked in short + scope: short + type: string + is_secured: true + default_value: req-$s{uuid} + - name: output-2 + description: Onap output attribute marked in long + scope: short + is_secured: false + type: string + default_value: Hello ${string-param} ! \ No newline at end of file diff --git a/framework/src/test/resources/sample-test-schema.yaml b/framework/src/test/resources/sample-test-schema.yaml deleted file mode 100644 index e3b415b1..00000000 --- a/framework/src/test/resources/sample-test-schema.yaml +++ /dev/null @@ -1,86 +0,0 @@ -open_cli_schema_version: 1.0 -name: sample-test -description: Onap sample command to test the command features -info: - product: open-cli - service: test - type: cmd - author: Kanagaraj Manickam mkr1481@gmail.com -parameters: - - name: bool-param - type: bool - description: Onap boolean param, by default its always false. - short_option: b - long_option: bool - is_optional: true - default_value: false - is_include: true - - name: secure-param - type: string - description: Onap secure param such as password - short_option: x - long_option: secure - is_secured: true - is_optional: true - default_Value: pass123# - - name: string-param - type: string - description: Onap string param - long_option: string-param - short_option: c - is_optional: true - default_Value: test - - name: yaml-param - type: json - description: Onap yaml file location param - long_option: yaml-param - short_option: y - is_optional: true - - name: json-param - type: json - description: Onap json file location param - long_option: json-param - short_option: j - is_optional: true - is_secured: false - - name: long-param - type: digit - description: Onap long param - short_option: l - long_option: long-opt - is_optional: true - default_value: 10 - - name: url-param - type: url - description: Onap url param - short_option: r - long_option: url - is_optional: true - default_value: http://localhost:8082/file.txt - - name: env-param - type: string - description: Onap env param. - short_option: z - long_option: env - is_optional: true - default_value: ${ENV_VAR} - - name: positional-args - type: string - description: Onap positional args, if no short option and no long option given for it - is_optional: true - default_value: http://localhost:8082/file.txt -results: - direction: portrait - attributes: - - name: output-1 - description: Onap output attribute marked in short - scope: short - type: string - is_secured: true - default_value: req-$s{uuid} - - name: output-2 - description: Onap output attribute marked in long - scope: short - is_secured: false - type: string - default_value: Hello ${string-param} ! \ No newline at end of file -- cgit 1.2.3-korg