File tree 2 files changed +19
-1
lines changed
app/components/authentication/password-reset-demand
tests/integration/components/authentication/password-reset-demand
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,17 @@ export default class PasswordResetDemandForm extends Component {
18
18
@service requestManager;
19
19
@service storage;
20
20
@service url;
21
+ @service router;
21
22
22
23
@tracked globalError = this .errors .hasErrors && this .errors .shift ();
23
24
@tracked isLoading = false ;
24
25
@tracked isPasswordResetDemandReceived = false ;
25
26
27
+ // paramEmail = this.router.currentRoute.queryParams?.email;
28
+
26
29
constructor () {
27
30
super (... arguments );
28
- this .email = this .storage .getLogin ();
31
+ this .email = this .storage .getLogin () || this . router . currentRoute ? . queryParams ? . email ;
29
32
}
30
33
31
34
validation = new FormValidation ({
Original file line number Diff line number Diff line change @@ -55,6 +55,21 @@ module('Integration | Component | Authentication | PasswordResetDemand | passwor
55
55
assert .strictEqual (link .getAttribute (' href' ), ' https://pix.fr/support' );
56
56
});
57
57
58
+ module (' when the email to reset is passed in query parameters' , function () {
59
+ test (' it displays the given email address in email input' , async function (assert ) {
60
+ // given
61
+ const currentRoute = { queryParams: { email: ' given-email@example.net' } };
62
+ const routerService = this .owner .lookup (' service:router' );
63
+ sinon .stub (routerService, ' currentRoute' ).value (currentRoute);
64
+
65
+ // when
66
+ const screen = await render (<template ><PasswordResetDemandForm /></template >);
67
+
68
+ // then
69
+ assert .dom (screen .queryByRole (' textbox' , { name: ' Adresse e-mail' })).hasValue (' given-email@example.net' );
70
+ });
71
+ });
72
+
58
73
module (' email input validation' , function () {
59
74
module (' when the email input is valid' , function () {
60
75
test (' it doesn’t display any error message' , async function (assert ) {
You can’t perform that action at this time.
0 commit comments