blob: ac86a4ab00ae8215a651b75ec90287fc87d2db5c [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_DICT)
def test_topology_template_syntax_type(parser, value):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
topology_template: {{ value }}
""", dict(value=value)).assert_failure()
def test_topology_template_syntax_unsupported(parser):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
topology_template:
unsupported: {}
""").assert_failure()
def test_topology_template_syntax_empty(parser):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
topology_template: {}
""").assert_success()
# Description
@pytest.mark.parametrize('value', data.NOT_A_STRING)
def test_topology_template_description_syntax_type(parser, value):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
topology_template:
description: {{ value }}
""", dict(value=value)).assert_failure()
def test_topology_template_description(parser):
parser.parse_literal("""
tosca_definitions_version: tosca_simple_yaml_1_0
topology_template:
description: a description
""").assert_success()