Skip to content

Commit

Permalink
Supprime paramètre utilisateur dans requête vers OOTS
Browse files Browse the repository at this point in the history
  • Loading branch information
egaillot committed Jan 3, 2025
1 parent 74c9854 commit 72c4562
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions test/api/urlOOTS.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@ describe("Le constructeur de l'URL de requête OOTS-France", () => {

it('retourne un lien vers OOTS', () => {
adaptateurEnvironnement.urlBaseOOTSFrance = () => 'http://example.com';
return urlOOTS(
{ adaptateurChiffrement, adaptateurEnvironnement },
requete,
).then((url) => expect(url).toMatch(/^http:\/\/example\.com.*/));

return urlOOTS({ adaptateurChiffrement, adaptateurEnvironnement }, requete)
.then((url) => expect(url).toMatch(/^http:\/\/example\.com.*/));
});

it("contient l'identifiant de requeteur", () => {
adaptateurEnvironnement.identifiantRequeteur = () => 'un-identifiant';
return urlOOTS(
{ adaptateurChiffrement, adaptateurEnvironnement },
requete,
).then((url) => expect(url).toContain('idRequeteur=un-identifiant'));

return urlOOTS({ adaptateurChiffrement, adaptateurEnvironnement }, requete)
.then((url) => expect(url).toContain('idRequeteur=un-identifiant'));
});

it('contient le jeton utilisateur', () => {
Expand All @@ -36,12 +34,7 @@ describe("Le constructeur de l'URL de requête OOTS-France", () => {
return Promise.resolve('unJeton');
};

return urlOOTS(
{ adaptateurChiffrement, adaptateurEnvironnement },
requete,
).then((url) => {
expect(url).toContain('beneficiaire=unJeton');
expect(url).toContain('utilisateur=unJeton');
});
return urlOOTS({ adaptateurChiffrement, adaptateurEnvironnement }, requete)
.then((url) => expect(url).toContain('beneficiaire=unJeton'));
});
});

0 comments on commit 72c4562

Please sign in to comment.