Files
orion/tests/integration/api/v1/store
Samir Boulahtit e9253fbd84 refactor: rename Wizamart to Orion across entire codebase
Replace all ~1,086 occurrences of Wizamart/wizamart/WIZAMART/WizaMart
with Orion/orion/ORION across 184 files. This includes database
identifiers, email addresses, domain references, R2 bucket names,
DNS prefixes, encryption salt, Celery app name, config defaults,
Docker configs, CI configs, documentation, seed data, and templates.

Renames homepage-wizamart.html template to homepage-orion.html.
Fixes duplicate file_pattern key in api.yaml architecture rule.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 16:46:56 +01:00
..

Store API Integration Tests

Documentation

For comprehensive store API testing documentation, please see:

Store API Testing Guide in MkDocs

Quick Start

# Run all store tests
pytest tests/integration/api/v1/store/ -v

# Run with coverage
pytest tests/integration/api/v1/store/ \
  --cov=app/api/v1/store \
  --cov-report=html

Test Files

  • test_authentication.py - Authentication tests (30+ tests)
  • test_dashboard.py - Dashboard stats tests (12 tests)

Fixtures

Key fixtures for store testing:

  • store_user_headers - Authentication headers for store API
  • test_store_with_store_user - Store with StoreUser association

See Also