Files
portal/app/tests/Frontend/ForgotPasswordView.spec.ts
T
Дмитрий 19096552b4 phase2(auth): закрыты 4 оставшихся auth-экрана из v8_login.html
- RegisterView: email + password (strength-meter 0..4) + 2 click-wrap'а
  (оферта + ПДн). 3-й «маркетинг» из handoff НЕ реализован (расхождение
  #2 реестра v1.13 - handoff противоречит ТЗ §1.5/§4.1).
- TwoFactorView: 6 input-cell с auto-focus вперёд при вводе цифры,
  Backspace назад при empty, paste 6 цифр заполняет все.
- ForgotPasswordView: email + alert «5 попыток / 15 минут» по ТЗ §1.7.
- RecoveryCodesView: 8 кодов в 2-column grid + Скачать .txt (Blob/URL.createObjectURL)
  + Копировать (navigator.clipboard) + warning о невозможности повторного просмотра.

Router: 4 новых маршрута (/register, /2fa, /forgot, /recovery), все
meta.layout='auth', lazy-imports.

Vitest +14 тестов (всего 24/24 за 3.29s):
- RegisterView 4 (вкл. assertion на отсутствие маркетингового click-wrap)
- TwoFactorView 3, ForgotPasswordView 3, RecoveryCodesView 4

Stories +4 (Histoire 6/6 за 29.17s).

Регресс: lint+type-check+format OK; vitest 24/24; vite build 5 lazy-chunks
для views + Vuetify в отдельные chunks (app chunk 198KB→78KB); Pest 48/48 за 4.85s.

CLAUDE.md v1.19→v1.20, реестр Открытых_вопросов v1.28→v1.29.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 17:09:56 +03:00

40 lines
1.6 KiB
TypeScript

import { describe, it, expect } from 'vitest';
import { mount } from '@vue/test-utils';
import { createVuetify } from 'vuetify';
import { createRouter, createMemoryHistory } from 'vue-router';
import ForgotPasswordView from '../../resources/js/views/auth/ForgotPasswordView.vue';
const mountForgot = async () => {
const router = createRouter({
history: createMemoryHistory(),
routes: [
{ path: '/forgot', component: ForgotPasswordView },
{ path: '/login', name: 'login', component: { template: '<div>stub</div>' } },
],
});
await router.push('/forgot');
await router.isReady();
return mount(ForgotPasswordView, {
global: { plugins: [createVuetify(), router] },
});
};
describe('ForgotPasswordView.vue', () => {
it('монтируется и содержит заголовок «Сброс пароля»', async () => {
const wrapper = await mountForgot();
expect(wrapper.text()).toContain('Сброс пароля');
});
it('содержит rate-limit alert с лимитом 5 попыток / 15 минут', async () => {
const wrapper = await mountForgot();
const text = wrapper.text();
expect(text).toContain('5 попыток в 15 минут');
});
it('содержит email-input и кнопку «Отправить ссылку»', async () => {
const wrapper = await mountForgot();
expect(wrapper.find('input[type="email"]').exists()).toBe(true);
expect(wrapper.text()).toContain('Отправить ссылку');
});
});