-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement changes from #161, closes it.
- Loading branch information
Showing
17 changed files
with
32 additions
and
32 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 |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
"email": "[email protected]", | ||
"note": "User contains password only due to testing purposes.", | ||
"password": "1234", | ||
"test": "general.anonymousUser" | ||
"scenario": "general.anonymousUser" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ public function testChangePasswordSuccess(): void | |
'currentPassword' => '1234', | ||
'newPassword' => 'abcd', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -41,7 +41,7 @@ public function testChangePasswordError400(): void | |
'currentPassword' => '1234', | ||
'newPassword' => 'abcd', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
class PostTokenTest extends BaseRequestTestCase | ||
{ | ||
public const EMAIL = '[email protected].de'; | ||
public const EMAIL = '[email protected].dev'; | ||
public const PASSWORD = '1234'; | ||
private const PATH_TO_ROOT = __DIR__.'/../../../'; | ||
|
||
|
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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
class PostChangePasswordTest extends BaseRequestTestCase | ||
{ | ||
public const EMAIL = '[email protected].de'; | ||
public const EMAIL = '[email protected].dev'; | ||
public const PASSWORD = '1234'; | ||
public const NEW_PASSWORD = 'abcd'; | ||
|
||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ public function testPostRegister(): void | |
'type' => 'User', | ||
'password' => '1234', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -31,7 +31,7 @@ public function testPostRegisterWithoutType(): void | |
[ | ||
'password' => '1234', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -48,7 +48,7 @@ public function testPostRegisterWithWrongType(): void | |
'type' => 'NotAUser', | ||
'password' => '1234', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -64,7 +64,7 @@ public function testPostRegisterWithNoPassword(): void | |
[ | ||
'type' => 'User', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -97,7 +97,7 @@ public function testPostRegisterFailsForDuplicateEmail(): void | |
'type' => 'User', | ||
'password' => '1234', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
@@ -111,7 +111,7 @@ public function testPostRegisterFailsForDuplicateEmail(): void | |
'type' => 'User', | ||
'password' => '1234', | ||
'data' => [ | ||
'email' => '[email protected].de', | ||
'email' => '[email protected].dev', | ||
], | ||
] | ||
); | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
class PostTokenTest extends BaseRequestTestCase | ||
{ | ||
public const TOKEN = 'secret-token:3tgEP9MhD81rkp3qiJcm1U'; | ||
public const EMAIL = '[email protected].de'; | ||
public const EMAIL = '[email protected].dev'; | ||
public const PASSWORD = '1234'; | ||
|
||
public function testPostToken(): void | ||
|
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