2022-08-27 21:01:14 +00:00
|
|
|
package owl_test
|
|
|
|
|
|
|
|
import (
|
2022-09-06 18:32:21 +00:00
|
|
|
"bytes"
|
2022-08-27 21:01:14 +00:00
|
|
|
"h4kor/owl-blogs"
|
2022-09-06 18:32:21 +00:00
|
|
|
"io"
|
|
|
|
"net/http"
|
2022-09-06 19:01:08 +00:00
|
|
|
"net/url"
|
2022-08-27 21:01:14 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-09-06 19:01:08 +00:00
|
|
|
func constructResponse(html []byte) *http.Response {
|
|
|
|
url, _ := url.Parse("http://example.com/foo/bar")
|
|
|
|
return &http.Response{
|
|
|
|
Request: &http.Request{
|
|
|
|
URL: url,
|
|
|
|
},
|
|
|
|
Body: io.NopCloser(bytes.NewReader([]byte(html))),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-27 21:01:14 +00:00
|
|
|
//
|
|
|
|
// https://www.w3.org/TR/webmention/#h-webmention-verification
|
|
|
|
//
|
|
|
|
|
|
|
|
func TestParseValidHEntry(t *testing.T) {
|
|
|
|
html := []byte("<div class=\"h-entry\"><div class=\"p-name\">Foo</div></div>")
|
2022-09-04 15:10:40 +00:00
|
|
|
parser := &owl.OwlHtmlParser{}
|
2022-09-06 18:32:21 +00:00
|
|
|
entry, err := parser.ParseHEntry(&http.Response{Body: io.NopCloser(bytes.NewReader(html))})
|
2022-08-27 21:01:14 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if entry.Title != "Foo" {
|
|
|
|
t.Errorf("Wrong Title. Expected %v, got %v", "Foo", entry.Title)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseValidHEntryWithoutTitle(t *testing.T) {
|
|
|
|
html := []byte("<div class=\"h-entry\"></div><div class=\"p-name\">Foo</div>")
|
2022-09-04 15:10:40 +00:00
|
|
|
parser := &owl.OwlHtmlParser{}
|
2022-09-06 18:32:21 +00:00
|
|
|
entry, err := parser.ParseHEntry(&http.Response{Body: io.NopCloser(bytes.NewReader(html))})
|
2022-08-27 21:01:14 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if entry.Title != "" {
|
|
|
|
t.Errorf("Wrong Title. Expected %v, got %v", "Foo", entry.Title)
|
|
|
|
}
|
|
|
|
}
|
2022-09-06 17:47:15 +00:00
|
|
|
|
|
|
|
func TestGetWebmentionEndpointLink(t *testing.T) {
|
|
|
|
html := []byte("<link rel=\"webmention\" href=\"http://example.com/webmention\" />")
|
|
|
|
parser := &owl.OwlHtmlParser{}
|
2022-09-06 19:01:08 +00:00
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(constructResponse(html))
|
2022-09-06 17:47:15 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWebmentionEndpointLinkA(t *testing.T) {
|
|
|
|
html := []byte("<a rel=\"webmention\" href=\"http://example.com/webmention\" />")
|
2022-09-06 19:05:51 +00:00
|
|
|
parser := &owl.OwlHtmlParser{}
|
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(constructResponse(html))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWebmentionEndpointLinkAFakeWebmention(t *testing.T) {
|
|
|
|
html := []byte("<a rel=\"not-webmention\" href=\"http://example.com/foo\" /><a rel=\"webmention\" href=\"http://example.com/webmention\" />")
|
2022-09-06 17:47:15 +00:00
|
|
|
parser := &owl.OwlHtmlParser{}
|
2022-09-06 19:01:08 +00:00
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(constructResponse(html))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWebmentionEndpointLinkHeader(t *testing.T) {
|
|
|
|
html := []byte("")
|
|
|
|
parser := &owl.OwlHtmlParser{}
|
|
|
|
resp := constructResponse(html)
|
|
|
|
resp.Header = http.Header{"Link": []string{"<http://example.com/webmention>; rel=\"webmention\""}}
|
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(resp)
|
2022-09-06 17:47:15 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
2022-09-06 18:32:21 +00:00
|
|
|
|
2022-09-06 19:17:25 +00:00
|
|
|
func TestGetWebmentionEndpointLinkHeaderCommas(t *testing.T) {
|
|
|
|
html := []byte("")
|
|
|
|
parser := &owl.OwlHtmlParser{}
|
|
|
|
resp := constructResponse(html)
|
|
|
|
resp.Header = http.Header{
|
|
|
|
"Link": []string{"<https://webmention.rocks/test/19/webmention/error>; rel=\"other\", <https://webmention.rocks/test/19/webmention>; rel=\"webmention\""},
|
|
|
|
}
|
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(resp)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "https://webmention.rocks/test/19/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "https://webmention.rocks/test/19/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-06 19:01:08 +00:00
|
|
|
func TestGetWebmentionEndpointRelativeLink(t *testing.T) {
|
|
|
|
html := []byte("<link rel=\"webmention\" href=\"/webmention\" />")
|
|
|
|
parser := &owl.OwlHtmlParser{}
|
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(constructResponse(html))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWebmentionEndpointRelativeLinkInHeader(t *testing.T) {
|
|
|
|
html := []byte("<link rel=\"webmention\" href=\"/webmention\" />")
|
|
|
|
parser := &owl.OwlHtmlParser{}
|
|
|
|
resp := constructResponse(html)
|
|
|
|
resp.Header = http.Header{"Link": []string{"</webmention>; rel=\"webmention\""}}
|
|
|
|
endpoint, err := parser.GetWebmentionEndpoint(resp)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse feed: %v", err)
|
|
|
|
}
|
|
|
|
if endpoint != "http://example.com/webmention" {
|
|
|
|
t.Errorf("Wrong endpoint. Expected %v, got %v", "http://example.com/webmention", endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-10 11:44:25 +00:00
|
|
|
// func TestRealWorldWebmention(t *testing.T) {
|
|
|
|
// links := []string{
|
|
|
|
// "https://webmention.rocks/test/1",
|
|
|
|
// "https://webmention.rocks/test/2",
|
|
|
|
// "https://webmention.rocks/test/3",
|
|
|
|
// "https://webmention.rocks/test/4",
|
|
|
|
// "https://webmention.rocks/test/5",
|
|
|
|
// "https://webmention.rocks/test/6",
|
|
|
|
// "https://webmention.rocks/test/7",
|
|
|
|
// "https://webmention.rocks/test/8",
|
|
|
|
// "https://webmention.rocks/test/9",
|
|
|
|
// // "https://webmention.rocks/test/10", // not supported
|
|
|
|
// "https://webmention.rocks/test/11",
|
|
|
|
// "https://webmention.rocks/test/12",
|
|
|
|
// "https://webmention.rocks/test/13",
|
|
|
|
// "https://webmention.rocks/test/14",
|
|
|
|
// "https://webmention.rocks/test/15",
|
|
|
|
// "https://webmention.rocks/test/16",
|
|
|
|
// "https://webmention.rocks/test/17",
|
|
|
|
// "https://webmention.rocks/test/18",
|
|
|
|
// "https://webmention.rocks/test/19",
|
|
|
|
// "https://webmention.rocks/test/20",
|
|
|
|
// "https://webmention.rocks/test/21",
|
|
|
|
// "https://webmention.rocks/test/22",
|
|
|
|
// "https://webmention.rocks/test/23/page",
|
|
|
|
// }
|
|
|
|
|
|
|
|
// for _, link := range links {
|
|
|
|
// parser := &owl.OwlHtmlParser{}
|
|
|
|
// client := &owl.OwlHttpClient{}
|
|
|
|
// html, _ := client.Get(link)
|
|
|
|
// _, err := parser.GetWebmentionEndpoint(html)
|
|
|
|
|
|
|
|
// if err != nil {
|
|
|
|
// t.Errorf("Unable to find webmention: %v for link %v", err, link)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|