@@ -59,7 +59,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
59
59
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fen%2Fsupport' ;
60
60
61
61
const expectedResetUrl =
62
- 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Den%26email%3Dtoto%40example .net' ;
62
+ 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Den%26email%3Dtoto%2540example .net' ;
63
63
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
64
64
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
65
65
} ) ;
@@ -83,7 +83,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
83
83
const expectedSupportUrl =
84
84
'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.fr%2Fsupport' ;
85
85
const expectedResetUrl =
86
- 'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.fr%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%40example .net' ;
86
+ 'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.fr%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%2540example .net' ;
87
87
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
88
88
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
89
89
} ) ;
@@ -107,7 +107,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
107
107
const expectedSupportUrl =
108
108
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Ffr%2Fsupport' ;
109
109
const expectedResetUrl =
110
- 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%40example .net' ;
110
+ 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%2540example .net' ;
111
111
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
112
112
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
113
113
} ) ;
@@ -129,12 +129,36 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
129
129
// then
130
130
const { resetUrl, helpDeskUrl } = email . variables ;
131
131
const expectedResetUrl =
132
- 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dnl%26email%3Dtoto%40example .net' ;
132
+ 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dnl%26email%3Dtoto%2540example .net' ;
133
133
134
134
const expectedSupportUrl =
135
135
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fnl-be%2Fsupport' ;
136
136
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
137
137
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
138
138
} ) ;
139
139
} ) ;
140
+
141
+ describe ( 'when the email query parameter contains a +' , function ( ) {
142
+ it ( 'provides the correct urls' , function ( ) {
143
+ // given
144
+ const emailParams = {
145
+ email : 'toto+tata@example.net' ,
146
+ locale : 'fr-fr' ,
147
+ firstName : 'John' ,
148
+ validationToken : 'token' ,
149
+ } ;
150
+
151
+ // when
152
+ const email = createWarningConnectionEmail ( emailParams ) ;
153
+
154
+ // then
155
+ const { helpDeskUrl, resetUrl } = email . variables ;
156
+ const expectedSupportUrl =
157
+ 'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.fr%2Fsupport' ;
158
+ const expectedResetUrl =
159
+ 'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.fr%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%252Btata%2540example.net' ;
160
+ expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
161
+ expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
162
+ } ) ;
163
+ } ) ;
140
164
} ) ;
0 commit comments