diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-23 16:12:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-23 16:12:24 -0600 |
commit | 49d0507f5d1954a439a69f4d1a4e94a8cc2981dd (patch) | |
tree | ef056f3e0c36306297140982241271219c1688aa /build/integration/features/bootstrap | |
parent | 71c80433c2921d13c4dc35f5dad7fba2efe00ba5 (diff) | |
parent | 3c1e7e5ada0710988cb6ff498ae430d9718179c4 (diff) | |
download | nextcloud-server-49d0507f5d1954a439a69f4d1a4e94a8cc2981dd.tar.gz nextcloud-server-49d0507f5d1954a439a69f4d1a4e94a8cc2981dd.zip |
Merge pull request #3879 from nextcloud/downstream-26915
Added integration tests for sharees using v2.php
Diffstat (limited to 'build/integration/features/bootstrap')
3 files changed, 15 insertions, 5 deletions
diff --git a/build/integration/features/bootstrap/AppConfiguration.php b/build/integration/features/bootstrap/AppConfiguration.php index 2f84dce3f1b..39fee5e361a 100644 --- a/build/integration/features/bootstrap/AppConfiguration.php +++ b/build/integration/features/bootstrap/AppConfiguration.php @@ -62,13 +62,17 @@ trait AppConfiguration { $body = new \Behat\Gherkin\Node\TableNode([['value', $value]]); $this->sendingToWith('post', "/apps/testing/api/v1/app/{$app}/{$parameter}", $body); $this->theHTTPStatusCodeShouldBe('200'); - $this->theOCSStatusCodeShouldBe('100'); + if ($this->apiVersion === 1) { + $this->theOCSStatusCodeShouldBe('100'); + } } protected function setStatusTestingApp($enabled) { $this->sendingTo(($enabled ? 'post' : 'delete'), '/cloud/apps/testing'); $this->theHTTPStatusCodeShouldBe('200'); - $this->theOCSStatusCodeShouldBe('100'); + if ($this->apiVersion === 1) { + $this->theOCSStatusCodeShouldBe('100'); + } $this->sendingTo('get', '/cloud/apps?filter=enabled'); $this->theHTTPStatusCodeShouldBe('200'); diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php index 8961efc6f31..ec23916d614 100644 --- a/build/integration/features/bootstrap/BasicStructure.php +++ b/build/integration/features/bootstrap/BasicStructure.php @@ -83,11 +83,11 @@ trait BasicStructure { } /** - * @Given /^using api version "([^"]*)"$/ + * @Given /^using api version "(\d+)"$/ * @param string $version */ public function usingApiVersion($version) { - $this->apiVersion = $version; + $this->apiVersion = (int) $version; } /** diff --git a/build/integration/features/bootstrap/Provisioning.php b/build/integration/features/bootstrap/Provisioning.php index 0055ff15de0..2e17508120c 100644 --- a/build/integration/features/bootstrap/Provisioning.php +++ b/build/integration/features/bootstrap/Provisioning.php @@ -331,6 +331,12 @@ trait Provisioning { ]; $this->response = $client->send($client->createRequest("DELETE", $fullUrl, $options)); + + if ($this->currentServer === 'LOCAL'){ + unset($this->createdGroups[$group]); + } elseif ($this->currentServer === 'REMOTE') { + unset($this->createdRemoteGroups[$group]); + } } /** @@ -748,7 +754,7 @@ trait Provisioning { } $this->usingServer('REMOTE'); foreach($this->createdRemoteGroups as $remoteGroup) { - $this->deleteUser($remoteGroup); + $this->deleteGroup($remoteGroup); } $this->usingServer($previousServer); } |