This commit is contained in:
2026-08-23 13:39:56 +02:00
parent 89ae7e5fa8
commit 815e26d359
7 changed files with 283 additions and 8 deletions
@@ -54,3 +54,53 @@ GPT predloga:
t.Fatalf("derived template should be OK: %s", raw)
}
}
func TestEffectiveDescriptionFormula_fromPromptDescriptionSection(t *testing.T) {
t.Parallel()
prompt := strings.Join([]string{
SectionTitleStart,
`Napiši novo ime izdelka po formuli: "tip izdelka sentence case", "znamka". Ne uporabljaj vejic.`,
SectionTitleEnd,
"",
SectionDescriptionStart,
`<H2>{Napiši Novo ime izdelka in izpostavi en benefit}</H2>`,
`<p>{Napiši odstavek, ki je dolg 100 besed, ki NE vsebuje Novo ime izdelka.}</p>`,
`<H2>{Izpostavi en benefit, in NE napiši Novo ime izdelka}</H2>`,
`<p>{Napiši odstavek, ki je dolg 100 besed in VKLJUČI tudi tip izdelka lowercase}</p>`,
`<b>{Tehnične specifikacije}</b><ul><li>{Napiši 3-10 tehničnih specifikacij v alinejah}</li></ul>`,
SectionDescriptionEnd,
}, "\n")
f := EffectiveDescriptionFormula(nil, prompt)
if len(f.Sections) < 4 {
t.Fatalf("want HTML sections from Description role, got %#v", f.Sections)
}
if f.Sections[0].Type != "h2" || f.Sections[1].Type != "p" {
t.Fatalf("unexpected order: %#v", f.Sections)
}
last := f.Sections[len(f.Sections)-1]
if last.Type != "ul" {
t.Fatalf("last should be ul specs, got %#v", last)
}
anyTpl := EffectiveDescriptionTemplateAny(nil, prompt)
if anyTpl == nil {
t.Fatal("expected non-nil template any")
}
if !CategoryTitlePromptRequiresRewrite(prompt) {
t.Fatal("Title section should require rewrite")
}
if CategoryTitlePromptRequiresRewrite("--- Title ---\nKeep supplier name.\n--- End Title ---") {
t.Fatal("keep-only Title must not require rewrite")
}
}
func TestExtractEnhanceSectionBody(t *testing.T) {
t.Parallel()
prompt := SectionTitleStart + "\nHello\n" + SectionTitleEnd + "\n" +
SectionDescriptionStart + "\nBody here\n" + SectionDescriptionEnd
if got := ExtractEnhanceSectionBody(prompt, SectionTitleStart, SectionTitleEnd); got != "Hello" {
t.Fatalf("title body=%q", got)
}
if got := ExtractEnhanceSectionBody(prompt, SectionDescriptionStart, SectionDescriptionEnd); got != "Body here" {
t.Fatalf("desc body=%q", got)
}
}