initial commits

master
Charles Iliya Krempeaux 2024-02-15 04:49:04 -08:00
parent b63a4bd892
commit 6db78c7543
2 changed files with 87 additions and 0 deletions

24
stringframe.go 100644
View File

@ -0,0 +1,24 @@
package frameproto
// StringFrame will return the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame" name-value pair.
//
// For example, this call:
//
// var version string = "vNext"
//
// s = frameproto.StringFrame(version)
//
// Would return this HTML <meta/> element:
//
// <meta property="fc:frame" content="vNext" />
//
// Note that this package provides some constants to use with StringFrame.
// Namely: VersionVNext (for "vNext").
//
// Which in code would be used as:
//
// p = frameproto.StringFrame(p, frameproto.VersionVNext)
func StringFrame(version string) string {
const property string = MetaPropertyFrame
return stringMetaPropertyContent(property, version)
}

View File

@ -0,0 +1,63 @@
package frameproto
import (
"testing"
)
func TestStringFrame(t *testing.T) {
tests := []struct{
Version string
Expected string
}{
{
Version: "",
Expected: `<meta property="fc:frame" content="" />`+"\n",
},
{
Version: "something",
Expected: `<meta property="fc:frame" content="something" />`+"\n",
},
{
Version: "Hello world! 🙂",
Expected: `<meta property="fc:frame" content="Hello world! 🙂" />`+"\n",
},
{
Version: "vNext",
Expected: `<meta property="fc:frame" content="vNext" />`+"\n",
},
{
Version: "2020-01-01",
Expected: `<meta property="fc:frame" content="2020-01-01" />`+"\n",
},
}
for testNumber, test := range tests {
actual := StringFrame(test.Version)
expected := test.Expected
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.Version)
continue
}
}
}