123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- use Behat\Behat\Context\Context;
- use Behat\Behat\Context\SnippetAcceptingContext;
- use Behat\Gherkin\Node\TableNode;
- require __DIR__ . '/../../vendor/autoload.php';
- class FederationContext implements Context, SnippetAcceptingContext {
- use WebDav;
- use AppConfiguration;
- use CommandLine;
-
- private static $phpFederatedServerPid = '';
-
- private $lastAcceptedRemoteShareId;
-
- public function startFederatedServer() {
- if (self::$phpFederatedServerPid !== '') {
- return;
- }
- $port = getenv('PORT_FED');
- self::$phpFederatedServerPid = exec('php -S localhost:' . $port . ' -t ../../ >/dev/null & echo $!');
- }
-
- public function cleanupRemoteStorages() {
-
-
-
-
-
-
- $this->runOcc(['sharing:cleanup-remote-storages']);
- }
-
- public function federateSharing($sharerUser, $sharerServer, $sharerPath, $shareeUser, $shareeServer) {
- if ($shareeServer == 'REMOTE') {
- $shareWith = "$shareeUser@" . substr($this->remoteBaseUrl, 0, -4);
- } else {
- $shareWith = "$shareeUser@" . substr($this->localBaseUrl, 0, -4);
- }
- $previous = $this->usingServer($sharerServer);
- $this->createShare($sharerUser, $sharerPath, 6, $shareWith, null, null, null);
- $this->usingServer($previous);
- }
-
- public function federateGroupSharing($sharerUser, $sharerServer, $sharerPath, $shareeGroup, $shareeServer) {
- if ($shareeServer == 'REMOTE') {
- $shareWith = "$shareeGroup@" . substr($this->remoteBaseUrl, 0, -4);
- } else {
- $shareWith = "$shareeGroup@" . substr($this->localBaseUrl, 0, -4);
- }
- $previous = $this->usingServer($sharerServer);
- $this->createShare($sharerUser, $sharerPath, 9, $shareWith, null, null, null);
- $this->usingServer($previous);
- }
-
- public function remoteShareXIsReturnedWith(int $number, TableNode $body) {
- $this->theHTTPStatusCodeShouldBe('200');
- $this->theOCSStatusCodeShouldBe('100');
- if (!($body instanceof TableNode)) {
- return;
- }
- $returnedShare = $this->getXmlResponse()->data[0];
- if ($returnedShare->element) {
- $returnedShare = $returnedShare->element[$number];
- }
- $defaultExpectedFields = [
- 'id' => 'A_NUMBER',
- 'remote_id' => 'A_NUMBER',
- 'accepted' => '1',
- ];
- $expectedFields = array_merge($defaultExpectedFields, $body->getRowsHash());
- foreach ($expectedFields as $field => $value) {
- $this->assertFieldIsInReturnedShare($field, $value, $returnedShare);
- }
- }
-
- public function acceptLastPendingShare($user, $server) {
- $previous = $this->usingServer($server);
- $this->asAn($user);
- $this->sendingToWith('GET', '/apps/files_sharing/api/v1/remote_shares/pending', null);
- $this->theHTTPStatusCodeShouldBe('200');
- $this->theOCSStatusCodeShouldBe('100');
- $share_id = simplexml_load_string($this->response->getBody())->data[0]->element[0]->id;
- $this->sendingToWith('POST', "/apps/files_sharing/api/v1/remote_shares/pending/{$share_id}", null);
- $this->theHTTPStatusCodeShouldBe('200');
- $this->theOCSStatusCodeShouldBe('100');
- $this->usingServer($previous);
- $this->lastAcceptedRemoteShareId = $share_id;
- }
-
- public function deleteLastAcceptedRemoteShare($user) {
- $this->asAn($user);
- $this->sendingToWith('DELETE', '/apps/files_sharing/api/v1/remote_shares/' . $this->lastAcceptedRemoteShareId, null);
- }
-
- public function remoteServerIsStopped() {
- if (self::$phpFederatedServerPid === '') {
- return;
- }
- exec('kill ' . self::$phpFederatedServerPid);
- self::$phpFederatedServerPid = '';
- }
- protected function resetAppConfigs() {
- $this->deleteServerConfig('files_sharing', 'incoming_server2server_group_share_enabled');
- $this->deleteServerConfig('files_sharing', 'outgoing_server2server_group_share_enabled');
- }
- }
|