Files
wehub-resource-sync a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:42 +08:00

38 lines
1.1 KiB
Go

package languages
import (
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func TestTextExtractor_Sections(t *testing.T) {
res, err := NewTextExtractor().Extract("notes.txt", []byte("first line\nsecond line\n"))
require.NoError(t, err)
file, secs := splitNodes(res.Nodes)
require.NotNil(t, file)
require.Equal(t, "text", file.Meta["asset_kind"])
require.Len(t, secs, 1)
require.Equal(t, "section", secs[0].Meta["asset_kind"])
require.Equal(t, "first line\nsecond line", secs[0].Meta["section_text"])
require.Equal(t, 1, secs[0].StartLine)
}
func TestTextExtractor_ChunksLargeFile(t *testing.T) {
var sb strings.Builder
for i := 0; i < 2000; i++ { // ~26 bytes * 2000 well over contentSectionCap
sb.WriteString("the quick brown fox jumps\n")
}
res, err := NewTextExtractor().Extract("big.txt", []byte(sb.String()))
require.NoError(t, err)
_, secs := splitNodes(res.Nodes)
require.Greater(t, len(secs), 1, "a large text file must split into multiple section chunks")
for _, n := range secs {
txt, _ := n.Meta["section_text"].(string)
require.LessOrEqual(t, len(txt), contentSectionCap)
}
}