package frameproto import ( "testing" "strings" ) func TestWriteFrameInputText(t *testing.T) { tests := []struct{ URL string Expected string }{ { URL: "", Expected: ``+"\n", }, { URL: "something", Expected: ``+"\n", }, { URL: "Hello world! 🙂", Expected: ``+"\n", }, { URL: "enter your username", Expected: ``+"\n", }, { URL: "I like to eat, eat, eat, apples and bananas", Expected: ``+"\n", }, } for testNumber, test := range tests { var buffer strings.Builder WriteFrameInputText(&buffer, test.URL) 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("URL: %q", test.URL) continue } } }