Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ParticipantListContext.php « bootstrap « features « acceptance « tests - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf35858661a333951e1022281a0f37cfbaf2dbb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php

/**
 *
 * @copyright Copyright (c) 2018, Daniel Calviño Sánchez (danxuliu@gmail.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 Behat\Behat\Context\Context;

class ParticipantListContext implements Context, ActorAwareInterface {
	use ActorAware;

	/**
	 * @return Locator
	 */
	public static function participantsTabView() {
		return Locator::forThe()->id("participantsTabView")->
				describedAs("Participants tab in the sidebar");
	}

	/**
	 * @return Locator
	 */
	public static function showParticipantDropdownButton() {
		return Locator::forThe()->css(".oca-spreedme-add-person .select2-choice")->
				descendantOf(self::participantsTabView())->
				describedAs("Show participant dropdown button in the sidebar");
	}

	/**
	 * @return Locator
	 */
	public static function participantsList() {
		return Locator::forThe()->css(".participantWithList")->
				descendantOf(self::participantsTabView())->
				describedAs("Participants list in the sidebar");
	}

	/**
	 * @return Locator
	 */
	public static function itemInParticipantsListFor($participantName) {
		return Locator::forThe()->xpath("//span/span[normalize-space() = '$participantName']/../..")->
				descendantOf(self::participantsList())->
				describedAs("Item for $participantName in the participants list");
	}

	/**
	 * @return Locator
	 */
	public static function moderatorIndicatorFor($participantName) {
		return Locator::forThe()->css(".participant-moderator-indicator")->
				descendantOf(self::itemInParticipantsListFor($participantName))->
				describedAs("Moderator indicator for $participantName in the participants list");
	}

	/**
	 * @return array
	 */
	public function participantsListItems() {
		return $this->actor->find(self::participantsList(), 10)
					->getWrappedElement()->findAll('xpath', '/li');
	}

	/**
	 * @When I add :participantName to the participants
	 */
	public function iAddToTheParticipants($participantName) {
		$this->actor->find(self::showParticipantDropdownButton(), 10)->click();
		$this->actor->find(TalkAppContext::itemInSelect2DropdownFor($participantName), 2)->click();
	}

	/**
	 * @Then I see that the number of participants shown in the list is :numberOfParticipants
	 */
	public function iSeeThatTheNumberOfParticipantsShownInTheListIs($numberOfParticipants) {
		$numberOfParticipantsMatchCallback = function () use ($numberOfParticipants) {
			try {
				return count($this->participantsListItems()) === intval($numberOfParticipants);
			} catch (NoSuchElementException $exception) {
				return false;
			}
		};

		if (!Utils::waitFor(
				$numberOfParticipantsMatchCallback,
				$timeout = 10 * $this->actor->getFindTimeoutMultiplier(),
				$timeoutStep = 1)) {
			PHPUnit_Framework_Assert::fail("The number of participants is still not $numberOfParticipants after $timeout seconds");
		}
	}

	/**
	 * @Then I see that :participantName is shown in the list of participants as a moderator
	 */
	public function iSeeThatIsShownInTheListOfParticipantsAsAModerator($participantName) {
		PHPUnit_Framework_Assert::assertNotNull($this->actor->find(self::itemInParticipantsListFor($participantName), 10));
		PHPUnit_Framework_Assert::assertNotNull($this->actor->find(self::moderatorIndicatorFor($participantName), 10));
	}

	/**
	 * @Then I see that :participantName is shown in the list of participants as a normal participant
	 */
	public function iSeeThatIsShownInTheListOfParticipantsAsANormalParticipant($participantName) {
		PHPUnit_Framework_Assert::assertNotNull($this->actor->find(self::itemInParticipantsListFor($participantName), 10));

		if (!WaitFor::elementToBeEventuallyNotShown(
				$this->actor,
				self::moderatorIndicatorFor($participantName),
				$timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
			PHPUnit_Framework_Assert::fail("Participant $participantName is still marked as a moderator after $timeout seconds but it should be a normal participant instead");
		}
	}
}