blob: 5ea2c13c91dcef9d7e85d27c20b419c01f6ce584 [file] [log] [blame]
# -*- coding: utf-8 -*-
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from ... import data
@pytest.mark.parametrize('value', data.NOT_A_LIST)
def test_node_template_directives_syntax_type(parser, value):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
MyType: {}
topology_template:
node_templates:
my_node:
type: MyType
directives: {{ value }}
""", dict(value=value)).assert_failure()
@pytest.mark.parametrize('value', data.NOT_A_STRING)
def test_node_template_directives_syntax_element_type(parser, value):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
MyType: {}
topology_template:
node_templates:
my_node:
type: MyType
directives: [ {{ value }} ]
""", dict(value=value)).assert_failure()
def test_node_template_directives_syntax_empty(parser):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
MyType: {}
topology_template:
node_templates:
my_node:
type: MyType
directives: []
""").assert_success()
# Unicode
def test_node_template_directives_unicode(parser):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
類型: {}
topology_template:
node_templates:
節點:
type: 類型
directives:
- 指示一
- 指示二
""").assert_success()