Files
food-ai/backend/tests/ingredient/handler_test.go
dbastrikin 205edbdade feat: rename ingredients→products, products→user_products; add barcode/OFF import
- Rename catalog: ingredient/* → product/* (canonical_name, barcode, nutrition per 100g)
- Rename pantry: product/* → userproduct/* (user-owned items with expiry)
- Squash migrations into single 001_initial_schema.sql (clean-db baseline)
- product_categories: add English canonical name column; fix COALESCE in queries
- Remove product_translations: product names are stored in their original language
- Add default_unit_name to product API responses via unit_translations JOIN
- Add cmd/importoff: bulk import from OpenFoodFacts JSONL dump (COPY + ON CONFLICT)
- Diary: support product_id entries alongside dish_id (CHECK num_nonnulls = 1)
- Home: getLoggedCalories joins both recipes and catalog products
- Flutter: rename models/providers/services to match backend rename
- Flutter: add barcode scan flow for diary (mobile_scanner, product_portion_sheet)
- Flutter: localise 6 new keys across 12 languages (barcode scan, portion weight)
- Routes: GET /products/search, GET /products/barcode/{barcode}, /user-products

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 12:45:48 +02:00

177 lines
5.4 KiB
Go

package product_catalog_test
import (
"bytes"
"context"
"encoding/json"
"errors"
"net/http"
"net/http/httptest"
"testing"
"github.com/food-ai/backend/internal/domain/product"
"github.com/food-ai/backend/internal/infra/middleware"
"github.com/go-chi/chi/v5"
)
// mockProductSearcher is an inline mock for product.ProductSearcher (catalog search only).
type mockProductSearcher struct {
searchFn func(ctx context.Context, query string, limit int) ([]*product.Product, error)
}
func (m *mockProductSearcher) Search(ctx context.Context, query string, limit int) ([]*product.Product, error) {
if m.searchFn != nil {
return m.searchFn(ctx, query, limit)
}
return []*product.Product{}, nil
}
func (m *mockProductSearcher) GetByBarcode(_ context.Context, _ string) (*product.Product, error) {
return nil, errors.New("not implemented")
}
func (m *mockProductSearcher) UpsertByBarcode(_ context.Context, catalogProduct *product.Product) (*product.Product, error) {
return catalogProduct, nil
}
// mockOpenFoodFacts is an inline mock for product.OpenFoodFactsClient (unused in search tests).
type mockOpenFoodFacts struct{}
func (m *mockOpenFoodFacts) Fetch(_ context.Context, _ string) (*product.Product, error) {
return nil, errors.New("not implemented")
}
type alwaysAuthValidator struct{ userID string }
func (v *alwaysAuthValidator) ValidateAccessToken(_ string) (*middleware.TokenClaims, error) {
return &middleware.TokenClaims{UserID: v.userID}, nil
}
func buildRouter(handler *product.Handler) *chi.Mux {
router := chi.NewRouter()
router.Use(middleware.Auth(&alwaysAuthValidator{userID: "user-1"}))
router.Get("/products/search", handler.Search)
return router
}
func authorizedRequest(target string) *http.Request {
request := httptest.NewRequest(http.MethodGet, target, bytes.NewReader(nil))
request.Header.Set("Authorization", "Bearer test-token")
return request
}
func TestSearch_EmptyQuery_ReturnsEmptyArray(t *testing.T) {
// When q is empty, the handler returns [] without calling the repository.
handler := product.NewHandler(&mockProductSearcher{}, &mockOpenFoodFacts{})
router := buildRouter(handler)
recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, authorizedRequest("/products/search"))
if recorder.Code != http.StatusOK {
t.Errorf("expected 200, got %d", recorder.Code)
}
if body := recorder.Body.String(); body != "[]" {
t.Errorf("expected body [], got %q", body)
}
}
func TestSearch_LimitTooLarge_UsesDefault(t *testing.T) {
// When limit > 50, the handler ignores it and uses default 10.
calledLimit := 0
mockRepo := &mockProductSearcher{
searchFn: func(ctx context.Context, query string, limit int) ([]*product.Product, error) {
calledLimit = limit
return []*product.Product{}, nil
},
}
handler := product.NewHandler(mockRepo, &mockOpenFoodFacts{})
router := buildRouter(handler)
recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, authorizedRequest("/products/search?q=apple&limit=100"))
if recorder.Code != http.StatusOK {
t.Errorf("expected 200, got %d", recorder.Code)
}
if calledLimit != 10 {
t.Errorf("expected repo called with limit=10 (default), got %d", calledLimit)
}
}
func TestSearch_DefaultLimit(t *testing.T) {
// When no limit is supplied, the handler uses default 10.
calledLimit := 0
mockRepo := &mockProductSearcher{
searchFn: func(ctx context.Context, query string, limit int) ([]*product.Product, error) {
calledLimit = limit
return []*product.Product{}, nil
},
}
handler := product.NewHandler(mockRepo, &mockOpenFoodFacts{})
router := buildRouter(handler)
recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, authorizedRequest("/products/search?q=apple"))
if recorder.Code != http.StatusOK {
t.Errorf("expected 200, got %d", recorder.Code)
}
if calledLimit != 10 {
t.Errorf("expected default limit 10, got %d", calledLimit)
}
}
func TestSearch_ValidLimit(t *testing.T) {
// limit=25 is within range and should be forwarded as-is.
calledLimit := 0
mockRepo := &mockProductSearcher{
searchFn: func(ctx context.Context, query string, limit int) ([]*product.Product, error) {
calledLimit = limit
return []*product.Product{}, nil
},
}
handler := product.NewHandler(mockRepo, &mockOpenFoodFacts{})
router := buildRouter(handler)
recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, authorizedRequest("/products/search?q=apple&limit=25"))
if recorder.Code != http.StatusOK {
t.Errorf("expected 200, got %d", recorder.Code)
}
if calledLimit != 25 {
t.Errorf("expected limit 25, got %d", calledLimit)
}
}
func TestSearch_Success(t *testing.T) {
mockRepo := &mockProductSearcher{
searchFn: func(ctx context.Context, query string, limit int) ([]*product.Product, error) {
return []*product.Product{
{ID: "prod-1", CanonicalName: "apple"},
}, nil
},
}
handler := product.NewHandler(mockRepo, &mockOpenFoodFacts{})
router := buildRouter(handler)
recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, authorizedRequest("/products/search?q=apple"))
if recorder.Code != http.StatusOK {
t.Errorf("expected 200, got %d", recorder.Code)
}
var products []product.Product
if decodeError := json.NewDecoder(recorder.Body).Decode(&products); decodeError != nil {
t.Fatalf("decode response: %v", decodeError)
}
if len(products) != 1 {
t.Errorf("expected 1 result, got %d", len(products))
}
if products[0].CanonicalName != "apple" {
t.Errorf("expected canonical_name=apple, got %q", products[0].CanonicalName)
}
}