package frameproto import ( "testing" "strings" ) func TestWriteFrameButton3Action(t *testing.T) { tests := []struct{ Label string Expected string }{ { Label: "", Expected: ``+"\n", }, { Label: "something", Expected: ``+"\n", }, { Label: "Hello world! 🙂", Expected: ``+"\n", }, { Label: "link", Expected: ``+"\n", }, { Label: "mint", Expected: ``+"\n", }, { Label: "post", Expected: ``+"\n", }, { Label: "post_redirect", Expected: ``+"\n", }, } for testNumber, test := range tests { var buffer strings.Builder WriteFrameButton3Action(&buffer, test.Label) expected := test.Expected actual := buffer.String() if expected != actual { t.Errorf("For test #%d, the actual written meta-tag is not what was expected." ,testNumber) t.Logf("EXPECTED: %s", expected) t.Logf("ACTUAL: %s", actual) t.Logf("EXPECTED: %q", expected) t.Logf("ACTUAL: %q", actual) t.Logf("LABEL: %q", test.Label) continue } } }