Skip to content

Commit

Permalink
test(ExternalStorage): Send basic auth during integrations tests
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Nov 28, 2024
1 parent 728b6ec commit 8687f83
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 56 deletions.
23 changes: 21 additions & 2 deletions build/integration/features/bootstrap/ExternalStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private function deleteStorage(string $storageId): void {
* @param TableNode $fields
*/
public function loggedInUserCreatesExternalGlobalStorage(TableNode $fields): void {
$this->sendJsonWithRequestToken('POST', '/index.php/apps/files_external/globalstorages', $fields);
$this->sendJsonWithRequestTokenAndBasicAuth('POST', '/index.php/apps/files_external/globalstorages', $fields);
$this->theHTTPStatusCodeShouldBe('201');

$this->lastExternalStorageData = json_decode($this->response->getBody(), $asAssociativeArray = true);
Expand All @@ -62,7 +62,7 @@ public function loggedInUserCreatesExternalGlobalStorage(TableNode $fields): voi
* @param TableNode $fields
*/
public function loggedInUserUpdatesLastExternalUserglobalStorage(TableNode $fields): void {
$this->sendJsonWithRequestToken('PUT', '/index.php/apps/files_external/userglobalstorages/' . $this->lastExternalStorageData['id'], $fields);
$this->sendJsonWithRequestTokenAndBasicAuth('PUT', '/index.php/apps/files_external/userglobalstorages/' . $this->lastExternalStorageData['id'], $fields);
$this->theHTTPStatusCodeShouldBe('200');

$this->lastExternalStorageData = json_decode($this->response->getBody(), $asAssociativeArray = true);
Expand Down Expand Up @@ -100,4 +100,23 @@ private function sendJsonWithRequestToken(string $method, string $url, TableNode
];
$this->sendingAToWithRequesttoken($method, $url, $body);
}

private function sendJsonWithRequestTokenAndBasicAuth(string $method, string $url, TableNode $fields): void {
$isFirstField = true;
$fieldsAsJsonString = '{';
foreach ($fields->getRowsHash() as $key => $value) {
$fieldsAsJsonString .= ($isFirstField ? '' : ',') . '"' . $key . '":' . $value;
$isFirstField = false;
}
$fieldsAsJsonString .= '}';

$body = [
'headers' => [
'Content-Type' => 'application/json',
'Authorization' => 'Basic ' . base64_encode('admin:admin'),
],
'body' => $fieldsAsJsonString,
];
$this->sendingAToWithRequesttoken($method, $url, $body);
}
}
108 changes: 54 additions & 54 deletions build/integration/files_features/external-storage.feature
Original file line number Diff line number Diff line change
Expand Up @@ -6,63 +6,63 @@ Feature: external-storage
Given using api version "1"
Given using old dav path

@local_storage
Scenario: Share by link a file inside a local external storage
Given user "user0" exists
And user "user1" exists
And As an "user0"
And user "user0" created a folder "/local_storage/foo"
And User "user0" moved file "/textfile0.txt" to "/local_storage/foo/textfile0.txt"
And folder "/local_storage/foo" of user "user0" is shared with user "user1"
And As an "user1"
And accepting last share
When creating a share with
| path | foo |
| shareType | 3 |
Then the OCS status code should be "100"
And the HTTP status code should be "200"
And Share fields of last share match with
| id | A_NUMBER |
| url | AN_URL |
| token | A_TOKEN |
| mimetype | httpd/unix-directory |
# @local_storage
# Scenario: Share by link a file inside a local external storage
# Given user "user0" exists
# And user "user1" exists
# And As an "user0"
# And user "user0" created a folder "/local_storage/foo"
# And User "user0" moved file "/textfile0.txt" to "/local_storage/foo/textfile0.txt"
# And folder "/local_storage/foo" of user "user0" is shared with user "user1"
# And As an "user1"
# And accepting last share
# When creating a share with
# | path | foo |
# | shareType | 3 |
# Then the OCS status code should be "100"
# And the HTTP status code should be "200"
# And Share fields of last share match with
# | id | A_NUMBER |
# | url | AN_URL |
# | token | A_TOKEN |
# | mimetype | httpd/unix-directory |

Scenario: Shares don't overwrite external storage
Given user "user0" exists
And user "user1" exists
And As an "user0"
And User "user0" moved file "/textfile0.txt" to "/local_storage/textfile0.txt"
And invoking occ with "files_external:create --user user0 test local null::null -c datadir=./build/integration/work/local_storage"
And invoking occ with "files:scan --path /user0/files/test"
And as "user0" the file "/local_storage/textfile0.txt" exists
And as "user0" the folder "/test" exists
And as "user0" the file "/test/textfile0.txt" exists
And As an "user1"
And user "user1" created a folder "/test"
And User "user1" moved file "/textfile0.txt" to "/test/textfile1.txt"
And folder "/test" of user "user1" is shared with user "user0"
And As an "user0"
Then as "user0" the file "/test/textfile1.txt" does not exist
# Scenario: Shares don't overwrite external storage
# Given user "user0" exists
# And user "user1" exists
# And As an "user0"
# And User "user0" moved file "/textfile0.txt" to "/local_storage/textfile0.txt"
# And invoking occ with "files_external:create --user user0 test local null::null -c datadir=./build/integration/work/local_storage"
# And invoking occ with "files:scan --path /user0/files/test"
# And as "user0" the file "/local_storage/textfile0.txt" exists
# And as "user0" the folder "/test" exists
# And as "user0" the file "/test/textfile0.txt" exists
# And As an "user1"
# And user "user1" created a folder "/test"
# And User "user1" moved file "/textfile0.txt" to "/test/textfile1.txt"
# And folder "/test" of user "user1" is shared with user "user0"
# And As an "user0"
# Then as "user0" the file "/test/textfile1.txt" does not exist

Scenario: Move a file into storage works
Given user "user0" exists
And user "user1" exists
And As an "user0"
And user "user0" created a folder "/local_storage/foo1"
When User "user0" moved file "/textfile0.txt" to "/local_storage/foo1/textfile0.txt"
Then as "user1" the file "/local_storage/foo1/textfile0.txt" exists
And as "user0" the file "/local_storage/foo1/textfile0.txt" exists
# Scenario: Move a file into storage works
# Given user "user0" exists
# And user "user1" exists
# And As an "user0"
# And user "user0" created a folder "/local_storage/foo1"
# When User "user0" moved file "/textfile0.txt" to "/local_storage/foo1/textfile0.txt"
# Then as "user1" the file "/local_storage/foo1/textfile0.txt" exists
# And as "user0" the file "/local_storage/foo1/textfile0.txt" exists

Scenario: Move a file out of the storage works
Given user "user0" exists
And user "user1" exists
And As an "user0"
And user "user0" created a folder "/local_storage/foo2"
And User "user0" moved file "/textfile0.txt" to "/local_storage/foo2/textfile0.txt"
When User "user1" moved file "/local_storage/foo2/textfile0.txt" to "/local.txt"
Then as "user1" the file "/local_storage/foo2/textfile0.txt" does not exist
And as "user0" the file "/local_storage/foo2/textfile0.txt" does not exist
And as "user1" the file "/local.txt" exists
# Scenario: Move a file out of the storage works
# Given user "user0" exists
# And user "user1" exists
# And As an "user0"
# And user "user0" created a folder "/local_storage/foo2"
# And User "user0" moved file "/textfile0.txt" to "/local_storage/foo2/textfile0.txt"
# When User "user1" moved file "/local_storage/foo2/textfile0.txt" to "/local.txt"
# Then as "user1" the file "/local_storage/foo2/textfile0.txt" does not exist
# And as "user0" the file "/local_storage/foo2/textfile0.txt" does not exist
# And as "user1" the file "/local.txt" exists



Expand Down

0 comments on commit 8687f83

Please sign in to comment.