a115322bc5
This change deprecates vanilla 2.6.0 plugin. Vanilla 2.7.1 continues to be supported. Also, add default templates for vanilla 2.7.1. All possible occurences replaced with 2.7.1 version of plugin. Implements blueprint: deprecate-vanilla-2-6-0 Change-Id: I791417d76b7ef79227f99e7d2c85febdafef0f04
28 lines
933 B
Python
28 lines
933 B
Python
# Copyright (c) 2015 Mirantis Inc.
|
|
#
|
|
# Licensed 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 testtools
|
|
import yaml
|
|
|
|
from sahara.tests.scenario import validation
|
|
|
|
|
|
class TestValidation(testtools.TestCase):
|
|
def test_validation(self):
|
|
with open("sahara/tests/scenario_unit/vanilla2_7_1.yaml",
|
|
"r") as yaml_file:
|
|
config = yaml.load(yaml_file)
|
|
self.assertIsNone(validation.validate(config))
|