From 61f6e9f63b0d2c8d7c3a2a88a3d2885c9a7d8165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 20 Mar 2018 18:23:32 +0100 Subject: tpl/transform: Add a comments test for Remarshal See #4521 --- tpl/transform/remarshal_test.go | 42 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'tpl/transform') diff --git a/tpl/transform/remarshal_test.go b/tpl/transform/remarshal_test.go index 78980e62c..5e3ed8b34 100644 --- a/tpl/transform/remarshal_test.go +++ b/tpl/transform/remarshal_test.go @@ -108,6 +108,48 @@ title: Test Metadata } +func TestRemarshalComments(t *testing.T) { + t.Parallel() + + ns := New(newDeps(viper.New())) + assert := require.New(t) + + input := ` +Hugo = "Rules" + +# It really does! + +[m] +# A comment +a = "b" + +` + + expected := ` +Hugo = "Rules" + +[m] + a = "b" +` + + for _, format := range []string{"json", "yaml", "toml"} { + fromTo := fmt.Sprintf("%s => %s", "toml", format) + + converted := input + var err error + // Do a round-trip conversion + for _, toFormat := range []string{format, "toml"} { + converted, err = ns.Remarshal(toFormat, converted) + assert.NoError(err, fromTo) + } + + diff := helpers.DiffStrings(expected, converted) + if len(diff) > 0 { + t.Fatalf("[%s] Expected \n%v\ngot\n%v\ndiff:\n%v\n", fromTo, expected, converted, diff) + } + } +} + func TestTestRemarshalError(t *testing.T) { t.Parallel() -- cgit v1.2.3