Ejemplo n.º 1
0
def test_one_exception_render(*_):
    config_data = {}
    output_file = "broker.xml"
    output_path = "/output/directory"
    template_list = [
        "%s.jinja2" % output_file,
    ]

    env = mock.Mock()
    template = mock.Mock()
    env.get_template.return_value = template
    template.render.side_effect = jinja2.TemplateError

    with pytest.raises(GenerationError):
        # noinspection PyTypeChecker
        generate_outputs(
            config_data=config_data,
            template_list=template_list,
            env=env,
            output_path=output_path,
        )

    env.get_template.assert_called_with("broker.xml.jinja2")
    template.render.assert_called()
    # noinspection PyUnresolvedReferences
    yacfg.yacfg.write_output.assert_not_called()
Ejemplo n.º 2
0
def test_one_true_output(*_):
    config_data = {}
    output_file = 'broker.xml'
    output_path = '/output/directory'
    expected_output_data = 'Rendered data'
    template_list = [
        '%s.jinja2' % output_file,
    ]
    expected_result_data = {output_file: 'Rendered data'}

    env = mock.Mock()
    template = mock.Mock()
    env.get_template.return_value = template
    template.render.return_value = expected_output_data

    # noinspection PyTypeChecker
    result = generate_outputs(config_data=config_data,
                              template_list=template_list,
                              env=env,
                              output_path=output_path)

    assert expected_result_data == result

    env.get_template.assert_called_with('broker.xml.jinja2')
    template.render.assert_called()
    # noinspection PyUnresolvedReferences
    yacfg.yacfg.write_output.assert_called_with(output_file, output_path,
                                                expected_output_data)
Ejemplo n.º 3
0
def test_one_true_no_output(*_):
    config_data = {}
    template_list = [
        'broker.xml.jinja2',
    ]

    expected_result_data = {'broker.xml': 'Rendered data'}

    env = mock.Mock()
    template = mock.Mock()
    env.get_template.return_value = template
    template.render.return_value = 'Rendered data'

    # noinspection PyTypeChecker
    result = generate_outputs(config_data=config_data,
                              template_list=template_list,
                              env=env,
                              output_path=None)

    assert expected_result_data == result

    env.get_template.assert_called_with('broker.xml.jinja2')
    template.render.assert_called()
    # noinspection PyUnresolvedReferences
    yacfg.yacfg.write_output.assert_not_called()
Ejemplo n.º 4
0
def test_one_exception_template(*_):
    config_data = {}
    output_file = 'broker.xml'
    output_path = '/output/directory'
    template_list = [
        '%s.jinja2' % output_file,
    ]

    env = mock.Mock()
    env.get_template.side_effect = jinja2.TemplateError

    with pytest.raises(GenerationError):
        # noinspection PyTypeChecker
        generate_outputs(config_data=config_data,
                         template_list=template_list,
                         env=env,
                         output_path=output_path)

    env.get_template.assert_called_with('broker.xml.jinja2')
    # noinspection PyUnresolvedReferences
    yacfg.yacfg.write_output.assert_not_called()