add tests for fake office
This commit is contained in:
@@ -23,7 +23,6 @@
|
|||||||
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
|
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
|
||||||
use Behat\Behat\Context\Context;
|
use Behat\Behat\Context\Context;
|
||||||
use PHPUnit\Framework\Assert;
|
use PHPUnit\Framework\Assert;
|
||||||
use Psr\Http\Message\ResponseInterface;
|
|
||||||
use TestHelpers\CliHelper;
|
use TestHelpers\CliHelper;
|
||||||
use TestHelpers\OcisConfigHelper;
|
use TestHelpers\OcisConfigHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,94 @@
|
|||||||
|
<?php declare(strict_types=1);
|
||||||
|
/**
|
||||||
|
* ownCloud
|
||||||
|
*
|
||||||
|
* @author Amrita Shrestha <amrita@jankaritech.com>
|
||||||
|
* @copyright Copyright (c) 2024 Amrita Shrestha <amrita@jankaritech.com>
|
||||||
|
*
|
||||||
|
* This code is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License,
|
||||||
|
* as published by the Free Software Foundation;
|
||||||
|
* either version 3 of the License, or any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Behat\Behat\Context\Context;
|
||||||
|
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
|
||||||
|
use GuzzleHttp\Exception\GuzzleException;
|
||||||
|
use TestHelpers\HttpRequestHelper;
|
||||||
|
|
||||||
|
require_once 'bootstrap.php';
|
||||||
|
/**
|
||||||
|
* steps needed to re-configure oCIS server
|
||||||
|
*/
|
||||||
|
class CollaborationContext implements Context {
|
||||||
|
private FeatureContext $featureContext;
|
||||||
|
private SpacesContext $spacesContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This will run before EVERY scenario.
|
||||||
|
* It will set the properties for this object.
|
||||||
|
*
|
||||||
|
* @BeforeScenario
|
||||||
|
*
|
||||||
|
* @param BeforeScenarioScope $scope
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function before(BeforeScenarioScope $scope): void {
|
||||||
|
// Get the environment
|
||||||
|
$environment = $scope->getEnvironment();
|
||||||
|
// Get all the contexts you need in this context from here
|
||||||
|
$this->featureContext = $environment->getContext('FeatureContext');
|
||||||
|
$this->spacesContext = $environment->getContext('SpacesContext');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @When user :user request information of file :file on space :space for :app
|
||||||
|
*
|
||||||
|
* @param $user
|
||||||
|
* @param $file
|
||||||
|
* @param $space
|
||||||
|
* @param $app
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*
|
||||||
|
* @throws GuzzleException
|
||||||
|
* @throws JsonException
|
||||||
|
*/
|
||||||
|
public function userRequestInformationOfFileOnSpaceFor($user, $file, $space, $app) : void {
|
||||||
|
$fileId = $this->spacesContext->getFileId($user, $space, $file);
|
||||||
|
$response = \json_decode(
|
||||||
|
HttpRequestHelper::post(
|
||||||
|
$this->featureContext->getBaseUrl() . "/app/open?app_name=$app&file_id=$fileId",
|
||||||
|
$this->featureContext->getStepLineRef(),
|
||||||
|
$this->featureContext->getActualUsername($user),
|
||||||
|
$this->featureContext->getPasswordForUser($user),
|
||||||
|
['Content-Type' => 'application/json']
|
||||||
|
)->getBody()->getContents()
|
||||||
|
);
|
||||||
|
|
||||||
|
$accessToken = $response->form_parameters->access_token;
|
||||||
|
|
||||||
|
// Extract the WOPISrc from the app_url
|
||||||
|
$parsedUrl = parse_url($response->app_url);
|
||||||
|
parse_str($parsedUrl['query'], $queryParams);
|
||||||
|
$wopiSrc = $queryParams['WOPISrc'];
|
||||||
|
|
||||||
|
$this->featureContext->setResponse(
|
||||||
|
HttpRequestHelper::get(
|
||||||
|
$wopiSrc . "?access_token=$accessToken",
|
||||||
|
$this->featureContext->getStepLineRef()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -407,6 +407,8 @@ default:
|
|||||||
contexts:
|
contexts:
|
||||||
- FeatureContext: *common_feature_context_params
|
- FeatureContext: *common_feature_context_params
|
||||||
- SharingNgContext:
|
- SharingNgContext:
|
||||||
|
- CollaborationContext:
|
||||||
|
|
||||||
|
|
||||||
cliCommands:
|
cliCommands:
|
||||||
paths:
|
paths:
|
||||||
|
|||||||
@@ -0,0 +1,142 @@
|
|||||||
|
Feature: check file info on wopi
|
||||||
|
As a user
|
||||||
|
I want to request file information on wopi server
|
||||||
|
So that I can make sure that the response contains all the relevant values
|
||||||
|
|
||||||
|
Background:
|
||||||
|
Given user "Alice" has been created with default attributes and without skeleton files
|
||||||
|
|
||||||
|
|
||||||
|
Scenario: check file info for fake office
|
||||||
|
Given user "Alice" has uploaded file with content "hello world" to "/textfile0.txt"
|
||||||
|
When user "Alice" request information of file "textfile0.txt" on space "Personal" for "FakeOffice"
|
||||||
|
Then the HTTP status code should be "200"
|
||||||
|
And the JSON data of the response should match
|
||||||
|
"""
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"BaseFileName",
|
||||||
|
"OwnerId",
|
||||||
|
"Size",
|
||||||
|
"UserId",
|
||||||
|
"Version",
|
||||||
|
"SupportsCobalt",
|
||||||
|
"SupportsContainers",
|
||||||
|
"SupportsDeleteFile",
|
||||||
|
"SupportsEcosystem",
|
||||||
|
"SupportsExtendedLockLength",
|
||||||
|
"SupportsFolders",
|
||||||
|
"SupportsGetLock",
|
||||||
|
"SupportsLocks",
|
||||||
|
"SupportsRename",
|
||||||
|
"SupportsUpdate",
|
||||||
|
"SupportsUserInfo",
|
||||||
|
"UserFriendlyName",
|
||||||
|
"ReadOnly",
|
||||||
|
"RestrictedWebViewOnly",
|
||||||
|
"UserCanAttend",
|
||||||
|
"UserCanNotWriteRelative",
|
||||||
|
"UserCanPresent",
|
||||||
|
"UserCanRename",
|
||||||
|
"UserCanWrite",
|
||||||
|
"AllowAdditionalMicrosoftServices",
|
||||||
|
"AllowExternalMarketplace",
|
||||||
|
"DisablePrint",
|
||||||
|
"DisableTranslation",
|
||||||
|
"BreadcrumbDocName"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"BaseFileName": {
|
||||||
|
"const": "textfile0.txt"
|
||||||
|
},
|
||||||
|
"OwnerId": {
|
||||||
|
"type": "string",
|
||||||
|
"pattern": "^[0-9a-fA-F]{32,}$"
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"const": 11
|
||||||
|
},
|
||||||
|
"UserId": {
|
||||||
|
"type": "string",
|
||||||
|
"pattern": "^[0-9a-fA-F]{32,}$"
|
||||||
|
},
|
||||||
|
"Version": {
|
||||||
|
"type": "string",
|
||||||
|
"pattern": "^\\d{10,12}\\.\\d+$"
|
||||||
|
},
|
||||||
|
"SupportsCobalt": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"SupportsContainers": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"SupportsDeleteFile": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsEcosystem": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"SupportsExtendedLockLength": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsFolders": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"SupportsGetLock": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsLocks": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsRename": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsUpdate": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"SupportsUserInfo": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"UserFriendlyName": {
|
||||||
|
"const": "Alice Hansen"
|
||||||
|
},
|
||||||
|
"ReadOnly": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"RestrictedWebViewOnly": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"UserCanAttend": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"UserCanNotWriteRelative": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"UserCanPresent": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"UserCanRename": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"UserCanWrite": {
|
||||||
|
"const": true
|
||||||
|
},
|
||||||
|
"AllowAdditionalMicrosoftServices": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"AllowExternalMarketplace": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"DisablePrint": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"DisableTranslation": {
|
||||||
|
"const": false
|
||||||
|
},
|
||||||
|
"BreadcrumbDocName": {
|
||||||
|
"const": "textfile0.txt"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"""
|
||||||
Reference in New Issue
Block a user