52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
/*
|
|
ekster - microsub server
|
|
Copyright (C) 2018 Peter Stuifzand
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/url"
|
|
"os"
|
|
"testing"
|
|
|
|
"willnorris.com/go/microformats"
|
|
)
|
|
|
|
func TestInReplyTo(t *testing.T) {
|
|
|
|
f, err := os.Open("./tests/tantek-in-reply-to.html")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer f.Close()
|
|
|
|
u, err := url.Parse("http://tantek.com/2018/115/t1/")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
data := microformats.Parse(f, u)
|
|
results := simplifyMicroformatData(data)
|
|
|
|
if results[0]["type"] != "entry" {
|
|
t.Fatalf("not an h-entry, but %s", results[0]["type"])
|
|
}
|
|
if results[0]["in-reply-to"] != "https://github.com/w3c/csswg-drafts/issues/2589" {
|
|
t.Fatalf("not in-reply-to, but %s", results[0]["in-reply-to"])
|
|
}
|
|
}
|