-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CORRECTION] N'affiche pas d'infos utilisateur si inexistantes
Depuis le dernier commit, on ne vérifiait plus la présent du JWT session FC+ dans les infos utilisateurs (vu qu'il n'y était plus)… mais cette vérification permettait de s'assurer qu'on n'affichait pas d'infos utilisateur si le prénom et nom d'usage était inexistants (cas où l'utilisateur revient sur la page du site vitrine en appuyant sur le bouton « retour arrière » du navigateur). Ce commit corrige la régression. Co-authored-by: Fabien Lamarque <[email protected]>
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
const { ErreurDonneeManquante } = require('../../src/erreurs'); | ||
const Utilisateur = require('../../src/modeles/utilisateur'); | ||
|
||
describe("L'utilisateur courant", () => { | ||
it("sait s'afficher", () => { | ||
const utilisateur = new Utilisateur({ prenom: 'Juliette', nomUsage: 'Haucourt' }); | ||
expect(utilisateur.afficheToi()).toBe('Juliette Haucourt'); | ||
}); | ||
|
||
it("vérifie qu'il est initialisé avec un nom d'usage et un prénom", () => { | ||
expect.assertions(1); | ||
|
||
try { | ||
new Utilisateur({}); | ||
} catch (e) { | ||
expect(e).toBeInstanceOf(ErreurDonneeManquante); | ||
} | ||
}); | ||
}); |