acid/acid_test.go

33 lines
743 B
Go
Raw Normal View History

2024-04-16 07:38:23 +02:00
package main
import (
"bytes"
"testing"
ttemplate "text/template"
)
func TestTemplateQuote(t *testing.T) {
// Ideally, we should back-parse it using sh syntax.
// This is an unnecessarily fragile test.
for _, test := range []struct {
input, output string
}{
2024-04-17 01:44:57 +02:00
{`!!'!$`, `'!!'\''!$'`},
2024-04-16 07:38:23 +02:00
{``, `""`},
{`${var}`, `"\${var}"`},
{"`cat`", "\"\\`cat\\`\""},
{`"魚\"`, `"\"魚\\\""`},
} {
var b bytes.Buffer
err := ttemplate.Must(ttemplate.New("test").
Funcs(shellFuncs).Parse("{{quote .}}")).Execute(&b, test.input)
if err != nil {
t.Errorf("template execution error: %s\n", err)
}
if b.String() != test.output {
t.Errorf("%q should be quoted os %q, not %q\n",
test.input, test.output, b.String())
}
}
}