diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-07-31 14:39:16 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2016-07-31 14:41:58 +0800 |
commit | 1c377c679ba8c8771288788fdffb956cfd9f6f08 (patch) | |
tree | e8217661d9d6d98d4cecfa8c18f219a80dcbe411 /tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml | |
parent | ed2f6006158e120159f4422bc626cc0d5fe5cecf (diff) |
Use the real yaml file in testcase of system.yaml
As a tester;
I want to make sure of the validation of substitution mappings in system
chain.
So i use the real test yaml file and delete the old.
Change-Id: Id3dee02d8af5b221b654a3ee79e28f0ad5b53868
JIRA:PARSER-74
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml index 48ab031..76fa7e2 100644 --- a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml +++ b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml @@ -9,14 +9,14 @@ imports: - definitions.yaml topology_template: - description: Template of a queue including its hosting stack. + description: Template of a database including its hosting stack. inputs: - mq_server_ip: + server_ip: type: string description: IP address of the message queuing server to receive messages from. default: 127.0.0.1 - my_receiver_port: + server_port: type: integer description: Port to be used for receiving messages. default: 8080 @@ -39,8 +39,8 @@ topology_template: tran_app: type: example.QueuingSubsystem properties: - server_ip: { get_input: mq_server_ip } - server_port: { get_input: my_receiver_port } + server_ip: { get_input: server_ip } + server_port: { get_input: server_port } requirements: - host: node: server |