33 lines
974 B
TypeScript
33 lines
974 B
TypeScript
![]() |
import { createPinia, setActivePinia } from 'pinia';
|
||
|
import { beforeEach, describe, expect, it } from 'vitest';
|
||
|
|
||
|
import { useCoreLockStore } from './lock';
|
||
|
|
||
|
describe('useCoreLockStore', () => {
|
||
|
beforeEach(() => {
|
||
|
// 每个测试前重置 Pinia
|
||
|
setActivePinia(createPinia());
|
||
|
});
|
||
|
|
||
|
it('should initialize with correct default state', () => {
|
||
|
const store = useCoreLockStore();
|
||
|
expect(store.isLockScreen).toBe(false);
|
||
|
expect(store.lockScreenPassword).toBeUndefined();
|
||
|
});
|
||
|
|
||
|
it('should lock screen with a password', () => {
|
||
|
const store = useCoreLockStore();
|
||
|
store.lockScreen('1234');
|
||
|
expect(store.isLockScreen).toBe(true);
|
||
|
expect(store.lockScreenPassword).toBe('1234');
|
||
|
});
|
||
|
|
||
|
it('should unlock screen and clear password', () => {
|
||
|
const store = useCoreLockStore();
|
||
|
store.lockScreen('1234');
|
||
|
store.unlockScreen();
|
||
|
expect(store.isLockScreen).toBe(false);
|
||
|
expect(store.lockScreenPassword).toBeUndefined();
|
||
|
});
|
||
|
});
|