initial commits

master
Charles Iliya Krempeaux 2024-02-13 09:13:33 -08:00
parent 5e83d940ac
commit 4d82679a55
2 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package frameproto
import (
"io"
)
// WriteFrameInputText will write the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:input:text" name-value pair.
//
// For example, this call:
//
// var label string = "enter your username"
//
// WriteFrameInputText(writer, label)
//
// Would write this HTML <meta/> element:
//
// <meta property="fc:frame:input:text" content="enter your username" />
func WriteFrameInputText(writer io.Writer, label string) {
const property string = MetaPropertyFrameInputText
writeMetaPropertyContent(writer, property, label)
}

View File

@ -0,0 +1,68 @@
package frameproto
import (
"testing"
"strings"
)
func TestWriteFrameInputText(t *testing.T) {
tests := []struct{
URL string
Expected string
}{
{
URL: "",
Expected: `<meta property="fc:frame:input:text" content="" />`+"\n",
},
{
URL: "something",
Expected: `<meta property="fc:frame:input:text" content="something" />`+"\n",
},
{
URL: "Hello world! 🙂",
Expected: `<meta property="fc:frame:input:text" content="Hello world! 🙂" />`+"\n",
},
{
URL: "enter your username",
Expected: `<meta property="fc:frame:input:text" content="enter your username" />`+"\n",
},
{
URL: "I like to eat, eat, eat, apples and bananas",
Expected: `<meta property="fc:frame:input:text" content="I like to eat, eat, eat, apples and bananas" />`+"\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
}
}
}