Files
wehub-resource-sync f36e2104d8
tests / ragflow_tests_infinity (push) Has been cancelled
tests / ragflow_tests_elasticsearch (push) Has been cancelled
sep-tests / ragflow_preflight (push) Has been cancelled
sep-tests / ragflow_tests_infinity (push) Has been cancelled
sep-tests / ragflow_tests_elasticsearch (push) Has been cancelled
tests / ragflow_preflight (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:16:49 +08:00

39 lines
1.0 KiB
Go

//go:build cgo
package docx
import "testing"
func TestJoinElements_MultiParagraphCell(t *testing.T) {
// When a table cell contains multiple paragraphs, joinElements must
// insert a newline between them to match python-docx _Cell.text behavior.
els := []irElement{
{Type: "paragraph", Content: []irRun{{Type: "text", Text: "first line"}}},
{Type: "paragraph", Content: []irRun{{Type: "text", Text: "second line"}}},
}
got := joinElements(els)
want := "first line\nsecond line"
if got != want {
t.Errorf("joinElements:\ngot: %q\nwant: %q", got, want)
}
}
func TestJoinElements_SingleElement(t *testing.T) {
// Single paragraph cell — no separator expected.
els := []irElement{
{Type: "paragraph", Content: []irRun{{Type: "text", Text: "single paragraph"}}},
}
got := joinElements(els)
want := "single paragraph"
if got != want {
t.Errorf("joinElements:\ngot: %q\nwant: %q", got, want)
}
}
func TestJoinElements_Empty(t *testing.T) {
got := joinElements(nil)
if got != "" {
t.Errorf("joinElements(nil): got %q, want empty", got)
}
}