8aab968e09
Build & Deploy / Build & Push Docker Image (push) Successful in 1m2s
Test / Type Check (all packages) (push) Failing after 28s
Test / API Unit Tests (push) Has been skipped
Test / Homepage Unit Tests (push) Has been skipped
Test / Storefront Unit Tests (push) Has been skipped
Test / Admin Unit Tests (push) Has been skipped
Test / Dashboard Unit Tests (push) Has been skipped
Test / API Integration Tests (push) Has been skipped
Build & Deploy / Deploy to VPS (push) Successful in 3s
Comprehensive rename of all marketplace references to storefront: - API module: apps/api/src/modules/marketplace/ → storefront/ - Components: MarketplaceHeader → StorefrontHeader, MarketplaceShell → StorefrontShell, MarketplaceFooter → StorefrontFooter - Types: marketplace-homepage.ts → storefront-homepage.ts - Test files: employee-marketplace-* → employee-storefront-* - All source code identifiers, imports, route paths, and strings - Documentation (docs/), CI config (.gitlab-ci.yml), scripts - Dashboard, admin, storefront workspace references - Prisma field names preserved (isListedOnMarketplace, marketplaceRating, marketplaceFunnelEvent) as they map to database schema Validation: - API type-check: 0 errors - Storefront type-check: 0 errors - Dashboard type-check: 0 errors - Full monorepo type-check: only pre-existing admin TS18046
49 lines
1.8 KiB
TypeScript
49 lines
1.8 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
import { buildFrameUrl, FRAME_HEIGHT, getDefaultFramePath } from './WorkspaceFrame'
|
|
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals()
|
|
})
|
|
|
|
function stubBrowser({ cookie = '', origin = 'https://market.example' }: { cookie?: string; origin?: string } = {}) {
|
|
const parsed = new URL(origin)
|
|
vi.stubGlobal('window', {
|
|
location: { origin, hostname: parsed.hostname, protocol: parsed.protocol, replace: vi.fn() },
|
|
})
|
|
vi.stubGlobal('document', { cookie })
|
|
}
|
|
|
|
describe('WorkspaceFrame helpers', () => {
|
|
it('uses the dashboard sign-in path during server rendering', () => {
|
|
vi.stubGlobal('window', undefined)
|
|
|
|
expect(getDefaultFramePath('sign-in')).toBe('/dashboard/sign-in')
|
|
expect(buildFrameUrl('https://dashboard.example/dashboard', '/dashboard/sign-in')).toBe('/dashboard/sign-in')
|
|
})
|
|
|
|
it('keeps users with an employee token on the embedded sign-in path until the dashboard confirms login', () => {
|
|
stubBrowser({ cookie: 'other=1; employee_session=token_123' })
|
|
|
|
expect(getDefaultFramePath('sign-in')).toBe('/dashboard/sign-in')
|
|
})
|
|
|
|
it('keeps unauthenticated visitors on the embedded sign-in path', () => {
|
|
stubBrowser({ cookie: 'storefront-language=fr' })
|
|
|
|
expect(getDefaultFramePath('sign-in')).toBe('/dashboard/sign-in')
|
|
})
|
|
|
|
it('rewrites a configured app base to the requested embedded path and query', () => {
|
|
stubBrowser({ origin: 'https://market.example' })
|
|
|
|
expect(buildFrameUrl('https://dashboard.example/dashboard', '/dashboard/reset-password?token=abc')).toBe(
|
|
'https://market.example/dashboard/reset-password?token=abc',
|
|
)
|
|
})
|
|
|
|
it('documents the iframe height contract used by embedded dashboard surfaces', () => {
|
|
expect(FRAME_HEIGHT).toBe('calc(100vh - 56px)')
|
|
})
|
|
})
|