123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905 |
- <?php
- /**
- *
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sergio Bertolin <sbertolin@solidgear.es>
- * @author Sergio Bertolín <sbertolin@solidgear.es>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program 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 (at your option) 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 GuzzleHttp\Client;
- use GuzzleHttp\Message\ResponseInterface;
- use PHPUnit\Framework\Assert;
- require __DIR__ . '/../../vendor/autoload.php';
- trait Provisioning {
- use BasicStructure;
- /** @var array */
- private $createdUsers = [];
- /** @var array */
- private $createdRemoteUsers = [];
- /** @var array */
- private $createdRemoteGroups = [];
- /** @var array */
- private $createdGroups = [];
- /**
- * @Given /^user "([^"]*)" exists$/
- * @param string $user
- */
- public function assureUserExists($user) {
- try {
- $this->userExists($user);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->creatingTheUser($user);
- $this->currentUser = $previous_user;
- }
- $this->userExists($user);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^user "([^"]*)" with displayname "((?:[^"]|\\")*)" exists$/
- * @param string $user
- */
- public function assureUserWithDisplaynameExists($user, $displayname) {
- try {
- $this->userExists($user);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->creatingTheUser($user, $displayname);
- $this->currentUser = $previous_user;
- }
- $this->userExists($user);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^user "([^"]*)" does not exist$/
- * @param string $user
- */
- public function userDoesNotExist($user) {
- try {
- $this->userExists($user);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $this->response = $ex->getResponse();
- Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
- return;
- }
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->deletingTheUser($user);
- $this->currentUser = $previous_user;
- try {
- $this->userExists($user);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $this->response = $ex->getResponse();
- Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
- }
- }
- public function creatingTheUser($user, $displayname = '') {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['form_params'] = [
- 'userid' => $user,
- 'password' => '123456'
- ];
- if ($displayname !== '') {
- $options['form_params']['displayName'] = $displayname;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->post($fullUrl, $options);
- if ($this->currentServer === 'LOCAL') {
- $this->createdUsers[$user] = $user;
- } elseif ($this->currentServer === 'REMOTE') {
- $this->createdRemoteUsers[$user] = $user;
- }
- //Quick hack to login once with the current user
- $options2 = [
- 'auth' => [$user, '123456'],
- ];
- $options2['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $url = $fullUrl . '/' . $user;
- $client->get($url, $options2);
- }
- /**
- * @Then /^user "([^"]*)" has$/
- *
- * @param string $user
- * @param \Behat\Gherkin\Node\TableNode|null $settings
- */
- public function userHasSetting($user, $settings) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- $options['auth'] = $this->adminUser;
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $response = $client->get($fullUrl, $options);
- foreach ($settings->getRows() as $setting) {
- $value = json_decode(json_encode(simplexml_load_string($response->getBody())->data->{$setting[0]}), 1);
- if (isset($value[0])) {
- Assert::assertEquals($setting[1], $value[0], "", 0.0, 10, true);
- } else {
- Assert::assertEquals('', $setting[1]);
- }
- }
- }
- /**
- * @Then /^search users by phone for region "([^"]*)" with$/
- *
- * @param string $user
- * @param \Behat\Gherkin\Node\TableNode|null $settings
- */
- public function searchUserByPhone($region, \Behat\Gherkin\Node\TableNode $searchTable) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/search/by-phone";
- $client = new Client();
- $options = [];
- $options['auth'] = $this->adminUser;
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $search = [];
- foreach ($searchTable->getRows() as $row) {
- if (!isset($search[$row[0]])) {
- $search[$row[0]] = [];
- }
- $search[$row[0]][] = $row[1];
- }
- $options['form_params'] = [
- 'location' => $region,
- 'search' => $search,
- ];
- $this->response = $client->post($fullUrl, $options);
- }
- public function createUser($user) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->creatingTheUser($user);
- $this->userExists($user);
- $this->currentUser = $previous_user;
- }
- public function deleteUser($user) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->deletingTheUser($user);
- $this->userDoesNotExist($user);
- $this->currentUser = $previous_user;
- }
- public function createGroup($group) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->creatingTheGroup($group);
- $this->groupExists($group);
- $this->currentUser = $previous_user;
- }
- public function deleteGroup($group) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->deletingTheGroup($group);
- $this->groupDoesNotExist($group);
- $this->currentUser = $previous_user;
- }
- public function userExists($user) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- $options['auth'] = $this->adminUser;
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true'
- ];
- $this->response = $client->get($fullUrl, $options);
- }
- /**
- * @Then /^check that user "([^"]*)" belongs to group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function checkThatUserBelongsToGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/users/$user/groups";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfGroupsResponded($this->response);
- sort($respondedArray);
- Assert::assertContains($group, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- public function userBelongsToGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/users/$user/groups";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfGroupsResponded($this->response);
- if (array_key_exists($group, $respondedArray)) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * @Given /^user "([^"]*)" belongs to group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function assureUserBelongsToGroup($user, $group) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- if (!$this->userBelongsToGroup($user, $group)) {
- $this->addingUserToGroup($user, $group);
- }
- $this->checkThatUserBelongsToGroup($user, $group);
- $this->currentUser = $previous_user;
- }
- /**
- * @Given /^user "([^"]*)" does not belong to group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function userDoesNotBelongToGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/users/$user/groups";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $groups = [$group];
- $respondedArray = $this->getArrayOfGroupsResponded($this->response);
- Assert::assertNotEquals($groups, $respondedArray, "", 0.0, 10, true);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @When /^creating the group "([^"]*)"$/
- * @param string $group
- */
- public function creatingTheGroup($group) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/groups";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['form_params'] = [
- 'groupid' => $group,
- ];
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->post($fullUrl, $options);
- if ($this->currentServer === 'LOCAL') {
- $this->createdGroups[$group] = $group;
- } elseif ($this->currentServer === 'REMOTE') {
- $this->createdRemoteGroups[$group] = $group;
- }
- }
- /**
- * @When /^assure user "([^"]*)" is disabled$/
- */
- public function assureUserIsDisabled($user) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user/disable";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- // TODO: fix hack
- $options['form_params'] = [
- 'foo' => 'bar'
- ];
- $this->response = $client->put($fullUrl, $options);
- }
- /**
- * @When /^Deleting the user "([^"]*)"$/
- * @param string $user
- */
- public function deletingTheUser($user) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->delete($fullUrl, $options);
- }
- /**
- * @When /^Deleting the group "([^"]*)"$/
- * @param string $group
- */
- public function deletingTheGroup($group) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/groups/$group";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->delete($fullUrl, $options);
- if ($this->currentServer === 'LOCAL') {
- unset($this->createdGroups[$group]);
- } elseif ($this->currentServer === 'REMOTE') {
- unset($this->createdRemoteGroups[$group]);
- }
- }
- /**
- * @Given /^Add user "([^"]*)" to the group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function addUserToGroup($user, $group) {
- $this->userExists($user);
- $this->groupExists($group);
- $this->addingUserToGroup($user, $group);
- }
- /**
- * @When /^User "([^"]*)" is added to the group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function addingUserToGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user/groups";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $options['form_params'] = [
- 'groupid' => $group,
- ];
- $this->response = $client->post($fullUrl, $options);
- }
- public function groupExists($group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/groups/$group";
- $client = new Client();
- $options = [];
- $options['auth'] = $this->adminUser;
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- }
- /**
- * @Given /^group "([^"]*)" exists$/
- * @param string $group
- */
- public function assureGroupExists($group) {
- try {
- $this->groupExists($group);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->creatingTheGroup($group);
- $this->currentUser = $previous_user;
- }
- $this->groupExists($group);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^group "([^"]*)" does not exist$/
- * @param string $group
- */
- public function groupDoesNotExist($group) {
- try {
- $this->groupExists($group);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $this->response = $ex->getResponse();
- Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
- return;
- }
- $previous_user = $this->currentUser;
- $this->currentUser = "admin";
- $this->deletingTheGroup($group);
- $this->currentUser = $previous_user;
- try {
- $this->groupExists($group);
- } catch (\GuzzleHttp\Exception\ClientException $ex) {
- $this->response = $ex->getResponse();
- Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
- }
- }
- /**
- * @Given /^user "([^"]*)" is subadmin of group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function userIsSubadminOfGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/groups/$group/subadmins";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfSubadminsResponded($this->response);
- sort($respondedArray);
- Assert::assertContains($user, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^Assure user "([^"]*)" is subadmin of group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function assureUserIsSubadminOfGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user/subadmins";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['form_params'] = [
- 'groupid' => $group
- ];
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->post($fullUrl, $options);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^user "([^"]*)" is not a subadmin of group "([^"]*)"$/
- * @param string $user
- * @param string $group
- */
- public function userIsNotSubadminOfGroup($user, $group) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/groups/$group/subadmins";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfSubadminsResponded($this->response);
- sort($respondedArray);
- Assert::assertNotContains($user, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Then /^users returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $usersList
- */
- public function theUsersShouldBe($usersList) {
- if ($usersList instanceof \Behat\Gherkin\Node\TableNode) {
- $users = $usersList->getRows();
- $usersSimplified = $this->simplifyArray($users);
- $respondedArray = $this->getArrayOfUsersResponded($this->response);
- Assert::assertEquals($usersSimplified, $respondedArray, "", 0.0, 10, true);
- }
- }
- /**
- * @Then /^phone matches returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $usersList
- */
- public function thePhoneUsersShouldBe($usersList) {
- if ($usersList instanceof \Behat\Gherkin\Node\TableNode) {
- $users = $usersList->getRowsHash();
- $listCheckedElements = simplexml_load_string($this->response->getBody())->data;
- $respondedArray = json_decode(json_encode($listCheckedElements), true);
- Assert::assertEquals($users, $respondedArray);
- }
- }
- /**
- * @Then /^detailed users returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $usersList
- */
- public function theDetailedUsersShouldBe($usersList) {
- if ($usersList instanceof \Behat\Gherkin\Node\TableNode) {
- $users = $usersList->getRows();
- $usersSimplified = $this->simplifyArray($users);
- $respondedArray = $this->getArrayOfDetailedUsersResponded($this->response);
- $respondedArray = array_keys($respondedArray);
- Assert::assertEquals($usersSimplified, $respondedArray);
- }
- }
- /**
- * @Then /^groups returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $groupsList
- */
- public function theGroupsShouldBe($groupsList) {
- if ($groupsList instanceof \Behat\Gherkin\Node\TableNode) {
- $groups = $groupsList->getRows();
- $groupsSimplified = $this->simplifyArray($groups);
- $respondedArray = $this->getArrayOfGroupsResponded($this->response);
- Assert::assertEquals($groupsSimplified, $respondedArray, "", 0.0, 10, true);
- }
- }
- /**
- * @Then /^subadmin groups returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $groupsList
- */
- public function theSubadminGroupsShouldBe($groupsList) {
- if ($groupsList instanceof \Behat\Gherkin\Node\TableNode) {
- $groups = $groupsList->getRows();
- $groupsSimplified = $this->simplifyArray($groups);
- $respondedArray = $this->getArrayOfSubadminsResponded($this->response);
- Assert::assertEquals($groupsSimplified, $respondedArray, "", 0.0, 10, true);
- }
- }
- /**
- * @Then /^apps returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $appList
- */
- public function theAppsShouldBe($appList) {
- if ($appList instanceof \Behat\Gherkin\Node\TableNode) {
- $apps = $appList->getRows();
- $appsSimplified = $this->simplifyArray($apps);
- $respondedArray = $this->getArrayOfAppsResponded($this->response);
- Assert::assertEquals($appsSimplified, $respondedArray, "", 0.0, 10, true);
- }
- }
- /**
- * @Then /^subadmin users returned are$/
- * @param \Behat\Gherkin\Node\TableNode|null $groupsList
- */
- public function theSubadminUsersShouldBe($groupsList) {
- $this->theSubadminGroupsShouldBe($groupsList);
- }
- /**
- * Parses the xml answer to get the array of users returned.
- *
- * @param ResponseInterface $resp
- * @return array
- */
- public function getArrayOfUsersResponded($resp) {
- $listCheckedElements = simplexml_load_string($resp->getBody())->data[0]->users[0]->element;
- $extractedElementsArray = json_decode(json_encode($listCheckedElements), 1);
- return $extractedElementsArray;
- }
- /**
- * Parses the xml answer to get the array of detailed users returned.
- *
- * @param ResponseInterface $resp
- * @return array
- */
- public function getArrayOfDetailedUsersResponded($resp) {
- $listCheckedElements = simplexml_load_string($resp->getBody())->data[0]->users;
- $extractedElementsArray = json_decode(json_encode($listCheckedElements), 1);
- return $extractedElementsArray;
- }
- /**
- * Parses the xml answer to get the array of groups returned.
- *
- * @param ResponseInterface $resp
- * @return array
- */
- public function getArrayOfGroupsResponded($resp) {
- $listCheckedElements = simplexml_load_string($resp->getBody())->data[0]->groups[0]->element;
- $extractedElementsArray = json_decode(json_encode($listCheckedElements), 1);
- return $extractedElementsArray;
- }
- /**
- * Parses the xml answer to get the array of apps returned.
- *
- * @param ResponseInterface $resp
- * @return array
- */
- public function getArrayOfAppsResponded($resp) {
- $listCheckedElements = simplexml_load_string($resp->getBody())->data[0]->apps[0]->element;
- $extractedElementsArray = json_decode(json_encode($listCheckedElements), 1);
- return $extractedElementsArray;
- }
- /**
- * Parses the xml answer to get the array of subadmins returned.
- *
- * @param ResponseInterface $resp
- * @return array
- */
- public function getArrayOfSubadminsResponded($resp) {
- $listCheckedElements = simplexml_load_string($resp->getBody())->data[0]->element;
- $extractedElementsArray = json_decode(json_encode($listCheckedElements), 1);
- return $extractedElementsArray;
- }
- /**
- * @Given /^app "([^"]*)" is disabled$/
- * @param string $app
- */
- public function appIsDisabled($app) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/apps?filter=disabled";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfAppsResponded($this->response);
- Assert::assertContains($app, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^app "([^"]*)" is enabled$/
- * @param string $app
- */
- public function appIsEnabled($app) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/apps?filter=enabled";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfAppsResponded($this->response);
- Assert::assertContains($app, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Given /^app "([^"]*)" is not enabled$/
- *
- * Checks that the app is disabled or not installed.
- *
- * @param string $app
- */
- public function appIsNotEnabled($app) {
- $fullUrl = $this->baseUrl . "v2.php/cloud/apps?filter=enabled";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- $respondedArray = $this->getArrayOfAppsResponded($this->response);
- Assert::assertNotContains($app, $respondedArray);
- Assert::assertEquals(200, $this->response->getStatusCode());
- }
- /**
- * @Then /^user "([^"]*)" is disabled$/
- * @param string $user
- */
- public function userIsDisabled($user) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- // false in xml is empty
- Assert::assertTrue(empty(simplexml_load_string($this->response->getBody())->data[0]->enabled));
- }
- /**
- * @Then /^user "([^"]*)" is enabled$/
- * @param string $user
- */
- public function userIsEnabled($user) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- if ($this->currentUser === 'admin') {
- $options['auth'] = $this->adminUser;
- }
- $options['headers'] = [
- 'OCS-APIREQUEST' => 'true',
- ];
- $this->response = $client->get($fullUrl, $options);
- // boolean to string is integer
- Assert::assertEquals("1", simplexml_load_string($this->response->getBody())->data[0]->enabled);
- }
- /**
- * @Given user :user has a quota of :quota
- * @param string $user
- * @param string $quota
- */
- public function userHasAQuotaOf($user, $quota) {
- $body = new \Behat\Gherkin\Node\TableNode([
- 0 => ['key', 'quota'],
- 1 => ['value', $quota],
- ]);
- // method used from BasicStructure trait
- $this->sendingToWith("PUT", "/cloud/users/" . $user, $body);
- }
- /**
- * @Given user :user has unlimited quota
- * @param string $user
- */
- public function userHasUnlimitedQuota($user) {
- $this->userHasAQuotaOf($user, 'none');
- }
- /**
- * Returns home path of the given user
- *
- * @param string $user
- */
- public function getUserHome($user) {
- $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user";
- $client = new Client();
- $options = [];
- $options['auth'] = $this->adminUser;
- $this->response = $client->get($fullUrl, $options);
- return simplexml_load_string($this->response->getBody())->data[0]->home;
- }
- /**
- * @BeforeScenario
- * @AfterScenario
- */
- public function cleanupUsers() {
- $previousServer = $this->currentServer;
- $this->usingServer('LOCAL');
- foreach ($this->createdUsers as $user) {
- $this->deleteUser($user);
- }
- $this->usingServer('REMOTE');
- foreach ($this->createdRemoteUsers as $remoteUser) {
- $this->deleteUser($remoteUser);
- }
- $this->usingServer($previousServer);
- }
- /**
- * @BeforeScenario
- * @AfterScenario
- */
- public function cleanupGroups() {
- $previousServer = $this->currentServer;
- $this->usingServer('LOCAL');
- foreach ($this->createdGroups as $group) {
- $this->deleteGroup($group);
- }
- $this->usingServer('REMOTE');
- foreach ($this->createdRemoteGroups as $remoteGroup) {
- $this->deleteGroup($remoteGroup);
- }
- $this->usingServer($previousServer);
- }
- }
|