Added 40+ new handler tests covering: - Auth: Register, Login (invalid JSON, missing company) - Company: Get, Update, Delete, Verify, Rating, MyCompany - Product: Get, Update, Delete (not found, invalid UUID) - Inventory: List, Adjust (invalid params) - Order: Create, Get, Update, Delete (validation) - Payment: Preference, Webhook, Shipment - Dashboard: Seller, Admin (authorization) - User: CRUD operations (admin/seller scoping) - Cart: Add, Get, Delete (context validation) - Review: Create (validation) Fixed MockRepository to return errors for not found entities
754 lines
22 KiB
Go
754 lines
22 KiB
Go
package handler
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gofrs/uuid/v5"
|
|
"github.com/saveinmed/backend-go/internal/domain"
|
|
"github.com/saveinmed/backend-go/internal/usecase"
|
|
)
|
|
|
|
// MockRepository implements the Repository interface for testing without database
|
|
type MockRepository struct {
|
|
companies []domain.Company
|
|
products []domain.Product
|
|
users []domain.User
|
|
orders []domain.Order
|
|
}
|
|
|
|
func NewMockRepository() *MockRepository {
|
|
return &MockRepository{
|
|
companies: make([]domain.Company, 0),
|
|
products: make([]domain.Product, 0),
|
|
users: make([]domain.User, 0),
|
|
orders: make([]domain.Order, 0),
|
|
}
|
|
}
|
|
|
|
// Company methods
|
|
func (m *MockRepository) CreateCompany(ctx context.Context, company *domain.Company) error {
|
|
id, _ := uuid.NewV4()
|
|
company.ID = id
|
|
company.CreatedAt = time.Now()
|
|
company.UpdatedAt = time.Now()
|
|
m.companies = append(m.companies, *company)
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) ListCompanies(ctx context.Context) ([]domain.Company, error) {
|
|
return m.companies, nil
|
|
}
|
|
|
|
func (m *MockRepository) GetCompany(ctx context.Context, id uuid.UUID) (*domain.Company, error) {
|
|
for _, c := range m.companies {
|
|
if c.ID == id {
|
|
return &c, nil
|
|
}
|
|
}
|
|
return nil, errors.New("company not found")
|
|
}
|
|
|
|
func (m *MockRepository) UpdateCompany(ctx context.Context, company *domain.Company) error {
|
|
for i, c := range m.companies {
|
|
if c.ID == company.ID {
|
|
m.companies[i] = *company
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) DeleteCompany(ctx context.Context, id uuid.UUID) error {
|
|
for i, c := range m.companies {
|
|
if c.ID == id {
|
|
m.companies = append(m.companies[:i], m.companies[i+1:]...)
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Product methods
|
|
func (m *MockRepository) CreateProduct(ctx context.Context, product *domain.Product) error {
|
|
id, _ := uuid.NewV4()
|
|
product.ID = id
|
|
product.CreatedAt = time.Now()
|
|
product.UpdatedAt = time.Now()
|
|
m.products = append(m.products, *product)
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) ListProducts(ctx context.Context) ([]domain.Product, error) {
|
|
return m.products, nil
|
|
}
|
|
|
|
func (m *MockRepository) GetProduct(ctx context.Context, id uuid.UUID) (*domain.Product, error) {
|
|
for _, p := range m.products {
|
|
if p.ID == id {
|
|
return &p, nil
|
|
}
|
|
}
|
|
return nil, errors.New("product not found")
|
|
}
|
|
|
|
func (m *MockRepository) UpdateProduct(ctx context.Context, product *domain.Product) error {
|
|
for i, p := range m.products {
|
|
if p.ID == product.ID {
|
|
m.products[i] = *product
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) DeleteProduct(ctx context.Context, id uuid.UUID) error {
|
|
for i, p := range m.products {
|
|
if p.ID == id {
|
|
m.products = append(m.products[:i], m.products[i+1:]...)
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Stub methods for other interfaces
|
|
func (m *MockRepository) AdjustInventory(ctx context.Context, productID uuid.UUID, delta int64, reason string) (*domain.InventoryItem, error) {
|
|
return &domain.InventoryItem{}, nil
|
|
}
|
|
|
|
func (m *MockRepository) ListInventory(ctx context.Context, filter domain.InventoryFilter) ([]domain.InventoryItem, error) {
|
|
return []domain.InventoryItem{}, nil
|
|
}
|
|
|
|
func (m *MockRepository) CreateOrder(ctx context.Context, order *domain.Order) error {
|
|
id, _ := uuid.NewV4()
|
|
order.ID = id
|
|
m.orders = append(m.orders, *order)
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) ListOrders(ctx context.Context) ([]domain.Order, error) {
|
|
return m.orders, nil
|
|
}
|
|
|
|
func (m *MockRepository) GetOrder(ctx context.Context, id uuid.UUID) (*domain.Order, error) {
|
|
for _, o := range m.orders {
|
|
if o.ID == id {
|
|
return &o, nil
|
|
}
|
|
}
|
|
return nil, errors.New("order not found")
|
|
}
|
|
|
|
func (m *MockRepository) UpdateOrderStatus(ctx context.Context, id uuid.UUID, status domain.OrderStatus) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) DeleteOrder(ctx context.Context, id uuid.UUID) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) CreateShipment(ctx context.Context, shipment *domain.Shipment) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) GetShipmentByOrderID(ctx context.Context, orderID uuid.UUID) (*domain.Shipment, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (m *MockRepository) CreateUser(ctx context.Context, user *domain.User) error {
|
|
id, _ := uuid.NewV4()
|
|
user.ID = id
|
|
m.users = append(m.users, *user)
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) ListUsers(ctx context.Context, filter domain.UserFilter) ([]domain.User, int64, error) {
|
|
return m.users, int64(len(m.users)), nil
|
|
}
|
|
|
|
func (m *MockRepository) GetUser(ctx context.Context, id uuid.UUID) (*domain.User, error) {
|
|
for _, u := range m.users {
|
|
if u.ID == id {
|
|
return &u, nil
|
|
}
|
|
}
|
|
return nil, errors.New("user not found")
|
|
}
|
|
|
|
func (m *MockRepository) GetUserByEmail(ctx context.Context, email string) (*domain.User, error) {
|
|
for _, u := range m.users {
|
|
if u.Email == email {
|
|
return &u, nil
|
|
}
|
|
}
|
|
return nil, errors.New("user not found") // Simulate repository behavior
|
|
}
|
|
|
|
func (m *MockRepository) UpdateUser(ctx context.Context, user *domain.User) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) DeleteUser(ctx context.Context, id uuid.UUID) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) AddCartItem(ctx context.Context, item *domain.CartItem) (*domain.CartItem, error) {
|
|
return item, nil
|
|
}
|
|
|
|
func (m *MockRepository) ListCartItems(ctx context.Context, buyerID uuid.UUID) ([]domain.CartItem, error) {
|
|
return []domain.CartItem{}, nil
|
|
}
|
|
|
|
func (m *MockRepository) DeleteCartItem(ctx context.Context, id uuid.UUID, buyerID uuid.UUID) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) CreateReview(ctx context.Context, review *domain.Review) error {
|
|
return nil
|
|
}
|
|
|
|
func (m *MockRepository) GetCompanyRating(ctx context.Context, companyID uuid.UUID) (*domain.CompanyRating, error) {
|
|
return &domain.CompanyRating{}, nil
|
|
}
|
|
|
|
func (m *MockRepository) SellerDashboard(ctx context.Context, sellerID uuid.UUID) (*domain.SellerDashboard, error) {
|
|
return &domain.SellerDashboard{}, nil
|
|
}
|
|
|
|
func (m *MockRepository) AdminDashboard(ctx context.Context, since time.Time) (*domain.AdminDashboard, error) {
|
|
return &domain.AdminDashboard{}, nil
|
|
}
|
|
|
|
// MockPaymentGateway implements the PaymentGateway interface for testing
|
|
type MockPaymentGateway struct{}
|
|
|
|
func (m *MockPaymentGateway) CreatePreference(ctx context.Context, order *domain.Order) (*domain.PaymentPreference, error) {
|
|
return &domain.PaymentPreference{}, nil
|
|
}
|
|
|
|
func (m *MockPaymentGateway) ParseWebhook(ctx context.Context, payload []byte) (*domain.PaymentSplitResult, error) {
|
|
return &domain.PaymentSplitResult{}, nil
|
|
}
|
|
|
|
// Create a test handler for testing
|
|
func newTestHandler() *Handler {
|
|
repo := NewMockRepository()
|
|
gateway := &MockPaymentGateway{}
|
|
svc := usecase.NewService(repo, gateway, 0.05, "test-secret", time.Hour, "test-pepper")
|
|
return New(svc)
|
|
}
|
|
|
|
func TestListProducts(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/products", nil)
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.ListProducts(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected status %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
|
|
// Should return empty array
|
|
body := strings.TrimSpace(rec.Body.String())
|
|
if body != "[]" {
|
|
t.Errorf("expected empty array, got %s", body)
|
|
}
|
|
}
|
|
|
|
func TestListCompanies(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/companies", nil)
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.ListCompanies(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected status %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestCreateCompany(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
payload := `{"role":"pharmacy","cnpj":"12345678901234","corporate_name":"Test Pharmacy","license_number":"LIC-001"}`
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/companies", bytes.NewReader([]byte(payload)))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.CreateCompany(rec, req)
|
|
|
|
if rec.Code != http.StatusCreated {
|
|
t.Errorf("expected status %d, got %d: %s", http.StatusCreated, rec.Code, rec.Body.String())
|
|
}
|
|
}
|
|
|
|
func TestCreateProduct(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
sellerID, _ := uuid.NewV4()
|
|
payload := `{"seller_id":"` + sellerID.String() + `","name":"Aspirin","description":"Pain relief","batch":"BATCH-001","expires_at":"2025-12-31T00:00:00Z","price_cents":1000,"stock":100}`
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/products", bytes.NewReader([]byte(payload)))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.CreateProduct(rec, req)
|
|
|
|
if rec.Code != http.StatusCreated {
|
|
t.Errorf("expected status %d, got %d: %s", http.StatusCreated, rec.Code, rec.Body.String())
|
|
}
|
|
}
|
|
|
|
func TestLoginInvalidCredentials(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
payload := `{"email":"nonexistent@test.com","password":"wrongpassword"}`
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/auth/login", bytes.NewReader([]byte(payload)))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.Login(rec, req)
|
|
|
|
// Should fail because user doesn't exist
|
|
if rec.Code != http.StatusUnauthorized {
|
|
t.Errorf("expected status %d, got %d", http.StatusUnauthorized, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestListOrders(t *testing.T) {
|
|
h := newTestHandler()
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/orders", nil)
|
|
rec := httptest.NewRecorder()
|
|
|
|
h.ListOrders(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected status %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Auth Handler Tests ---
|
|
|
|
func TestLogin_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/auth/login", bytes.NewReader([]byte("invalid")))
|
|
rec := httptest.NewRecorder()
|
|
h.Login(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestRegister_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/auth/register", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.Register(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestRegister_MissingCompany(t *testing.T) {
|
|
h := newTestHandler()
|
|
payload := `{"role":"admin","name":"Test","email":"test@test.com","password":"pass123"}`
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/auth/register", bytes.NewReader([]byte(payload)))
|
|
rec := httptest.NewRecorder()
|
|
h.Register(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Company Handler Tests ---
|
|
|
|
func TestGetCompany_NotFound(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/companies/"+id.String(), nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetCompany(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetCompany_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/companies/invalid", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetCompany(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestUpdateCompany_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodPatch, "/api/v1/companies/"+id.String(), bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.UpdateCompany(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestDeleteCompany_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/companies/invalid", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.DeleteCompany(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestVerifyCompany_InvalidPath(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPatch, "/api/v1/companies/something", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.VerifyCompany(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Product Handler Tests ---
|
|
|
|
func TestGetProduct_NotFound(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/products/"+id.String(), nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetProduct(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestUpdateProduct_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodPatch, "/api/v1/products/"+id.String(), bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.UpdateProduct(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestDeleteProduct_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/products/invalid", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.DeleteProduct(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Inventory Handler Tests ---
|
|
|
|
func TestListInventory_Success(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/inventory", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.ListInventory(rec, req)
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestListInventory_InvalidDays(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/inventory?expires_in_days=abc", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.ListInventory(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestAdjustInventory_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/inventory/adjust", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.AdjustInventory(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestAdjustInventory_ZeroDelta(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
payload := `{"product_id":"` + id.String() + `","delta":0,"reason":"test"}`
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/inventory/adjust", bytes.NewReader([]byte(payload)))
|
|
rec := httptest.NewRecorder()
|
|
h.AdjustInventory(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Order Handler Tests ---
|
|
|
|
func TestCreateOrder_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/orders", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.CreateOrder(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetOrder_NotFound(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/orders/"+id.String(), nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetOrder(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestUpdateOrderStatus_InvalidStatus(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
payload := `{"status":"invalid_status"}`
|
|
req := httptest.NewRequest(http.MethodPatch, "/api/v1/orders/"+id.String()+"/status", bytes.NewReader([]byte(payload)))
|
|
rec := httptest.NewRecorder()
|
|
h.UpdateOrderStatus(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestDeleteOrder_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/orders/invalid", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.DeleteOrder(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Payment Handler Tests ---
|
|
|
|
func TestCreatePaymentPreference_InvalidPath(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/orders/something/other", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.CreatePaymentPreference(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandlePaymentWebhook_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/payments/webhook", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.HandlePaymentWebhook(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestCreateShipment_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/shipments", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.CreateShipment(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetShipmentByOrderID_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/shipments/invalid", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetShipmentByOrderID(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Dashboard Handler Tests ---
|
|
|
|
func TestGetSellerDashboard_NoContext(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dashboard/seller", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetSellerDashboard(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetAdminDashboard_NotAdmin(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dashboard/admin", nil)
|
|
req.Header.Set("X-User-Role", "Seller")
|
|
rec := httptest.NewRecorder()
|
|
h.GetAdminDashboard(rec, req)
|
|
if rec.Code != http.StatusForbidden {
|
|
t.Errorf("expected %d, got %d", http.StatusForbidden, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetAdminDashboard_Success(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dashboard/admin", nil)
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.GetAdminDashboard(rec, req)
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- User Handler Tests ---
|
|
|
|
func TestListUsers_Success(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/users", nil)
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.ListUsers(rec, req)
|
|
if rec.Code != http.StatusOK {
|
|
t.Errorf("expected %d, got %d", http.StatusOK, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestGetUser_NotFound(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/users/"+id.String(), nil)
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.GetUser(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestCreateUser_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/users", bytes.NewReader([]byte("{")))
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.CreateUser(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestUpdateUser_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodPut, "/api/v1/users/"+id.String(), bytes.NewReader([]byte("{")))
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.UpdateUser(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestDeleteUser_InvalidUUID(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/users/invalid", nil)
|
|
req.Header.Set("X-User-Role", "Admin")
|
|
rec := httptest.NewRecorder()
|
|
h.DeleteUser(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Cart Handler Tests ---
|
|
|
|
func TestGetCart_NoContext(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/cart", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetCart(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestAddToCart_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/cart", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.AddToCart(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestDeleteCartItem_NoContext(t *testing.T) {
|
|
h := newTestHandler()
|
|
id, _ := uuid.NewV4()
|
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/cart/"+id.String(), nil)
|
|
rec := httptest.NewRecorder()
|
|
h.DeleteCartItem(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- Review Handler Tests ---
|
|
|
|
func TestCreateReview_InvalidJSON(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/reviews", bytes.NewReader([]byte("{")))
|
|
rec := httptest.NewRecorder()
|
|
h.CreateReview(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- GetCompanyRating Handler Tests ---
|
|
|
|
func TestGetCompanyRating_InvalidPath(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/companies/something", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetCompanyRating(rec, req)
|
|
if rec.Code != http.StatusNotFound {
|
|
t.Errorf("expected %d, got %d", http.StatusNotFound, rec.Code)
|
|
}
|
|
}
|
|
|
|
// --- GetMyCompany Handler Tests ---
|
|
|
|
func TestGetMyCompany_NoContext(t *testing.T) {
|
|
h := newTestHandler()
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/companies/me", nil)
|
|
rec := httptest.NewRecorder()
|
|
h.GetMyCompany(rec, req)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Errorf("expected %d, got %d", http.StatusBadRequest, rec.Code)
|
|
}
|
|
}
|