From c422686f8488df917d206b36354ca7903a0906d3 Mon Sep 17 00:00:00 2001 From: Jude Venn Date: Tue, 30 Apr 2019 08:44:06 +0100 Subject: test(templater): Add a test for the `insertTemplate` function --- templater/templater_test.go | 24 ++++++++++++++++++++++++ templater/testdata/test-insertTemplate.txt | 1 + 2 files changed, 25 insertions(+) create mode 100644 templater/testdata/test-insertTemplate.txt (limited to 'templater') diff --git a/templater/templater_test.go b/templater/templater_test.go index 2a9ddaa2bb10..4237681c1a01 100644 --- a/templater/templater_test.go +++ b/templater/templater_test.go @@ -179,3 +179,27 @@ func TestDefaultTemplateFunction(t *testing.T) { t.Fail() } } + +func TestInsertTemplateFunction(t *testing.T) { + ctx := context.Context{} + resourceSet := context.ResourceSet{ + Path: "testdata", + Values: map[string]interface{}{ + "testName": "TestInsertTemplateFunction", + }, + } + + res, err := templateFile(&ctx, &resourceSet, "testdata/test-insertTemplate.txt") + + if err != nil { + t.Error(err) + t.Errorf("Templating with an insertTemplate call should have succeeded.\n") + t.Fail() + } + + if res.Rendered != "Inserting \"Template for test TestInsertTemplateFunction\".\n" { + t.Error("Result does not contain expected rendered template value.") + t.Error(res.Rendered) + t.Fail() + } +} diff --git a/templater/testdata/test-insertTemplate.txt b/templater/testdata/test-insertTemplate.txt new file mode 100644 index 000000000000..8155e174fe00 --- /dev/null +++ b/templater/testdata/test-insertTemplate.txt @@ -0,0 +1 @@ +Inserting "{{ insertTemplate "test-template.txt" | trim }}". -- cgit 1.4.1