initial commits

master
Charles Iliya Krempeaux 2024-02-15 05:08:45 -08:00
parent ff90f59879
commit 6ac721e9e5
2 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package frameproto
// StringFramePostURL will return the HTML <meta/> element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:post_url" name-value pair.
//
// For example, this call:
//
// var url string = "https://example.com/my/post/path.php"
//
// str := frameproto.StringFramePostURL(url)
//
// Would return this HTML <meta/> element:
//
// <meta property="fc:frame:post_url" content="https://example.com/my/post/path.php" />
func StringFramePostURL(url string) string {
const property string = MetaPropertyFramePostURL
return stringMetaPropertyContent(property, url)
}

View File

@ -0,0 +1,63 @@
package frameproto
import (
"testing"
)
func TestStringFramePostURL(t *testing.T) {
tests := []struct{
URL string
Expected string
}{
{
URL: "",
Expected: `<meta property="fc:frame:post_url" content="" />`+"\n",
},
{
URL: "something",
Expected: `<meta property="fc:frame:post_url" content="something" />`+"\n",
},
{
URL: "Hello world! 🙂",
Expected: `<meta property="fc:frame:post_url" content="Hello world! 🙂" />`+"\n",
},
{
URL: "https://example.com/path/to/post/to.php",
Expected: `<meta property="fc:frame:post_url" content="https://example.com/path/to/post/to.php" />`+"\n",
},
{
URL: "x-proto:apple/banana/cherry",
Expected: `<meta property="fc:frame:post_url" content="x-proto:apple/banana/cherry" />`+"\n",
},
}
for testNumber, test := range tests {
actual := StringFramePostURL(test.URL)
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("URL: %q", test.URL)
continue
}
}
}