@@ -40,6 +40,29 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
40
40
expect ( variables ) . to . have . property ( 'signing' ) . that . is . a ( 'string' ) ;
41
41
} ) ;
42
42
43
+ it ( 'creates warning connection email with a mail parameter in reset url' , function ( ) {
44
+ // given
45
+ const emailParams = {
46
+ email : 'email-to-keep@example.net' ,
47
+ locale : 'fr' ,
48
+ firstName : 'Emile' ,
49
+ validationToken : 'token' ,
50
+ } ;
51
+
52
+ // when
53
+ const email = createWarningConnectionEmail ( emailParams ) ;
54
+
55
+ // then
56
+ const { helpDeskUrl, resetUrl } = email . variables ;
57
+ const expectedSupportUrl =
58
+ 'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Ffr%2Fsupport' ;
59
+
60
+ const expectedResetUrl =
61
+ '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%3Demail-to-keep%40example.net' ;
62
+ expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
63
+ expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
64
+ } ) ;
65
+
43
66
describe ( 'when the locale is en' , function ( ) {
44
67
it ( 'provides the correct urls' , function ( ) {
45
68
// given
@@ -59,7 +82,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
59
82
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fen%2Fsupport' ;
60
83
61
84
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' ;
85
+ '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 ' ;
63
86
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
64
87
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
65
88
} ) ;
@@ -83,7 +106,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
83
106
const expectedSupportUrl =
84
107
'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.fr%2Fsupport' ;
85
108
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' ;
109
+ '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 ' ;
87
110
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
88
111
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
89
112
} ) ;
@@ -107,7 +130,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
107
130
const expectedSupportUrl =
108
131
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Ffr%2Fsupport' ;
109
132
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' ;
133
+ '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 ' ;
111
134
expect ( resetUrl ) . to . equal ( expectedResetUrl ) ;
112
135
expect ( helpDeskUrl ) . to . equal ( expectedSupportUrl ) ;
113
136
} ) ;
@@ -129,7 +152,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
129
152
// then
130
153
const { resetUrl, helpDeskUrl } = email . variables ;
131
154
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' ;
155
+ '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 ' ;
133
156
134
157
const expectedSupportUrl =
135
158
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fnl-be%2Fsupport' ;
0 commit comments