Fix lint & test

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-01 18:01:43 +04:00
parent dda6e41102
commit a03a2deae1
3 changed files with 15 additions and 48 deletions

View File

@@ -262,39 +262,6 @@ func TestDocumentVersion_CreateDraft(t *testing.T) {
assert.Equal(t, "DRAFT", result.CreateDraftDocumentVersion.DocumentVersionEdge.Node.Status)
}
func TestDocumentVersion_UpdateContent(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)
_, draftVersionID := createTestDocument(t, owner)
query := `
mutation UpdateDocumentVersion($input: UpdateDocumentVersionContentInput!) {
updateDocumentVersionContent(input: $input) {
content
}
}
`
var result struct {
UpdateDocumentVersionContent struct {
Content string `json:"content"`
} `json:"updateDocumentVersionContent"`
}
wantContent := testutil.ProseMirrorTextDoc("Updated content for the document version")
err := owner.Execute(query, map[string]any{
"input": map[string]any{
"id": draftVersionID,
"content": wantContent,
},
}, &result)
require.NoError(t, err)
assert.JSONEq(t, wantContent, result.UpdateDocumentVersionContent.Content)
}
func TestDocumentVersion_RequestSignature(t *testing.T) {
t.Parallel()
owner := testutil.NewClient(t, testutil.RoleOwner)

View File

@@ -318,9 +318,9 @@ func (c *htmlBlockConverter) convertPre(n *html.Node) ([]Node, error) {
func codeLanguageFromClass(class string) *string {
const prefix = "language-"
for _, part := range strings.Fields(class) {
if strings.HasPrefix(part, prefix) {
lang := strings.TrimPrefix(part, prefix)
for part := range strings.FieldsSeq(class) {
if after, ok := strings.CutPrefix(part, prefix); ok {
lang := after
if lang != "" {
return &lang
}

View File

@@ -571,14 +571,14 @@ func TestParseMarkdown_InlineRawHTML(t *testing.T) {
p := doc.Content[0]
require.Equal(t, NodeParagraph, p.Type)
var joined string
var joined strings.Builder
for _, ch := range p.Content {
require.Equal(t, NodeText, ch.Type)
require.NotNil(t, ch.Text)
joined += *ch.Text
joined.WriteString(*ch.Text)
}
// Sanitized HTML: span is unwrapped to plain text content.
assert.Equal(t, "before x after", joined)
assert.Equal(t, "before x after", joined.String())
}
func TestParseMarkdown_InlineRawHTMLStrong(t *testing.T) {
@@ -603,16 +603,16 @@ func TestParseMarkdown_InlineRawHTMLScriptStripped(t *testing.T) {
require.NoError(t, err)
require.Len(t, doc.Content, 1)
p := doc.Content[0]
var joined string
var joined strings.Builder
for _, ch := range p.Content {
if ch.Type == NodeText && ch.Text != nil {
joined += *ch.Text
joined.WriteString(*ch.Text)
}
}
assert.NotContains(t, joined, "script")
assert.NotContains(t, joined, "evil")
assert.Contains(t, joined, "hi")
assert.Contains(t, joined, "there")
assert.NotContains(t, joined.String(), "script")
assert.NotContains(t, joined.String(), "evil")
assert.Contains(t, joined.String(), "hi")
assert.Contains(t, joined.String(), "there")
}
func TestParseMarkdown_InlineRawHTMLWithOuterBold(t *testing.T) {
@@ -624,13 +624,13 @@ func TestParseMarkdown_InlineRawHTMLWithOuterBold(t *testing.T) {
p := doc.Content[0]
require.GreaterOrEqual(t, len(p.Content), 3)
var joined string
var joined strings.Builder
for _, ch := range p.Content {
require.Equal(t, NodeText, ch.Type)
require.NotNil(t, ch.Text)
joined += *ch.Text
joined.WriteString(*ch.Text)
}
assert.Equal(t, "a b c", joined)
assert.Equal(t, "a b c", joined.String())
var mid *Node
for i := range p.Content {