|
| 1 | +import { describe, it, expect, vi, afterEach } from 'vitest'; |
| 2 | +import { render } from '@testing-library/react'; |
| 3 | +import React from 'react'; |
| 4 | +import { CommitPulseLogo } from './commitpulse-logo'; |
| 5 | + |
| 6 | +interface AssetRecord { |
| 7 | + key: string; |
| 8 | + vector: string; |
| 9 | + theme: 'dark' | 'light'; |
| 10 | + version: string; |
| 11 | +} |
| 12 | + |
| 13 | +class LogoAssetCacheService { |
| 14 | + private cache = new Map<string, AssetRecord>(); |
| 15 | + private remoteDb = new Map<string, AssetRecord>(); |
| 16 | + |
| 17 | + public dbCallCount = 0; |
| 18 | + public cacheCallCount = 0; |
| 19 | + |
| 20 | + constructor(initialDbRecords: AssetRecord[] = []) { |
| 21 | + initialDbRecords.forEach((record) => { |
| 22 | + this.remoteDb.set(record.key, record); |
| 23 | + }); |
| 24 | + } |
| 25 | + |
| 26 | + public reset() { |
| 27 | + this.cache.clear(); |
| 28 | + this.dbCallCount = 0; |
| 29 | + this.cacheCallCount = 0; |
| 30 | + } |
| 31 | + |
| 32 | + public async fetchAsset(key: string, timeoutMs: number = 5000): Promise<AssetRecord> { |
| 33 | + this.cacheCallCount++; |
| 34 | + if (this.cache.has(key)) { |
| 35 | + return this.cache.get(key)!; |
| 36 | + } |
| 37 | + |
| 38 | + this.dbCallCount++; |
| 39 | + |
| 40 | + if (timeoutMs < 100) { |
| 41 | + throw new Error('Timeout: Remote database took too long to respond'); |
| 42 | + } |
| 43 | + |
| 44 | + const record = this.remoteDb.get(key); |
| 45 | + if (!record) { |
| 46 | + throw new Error(`Asset not found: ${key}`); |
| 47 | + } |
| 48 | + |
| 49 | + // Simulate async network latency |
| 50 | + await new Promise((resolve) => setTimeout(resolve, 50)); |
| 51 | + |
| 52 | + return record; |
| 53 | + } |
| 54 | + |
| 55 | + public async syncRemoteToLocal(key: string): Promise<void> { |
| 56 | + const record = await this.fetchAsset(key); |
| 57 | + this.cache.set(key, record); |
| 58 | + } |
| 59 | + |
| 60 | + public setLocalCache(key: string, record: AssetRecord) { |
| 61 | + this.cache.set(key, record); |
| 62 | + } |
| 63 | +} |
| 64 | + |
| 65 | +const mockRecord: AssetRecord = { |
| 66 | + key: 'logo-vector-primary', |
| 67 | + vector: '<svg>logo</svg>', |
| 68 | + theme: 'dark', |
| 69 | + version: '1.2.0', |
| 70 | +}; |
| 71 | + |
| 72 | +const fallbackRecord: AssetRecord = { |
| 73 | + key: 'logo-vector-fallback', |
| 74 | + vector: '<svg>fallback</svg>', |
| 75 | + theme: 'light', |
| 76 | + version: '1.0.0', |
| 77 | +}; |
| 78 | + |
| 79 | +describe('CommitPulseLogo - Asynchronous Service Layer Mocking & Cache Stubs (Variation 9)', () => { |
| 80 | + const service = new LogoAssetCacheService([mockRecord]); |
| 81 | + |
| 82 | + afterEach(() => { |
| 83 | + service.reset(); |
| 84 | + vi.restoreAllMocks(); |
| 85 | + vi.useRealTimers(); |
| 86 | + }); |
| 87 | + |
| 88 | + // Case 1: Mock standard asynchronous asset fetching imports using explicit stubs and confirm the service layer returns valid asset records |
| 89 | + it('Case 1: Mock standard asynchronous asset fetching imports using explicit stubs and confirm the service layer returns valid asset records', async () => { |
| 90 | + const { container } = render(<CommitPulseLogo className="h-6 w-6" />); |
| 91 | + expect(container.querySelector('svg')).not.toBeNull(); |
| 92 | + |
| 93 | + const result = await service.fetchAsset('logo-vector-primary'); |
| 94 | + expect(result).toHaveProperty('key', 'logo-vector-primary'); |
| 95 | + expect(result).toHaveProperty('vector'); |
| 96 | + expect(result.theme).toBe('dark'); |
| 97 | + expect(result.version).toBe('1.2.0'); |
| 98 | + }); |
| 99 | + |
| 100 | + // Case 2: Test data retrieval paths to verify that initial pending state overlays or loading flags evaluate correctly before resolving |
| 101 | + it('Case 2: Test data retrieval paths to verify that initial pending state overlays or loading flags evaluate correctly before resolving', async () => { |
| 102 | + let isPending = true; |
| 103 | + |
| 104 | + const fetchPromise = service.fetchAsset('logo-vector-primary').then((res) => { |
| 105 | + isPending = false; |
| 106 | + return res; |
| 107 | + }); |
| 108 | + |
| 109 | + expect(isPending).toBe(true); |
| 110 | + |
| 111 | + await fetchPromise; |
| 112 | + |
| 113 | + expect(isPending).toBe(false); |
| 114 | + }); |
| 115 | + |
| 116 | + // Case 3: Assert that local cache layers are always checked and read before triggering any database or network retrievals |
| 117 | + it('Case 3: Assert that local cache layers are always checked and read before triggering any database or network retrievals', async () => { |
| 118 | + service.setLocalCache('logo-vector-primary', mockRecord); |
| 119 | + |
| 120 | + const result = await service.fetchAsset('logo-vector-primary'); |
| 121 | + |
| 122 | + expect(result).toEqual(mockRecord); |
| 123 | + expect(service.dbCallCount).toBe(0); |
| 124 | + expect(service.cacheCallCount).toBe(1); |
| 125 | + }); |
| 126 | + |
| 127 | + // Case 4: Verify correct defensive fallback parameters are returned if the mock endpoint experiences simulated timeout blocks |
| 128 | + it('Case 4: Verify correct defensive fallback parameters are returned if the mock endpoint experiences simulated timeout blocks', async () => { |
| 129 | + let finalRecord: AssetRecord; |
| 130 | + |
| 131 | + try { |
| 132 | + finalRecord = await service.fetchAsset('logo-vector-primary', 50); |
| 133 | + } catch { |
| 134 | + finalRecord = fallbackRecord; |
| 135 | + } |
| 136 | + |
| 137 | + expect(finalRecord).toEqual(fallbackRecord); |
| 138 | + }); |
| 139 | + |
| 140 | + // Case 5: Assert that a successful remote data sync writes back to local cache storage buffers completely |
| 141 | + it('Case 5: Assert that a successful remote data sync writes back to local cache storage buffers completely', async () => { |
| 142 | + await service.syncRemoteToLocal('logo-vector-primary'); |
| 143 | + expect(service.dbCallCount).toBe(1); |
| 144 | + |
| 145 | + const result = await service.fetchAsset('logo-vector-primary'); |
| 146 | + expect(result).toEqual(mockRecord); |
| 147 | + expect(service.dbCallCount).toBe(1); |
| 148 | + expect(service.cacheCallCount).toBe(2); |
| 149 | + }); |
| 150 | +}); |
0 commit comments