2015-04-14 04:02:29 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
|
|
"github.com/russross/blackfriday"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAlpha(t *testing.T) {
|
|
|
|
query := startQuery()
|
|
|
|
|
|
|
|
query.Find("body > ul").Each(func(_ int, s *goquery.Selection) {
|
|
|
|
testList(t, s)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testList(t *testing.T, list *goquery.Selection) {
|
|
|
|
list.Find("ul").Each(func(_ int, items *goquery.Selection) {
|
|
|
|
testList(t, items)
|
|
|
|
items.RemoveFiltered("ul")
|
|
|
|
})
|
|
|
|
checkAlphabeticOrder(t, list)
|
|
|
|
}
|
|
|
|
|
|
|
|
func readme() []byte {
|
2015-04-14 04:22:56 +00:00
|
|
|
input, err := ioutil.ReadFile("./README.md")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-04-14 04:02:29 +00:00
|
|
|
html := append([]byte("<body>"), blackfriday.MarkdownCommon(input)...)
|
|
|
|
html = append(html, []byte("</body>")...)
|
|
|
|
return html
|
|
|
|
}
|
|
|
|
|
|
|
|
func startQuery() *goquery.Document {
|
|
|
|
buf := bytes.NewBuffer(readme())
|
2015-04-14 04:22:56 +00:00
|
|
|
query, err := goquery.NewDocumentFromReader(buf)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-04-14 04:02:29 +00:00
|
|
|
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkAlphabeticOrder(t *testing.T, s *goquery.Selection) {
|
|
|
|
items := s.Find("li > a:first-child").Map(func(_ int, li *goquery.Selection) string {
|
|
|
|
return strings.ToLower(li.Text())
|
|
|
|
})
|
|
|
|
|
|
|
|
sorted := make([]string, len(items))
|
|
|
|
copy(sorted, items)
|
|
|
|
sort.Strings(sorted)
|
|
|
|
|
|
|
|
for k, item := range items {
|
|
|
|
if item != sorted[k] {
|
2015-04-14 04:19:33 +00:00
|
|
|
log.Printf("expected '%s' but actual is '%s'", sorted[k], item)
|
|
|
|
t.Fail()
|
2015-04-14 04:02:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|