Files
sky_phone/frontend/src/testdata.contract.test.ts
T
Alec Schitzkat f654d82b4b FIX - Improve test data idempotency and reliability
Refactor test data seeding to use deterministic identifiers for DarkChat and Flare, ensuring re-runs don't create duplicate entries or inconsistent states. Implement robust SIM card movement logic and add contract tests to verify seeding constraints and default configuration safety.
2026-08-19 19:31:39 +02:00

70 lines
2.4 KiB
TypeScript

import { readFileSync } from 'node:fs'
import { describe, expect, it } from 'vitest'
const readResourceFile = (path: string) =>
readFileSync(new URL(`../../sky_phone/${path}`, import.meta.url), 'utf8')
const config = readResourceFile('config/config.lua')
const testData = readResourceFile('source/server/testdata.lua')
describe('test data seeding contracts', () => {
it('keeps test data disabled while retaining the development phone command', () => {
expect(config).toContain('DevelopmentCommand = true')
expect(config).toContain(
'Enabled = false, -- development/test servers only',
)
})
it('returns before registering the test-data command when disabled', () => {
expect(
testData.indexOf('if not Config.TestData.Enabled then'),
).toBeLessThan(testData.indexOf('RegisterCommand(Config.TestData.Command'))
})
it('moves an existing player SIM before attaching it to the selected phone', () => {
expect(testData).toContain('local function move_sim_to_device')
expect(testData).toContain(
'SET `sim_id` = NULL WHERE `sim_id` = ? AND `imei` <> ?',
)
expect(testData).toContain(
'SET `sim_id` = ? WHERE `imei` = ? AND `sim_id` IS NULL',
)
expect(testData).toContain(
'local previous_imei = move_sim_to_device(sim.id, imei)',
)
expect(testData).toContain(
'restore_sim_attachment(sim.id, imei, previous_imei)',
)
})
it('derives distinct DarkChat identifiers from each account', () => {
expect(testData).toContain(
'local function darkchat_identifiers(account_id)',
)
expect(testData).toContain(
'local user_dark_id, user_invite_code = darkchat_identifiers(account_id)',
)
expect(testData).toContain(
'local bot_dark_id, bot_invite_code = darkchat_identifiers(bot_id)',
)
expect(testData).not.toContain("'DARK0000000001'")
expect(testData).not.toContain("'INV00000001'")
})
it('loads the persisted Flare match before inserting its test message', () => {
const matchLookup = testData.indexOf(
'SELECT `id` FROM `sky_phone_flare_matches`',
)
const messageInsert = testData.indexOf(
'INSERT INTO `sky_phone_flare_messages`',
)
expect(matchLookup).toBeGreaterThan(-1)
expect(messageInsert).toBeGreaterThan(matchLookup)
expect(testData).toContain(
'stable_uuid("sky_phone:testdata:flare:message:" .. match_id)',
)
})
})