blob: 172968f5e8228178c69b26c1b3d28a3c0fc9eea8 [file] [log] [blame]
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package related
import (
"context"
"fmt"
"maps"
"slices"
"strings"
"testing"
"time"
"golang.org/x/oscar/internal/diff"
"golang.org/x/oscar/internal/docs"
"golang.org/x/oscar/internal/embeddocs"
"golang.org/x/oscar/internal/github"
"golang.org/x/oscar/internal/githubdocs"
"golang.org/x/oscar/internal/llm"
"golang.org/x/oscar/internal/storage"
"golang.org/x/oscar/internal/testutil"
)
var ctx = context.Background()
func Test(t *testing.T) {
lg := testutil.Slogger(t)
db := storage.MemDB()
gh := github.New(lg, db, nil, nil)
gh.Testing().LoadTxtar("../testdata/markdown.txt")
gh.Testing().LoadTxtar("../testdata/rsctmp.txt")
dc := docs.New(db)
githubdocs.Sync(ctx, lg, dc, gh)
vdb := storage.MemVectorDB(db, lg, "vecs")
embeddocs.Sync(ctx, lg, vdb, llm.QuoteEmbedder(), dc)
vdb = storage.MemVectorDB(db, lg, "vecs")
p := New(lg, db, gh, vdb, dc, "postname")
p.EnableProject("rsc/markdown")
p.SetTimeLimit(time.Time{})
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), nil)
gh.Testing().ClearEdits()
p.EnablePosts()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), map[int64]string{13: post13, 19: post19})
gh.Testing().ClearEdits()
p = New(lg, db, gh, vdb, dc, "postname2")
p.EnableProject("rsc/markdown")
p.SetTimeLimit(time.Time{})
p.EnablePosts()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), nil)
gh.Testing().ClearEdits()
for i := range 4 {
p := New(lg, db, gh, vdb, dc, "postnameloop."+fmt.Sprint(i))
p.EnableProject("rsc/markdown")
p.SetTimeLimit(time.Time{})
switch i {
case 0:
p.SkipTitlePrefix("feature: ")
case 1:
p.SkipTitleSuffix("for heading")
case 2:
p.SkipBodyContains("For example, this heading")
case 3:
p.SkipBodyContains("For example, this heading")
p.SkipBodyContains("ZZZ")
}
p.EnablePosts()
p.deletePosted()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), map[int64]string{13: post13})
gh.Testing().ClearEdits()
}
p = New(lg, db, gh, vdb, dc, "postname3")
p.EnableProject("rsc/markdown")
p.SetMinScore(2.0) // impossible
p.SetTimeLimit(time.Time{})
p.EnablePosts()
p.deletePosted()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), nil)
gh.Testing().ClearEdits()
p = New(lg, db, gh, vdb, dc, "postname4")
p.EnableProject("rsc/markdown")
p.SetMinScore(2.0) // impossible
p.SetTimeLimit(time.Date(2222, 1, 1, 1, 1, 1, 1, time.UTC))
p.EnablePosts()
p.deletePosted()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), nil)
gh.Testing().ClearEdits()
p = New(lg, db, gh, vdb, dc, "postname5")
p.EnableProject("rsc/markdown")
p.SetMinScore(0) // everything
p.SetMaxResults(0) // except none
p.SetTimeLimit(time.Time{})
p.EnablePosts()
p.deletePosted()
p.Run(ctx)
checkEdits(t, gh.Testing().Edits(), nil)
gh.Testing().ClearEdits()
}
func checkEdits(t *testing.T, edits []*github.TestingEdit, want map[int64]string) {
t.Helper()
for _, e := range edits {
if e.Project != "rsc/markdown" {
t.Errorf("posted to unexpected project: %v", e)
continue
}
if e.Comment != 0 || e.IssueCommentChanges == nil {
t.Errorf("non-post edit: %v", e)
continue
}
w, ok := want[e.Issue]
if !ok {
t.Errorf("post to unexpected issue: %v", e)
continue
}
delete(want, e.Issue)
if strings.TrimSpace(e.IssueCommentChanges.Body) != strings.TrimSpace(w) {
t.Errorf("rsc/markdown#%d: wrong post:\n%s", e.Issue,
string(diff.Diff("want", []byte(w), "have", []byte(e.IssueCommentChanges.Body))))
}
}
for _, issue := range slices.Sorted(maps.Keys(want)) {
t.Errorf("did not see post on rsc/markdown#%d", issue)
}
if t.Failed() {
t.FailNow()
}
}
var post13 = unQUOT(`**Related Issues**
- [goldmark and markdown diff with h1 inside p #6 (closed)](https://github.com/rsc/markdown/issues/6) <!-- score=0.92657 -->
- [Support escaped \QUOT|\QUOT in table cells #9 (closed)](https://github.com/rsc/markdown/issues/9) <!-- score=0.91858 -->
- [markdown: fix markdown printing for inline code #12 (closed)](https://github.com/rsc/markdown/issues/12) <!-- score=0.91325 -->
- [markdown: emit Info in CodeBlock markdown #18 (closed)](https://github.com/rsc/markdown/issues/18) <!-- score=0.91129 -->
- [feature: synthesize lowercase anchors for heading #19](https://github.com/rsc/markdown/issues/19) <!-- score=0.90867 -->
- [Replace newlines with spaces in alt text #4 (closed)](https://github.com/rsc/markdown/issues/4) <!-- score=0.90859 -->
- [allow capital X in task list items #2 (closed)](https://github.com/rsc/markdown/issues/2) <!-- score=0.90850 -->
- [build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay #10](https://github.com/rsc/tmp/issues/10) <!-- score=0.90453 -->
- [Render reference links in Markdown #14 (closed)](https://github.com/rsc/markdown/issues/14) <!-- score=0.90175 -->
- [Render reference links in Markdown #15 (closed)](https://github.com/rsc/markdown/issues/15) <!-- score=0.90103 -->
<sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub>
`)
var post19 = unQUOT(`**Related Issues**
- [allow capital X in task list items #2 (closed)](https://github.com/rsc/markdown/issues/2) <!-- score=0.92943 -->
- [Support escaped \QUOT|\QUOT in table cells #9 (closed)](https://github.com/rsc/markdown/issues/9) <!-- score=0.91994 -->
- [goldmark and markdown diff with h1 inside p #6 (closed)](https://github.com/rsc/markdown/issues/6) <!-- score=0.91813 -->
- [Render reference links in Markdown #14 (closed)](https://github.com/rsc/markdown/issues/14) <!-- score=0.91513 -->
- [Render reference links in Markdown #15 (closed)](https://github.com/rsc/markdown/issues/15) <!-- score=0.91487 -->
- [Empty column heading not recognized in table #7 (closed)](https://github.com/rsc/markdown/issues/7) <!-- score=0.90874 -->
- [Correctly render reference links in Markdown #13](https://github.com/rsc/markdown/issues/13) <!-- score=0.90867 -->
- [markdown: fix markdown printing for inline code #12 (closed)](https://github.com/rsc/markdown/issues/12) <!-- score=0.90795 -->
- [Replace newlines with spaces in alt text #4 (closed)](https://github.com/rsc/markdown/issues/4) <!-- score=0.90278 -->
- [build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay #10](https://github.com/rsc/tmp/issues/10) <!-- score=0.90259 -->
<sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub>
`)
func unQUOT(s string) string { return strings.ReplaceAll(s, "QUOT", "`") }