Add language to inventaire search book

This commit is contained in:
2026-01-22 13:37:42 +01:00
parent 8d3569e5d6
commit 7921a83f30
6 changed files with 33 additions and 9 deletions

View File

@@ -6,8 +6,17 @@ import (
"github.com/stretchr/testify/assert"
)
func TestCallInventaireSearch_NoParameters(t *testing.T) {
result, err := CallInventaireSearch("salammbo", "", 0, 0)
if err != nil {
t.Error(err)
}
assert.Equal(t, 17, result.Total)
assert.Equal(t, 10, len(result.Results))
}
func TestCallInventaireSearch_NoLimit(t *testing.T) {
result, err := CallInventaireSearch("salammbo", 0, 0)
result, err := CallInventaireSearch("salammbo", "fr", 0, 0)
if err != nil {
t.Error(err)
}
@@ -16,7 +25,7 @@ func TestCallInventaireSearch_NoLimit(t *testing.T) {
}
func TestCallInventaireSearch_Limit(t *testing.T) {
result, err := CallInventaireSearch("salammbo", 5, 0)
result, err := CallInventaireSearch("salammbo", "fr", 5, 0)
if err != nil {
t.Error(err)
}
@@ -25,7 +34,7 @@ func TestCallInventaireSearch_Limit(t *testing.T) {
}
func TestCallInventaireSearch_Offset(t *testing.T) {
result, err := CallInventaireSearch("salammbo", 0, 15)
result, err := CallInventaireSearch("salammbo", "fr", 0, 15)
if err != nil {
t.Error(err)
}