e83747b085
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
60 lines
2.0 KiB
JavaScript
60 lines
2.0 KiB
JavaScript
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest'
|
|
import { setActivePinia, createPinia } from 'pinia'
|
|
import { useCredentialsStore } from '../src/stores/credentials.js'
|
|
|
|
function stubFetch(handler) {
|
|
globalThis.fetch = vi.fn(async (url, init) => {
|
|
const { status, body } = handler(url, init)
|
|
return {
|
|
ok: status >= 200 && status < 300,
|
|
status, statusText: String(status),
|
|
text: async () => (body == null ? '' : JSON.stringify(body)),
|
|
}
|
|
})
|
|
}
|
|
|
|
describe('credentials store', () => {
|
|
beforeEach(() => setActivePinia(createPinia()))
|
|
afterEach(() => vi.restoreAllMocks())
|
|
|
|
it('loadAll populates byPlatform map', async () => {
|
|
const s = useCredentialsStore()
|
|
stubFetch(() => ({
|
|
status: 200,
|
|
body: [{ platform: 'patreon', credential_type: 'cookies', captured_at: '2026-05-20T00:00:00+00:00', expires_at: null, last_verified: null }],
|
|
}))
|
|
await s.loadAll()
|
|
expect(s.byPlatform.get('patreon').credential_type).toBe('cookies')
|
|
})
|
|
|
|
it('upload invalidates the cache', async () => {
|
|
const s = useCredentialsStore()
|
|
s.byPlatform.set('patreon', { platform: 'patreon' })
|
|
stubFetch(() => ({ status: 201, body: { platform: 'patreon', credential_type: 'cookies' } }))
|
|
await s.upload('patreon', 'cookies', 'NETSCAPE_CONTENT')
|
|
expect(s.byPlatform.has('patreon')).toBe(false)
|
|
})
|
|
|
|
it('remove deletes and invalidates the cache', async () => {
|
|
const s = useCredentialsStore()
|
|
s.byPlatform.set('patreon', { platform: 'patreon' })
|
|
stubFetch(() => ({ status: 204, body: null }))
|
|
await s.remove('patreon')
|
|
expect(s.byPlatform.has('patreon')).toBe(false)
|
|
})
|
|
|
|
it('loadKey + rotateKey', async () => {
|
|
const s = useCredentialsStore()
|
|
const seen = []
|
|
stubFetch((url) => {
|
|
seen.push(url)
|
|
if (url.endsWith('/rotate')) return { status: 200, body: { key: 'NEW' } }
|
|
return { status: 200, body: { key: 'OLD' } }
|
|
})
|
|
await s.loadKey()
|
|
expect(s.extensionKey).toBe('OLD')
|
|
await s.rotateKey()
|
|
expect(s.extensionKey).toBe('NEW')
|
|
})
|
|
})
|