1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- use PHPUnit\Framework\Assert;
- trait ContactsMenu {
- // BasicStructure trait is expected to be used in the class that uses this
- // trait.
- /**
- * @When /^searching for contacts matching with "([^"]*)"$/
- *
- * @param string $filter
- */
- public function searchingForContactsMatchingWith(string $filter) {
- $url = '/index.php/contactsmenu/contacts';
- $parameters[] = 'filter=' . $filter;
- $url .= '?' . implode('&', $parameters);
- $this->sendingAToWithRequesttoken('POST', $url);
- }
- /**
- * @Then /^the list of searched contacts has "(\d+)" contacts$/
- */
- public function theListOfSearchedContactsHasContacts(int $count) {
- $this->theHTTPStatusCodeShouldBe(200);
- $searchedContacts = json_decode($this->response->getBody(), $asAssociativeArray = true)['contacts'];
- Assert::assertEquals($count, count($searchedContacts));
- }
- /**
- * @Then /^searched contact "(\d+)" is named "([^"]*)"$/
- *
- * @param int $index
- * @param string $expectedName
- */
- public function searchedContactXIsNamed(int $index, string $expectedName) {
- $searchedContacts = json_decode($this->response->getBody(), $asAssociativeArray = true)['contacts'];
- $searchedContact = $searchedContacts[$index];
- Assert::assertEquals($expectedName, $searchedContact['fullName']);
- }
- }
|