TOSCA: rename sample template file
Sample TOSCA templates are now stored to one location. Move this left over file. Change-Id: I6cee56addd5699907f063d18f14fbb5c6debc6e2
This commit is contained in:
parent
66394b802c
commit
f2608a0884
@ -21,20 +21,20 @@ from translator.toscalib.tosca_template import ToscaTemplate
|
|||||||
class ToscaTemplateOutputOrderTest(TestCase):
|
class ToscaTemplateOutputOrderTest(TestCase):
|
||||||
|
|
||||||
def test_translate_output_order(self):
|
def test_translate_output_order(self):
|
||||||
tosca_yaml_file = "data/tosca_single_server.yaml"
|
tosca_yaml = "../toscalib/tests/data/tosca_single_server.yaml"
|
||||||
tosca_tpl = os.path.join(
|
tosca_tpl = os.path.join(
|
||||||
os.path.dirname(os.path.abspath(__file__)),
|
os.path.dirname(os.path.abspath(__file__)),
|
||||||
tosca_yaml_file)
|
tosca_yaml)
|
||||||
parsed_params = {'cpus': 2}
|
parsed_params = {'cpus': 2}
|
||||||
tosca = ToscaTemplate(tosca_tpl)
|
tosca = ToscaTemplate(tosca_tpl)
|
||||||
translate = TOSCATranslator(tosca, parsed_params)
|
translate = TOSCATranslator(tosca, parsed_params)
|
||||||
hot_translated_output = translate.translate()
|
hot_translated_output = translate.translate()
|
||||||
|
|
||||||
# load expected hot yaml file
|
# load expected hot yaml file
|
||||||
hot_yaml_file = "data/hot_output/hot_single_server.yaml"
|
hot_yaml = "../toscalib/tests/data/hot_output/hot_single_server.yaml"
|
||||||
hot_tpl = os.path.join(
|
hot_tpl = os.path.join(
|
||||||
os.path.dirname(os.path.abspath(__file__)),
|
os.path.dirname(os.path.abspath(__file__)),
|
||||||
hot_yaml_file)
|
hot_yaml)
|
||||||
with open(hot_tpl) as f:
|
with open(hot_tpl) as f:
|
||||||
hot_expected_output = f.read()
|
hot_expected_output = f.read()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user