-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4115 from LibreSign/chore/stable29/bump-dependencies
[stable29] chore: bump depdendencies
- Loading branch information
Showing
15 changed files
with
214 additions
and
209 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ public function testAccountCreateWithInvalidUuid() { | |
'password' => 'secret', | ||
'signPassword' => 'secretToSign' | ||
]) | ||
->withPath('/account/create/1234564789') | ||
->withPath('/api/v1/account/create/1234564789') | ||
->assertResponseCode(422); | ||
|
||
$response = $this->assertRequest(); | ||
|
@@ -80,7 +80,7 @@ public function testAccountCreateWithSuccess() { | |
'password' => 'secret', | ||
'signPassword' => 'secretToSign' | ||
]) | ||
->withPath('/account/create/' . $signers[0]->getUuid()); | ||
->withPath('/api/v1/account/create/' . $signers[0]->getUuid()); | ||
$this->markUserExists('[email protected]'); | ||
|
||
$this->assertRequest(); | ||
|
@@ -108,7 +108,7 @@ public function testPostProfileFilesWithInvalidData() { | |
] | ||
] | ||
]) | ||
->withPath('/account/files') | ||
->withPath('/api/v1/account/files') | ||
->assertResponseCode(401); | ||
|
||
$this->assertRequest(); | ||
|
@@ -136,7 +136,7 @@ public function testPostAccountAddFilesWithSuccess() { | |
] | ||
] | ||
]) | ||
->withPath('/account/files'); | ||
->withPath('/api/v1/account/files'); | ||
|
||
$this->assertRequest(); | ||
} | ||
|
@@ -146,7 +146,7 @@ public function testPostAccountAddFilesWithSuccess() { | |
*/ | ||
public function testMeWithoutAuthenticatedUser() { | ||
$this->request | ||
->withPath('/account/me') | ||
->withPath('/api/v1/account/me') | ||
->assertResponseCode(404); | ||
|
||
$this->assertRequest(); | ||
|
@@ -158,7 +158,7 @@ public function testMeWithoutAuthenticatedUser() { | |
public function testMeWithAuthenticatedUser() { | ||
$this->createAccount('username', 'password'); | ||
$this->request | ||
->withPath('/account/me') | ||
->withPath('/api/v1/account/me') | ||
->withRequestHeader([ | ||
'Authorization' => 'Basic ' . base64_encode('username:password') | ||
]); | ||
|
@@ -177,7 +177,7 @@ public function testApprovalListWithSuccess() { | |
]); | ||
|
||
$this->request | ||
->withPath('/account/files/approval/list') | ||
->withPath('/api/v1/account/files/approval/list') | ||
->withRequestHeader([ | ||
'Authorization' => 'Basic ' . base64_encode('allowapprove:password') | ||
]); | ||
|
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
Oops, something went wrong.