Add output validation test case for substitution.
[parser.git] / tosca2heat / tosca-parser / toscaparser / tests / data / topology_template / validate / system_invalid_missing_output.yaml
1 tosca_definitions_version: tosca_simple_yaml_1_0
2
3 imports:
4   - transactionsubsystem_invalid_missing_output.yaml
5
6 topology_template:
7   description: Test template with invalid missing output.
8
9   inputs:
10     mq_server_ip:
11       type: string
12       default: 127.0.0.1
13       description: IP address of the message queuing server to receive messages from.
14     mq_server_port:
15       type: integer
16       default: 8080
17       description: Port to be used for receiving messages.
18
19   node_templates:
20     trans:
21       type: example.TransactionSubsystem
22       properties:
23         mq_server_ip: { get_input:  mq_server_ip }
24         receiver_port: { get_input: mq_server_port }