Skip to content

Commit

Permalink
[PARCOURS DEVENIR AIDANT] Retourne un utilisateur inscrit depuis l’en…
Browse files Browse the repository at this point in the history
…trepôt UtilisateurMAC
  • Loading branch information
bbougon committed Jan 21, 2025
1 parent bd4655a commit 3191c18
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,15 @@ export class EntrepotUtilisateurMACPostgres
}

protected deDTOAEntite(dto: UtilisateurMACDTO): UtilisateurMAC {
const profil =
dto.type === 'UTILISATEUR_INSCRIT'
? 'UtilisateurInscrit'
: estSiretGendarmerie(dto.siret)
? 'Gendarme'
: 'Aidant';
return {
identifiant: dto.id,
profil: estSiretGendarmerie(dto.siret) ? 'Gendarme' : 'Aidant',
profil,
};
}
protected champsAMettreAJour(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,23 @@ describe('Entrepot Utilisateurs MAC', () => {
});
});

it('Retourne un utilisateur au profil Utilisateur Inscrit', async () => {
const utilisateurInscrit = unUtilisateurInscrit().construis();
await new EntrepotUtilisateurInscritPostgres(
new ServiceDeChiffrementClair()
).persiste(utilisateurInscrit);

const utilisateurMAC =
await new EntrepotUtilisateurMACPostgres().rechercheParIdentifiant(
utilisateurInscrit.identifiant
);

expect(utilisateurMAC).toStrictEqual<UtilisateurMAC>({
identifiant: utilisateurInscrit.identifiant,
profil: 'UtilisateurInscrit',
});
});

it("Renvoie une erreur AggregatNonTrouvé si l'utilisateur n'existe pas", async () => {
expect(
new EntrepotUtilisateurMACPostgres().rechercheParIdentifiant(
Expand Down

0 comments on commit 3191c18

Please sign in to comment.