Contrat API fiche parent : co_parent peuplé (déjà chargé), sans password ni tokens sur user/co_parent. Doc tmp front→back. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { sanitizeUserForApi } from './sanitize-user-for-api';
|
|
import { RoleType, StatutUtilisateurType, Users } from '../../entities/users.entity';
|
|
|
|
describe('sanitizeUserForApi', () => {
|
|
const base: Users = {
|
|
id: 'u1',
|
|
email: 'a@b.fr',
|
|
prenom: 'Paul',
|
|
nom: 'Parent',
|
|
role: RoleType.PARENT,
|
|
statut: StatutUtilisateurType.ACTIF,
|
|
password: 'hash',
|
|
token_creation_mdp: 'tok',
|
|
token_creation_mdp_expire_le: new Date(),
|
|
password_reset_token: 'rst',
|
|
password_reset_expires: new Date(),
|
|
} as Users;
|
|
|
|
it('retire password et tokens', () => {
|
|
const out = sanitizeUserForApi(base)!;
|
|
expect(out.prenom).toBe('Paul');
|
|
expect(out.nom).toBe('Parent');
|
|
expect(out.password).toBeUndefined();
|
|
expect(out.token_creation_mdp).toBeUndefined();
|
|
expect(out.password_reset_token).toBeUndefined();
|
|
});
|
|
|
|
it('retourne undefined si user absent', () => {
|
|
expect(sanitizeUserForApi(null)).toBeUndefined();
|
|
expect(sanitizeUserForApi(undefined)).toBeUndefined();
|
|
});
|
|
});
|