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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIvan Sein <ivan@nextcloud.com>2019-10-04 18:48:17 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-10-07 14:24:19 +0300
commit5175da0707eb085c2a203cc73c8d77cfda837f95 (patch)
tree3caa6f1105b1c2de6801544c515afb4589377d55 /tests
parent5e9124f2e6c1457ff833caf6c429d677e480ec3a (diff)
Update lobby acceptance tests
Signed-off-by: Ivan Sein <ivan@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/features/bootstrap/ConversationInfoContext.php67
-rw-r--r--tests/acceptance/features/lobby.feature16
2 files changed, 33 insertions, 50 deletions
diff --git a/tests/acceptance/features/bootstrap/ConversationInfoContext.php b/tests/acceptance/features/bootstrap/ConversationInfoContext.php
index 39157975b..8fac25417 100644
--- a/tests/acceptance/features/bootstrap/ConversationInfoContext.php
+++ b/tests/acceptance/features/bootstrap/ConversationInfoContext.php
@@ -129,43 +129,22 @@ class ConversationInfoContext implements Context, ActorAwareInterface {
/**
* @return Locator
*/
- public static function enableForAllParticipantsRadioButton() {
- // forThe()->radioButton("All participants") can not be used here; that
- // would return the radio button itself, but the element that the user
- // interacts with is the label.
- return Locator::forThe()->css(".all-participants-label")->
+ public static function enableLobbyCheckbox() {
+ // forThe()->checkbox("Enable lobby") can not be used here; that would
+ // return the checkbox itself, but the element that the user interacts
+ // with is the label.
+ return Locator::forThe()->css(".lobby-checkbox-label")->
descendantOf(self::roomModerationMenu())->
- describedAs("Enable for all participants button in room moderation menu in conversation info");
+ describedAs("Enable lobby checkbox in room moderation menu in conversation info");
}
/**
* @return Locator
*/
- public static function enableForAllParticipantsRadioButtonInput() {
- return Locator::forThe()->radioButton("All participants")->
+ public static function enableLobbyCheckboxInput() {
+ return Locator::forThe()->checkbox("Enable lobby")->
descendantOf(self::roomModerationMenu())->
- describedAs("Enable for all participants button input in room moderation menu in conversation info");
- }
-
- /**
- * @return Locator
- */
- public static function enableForModeratorsOnlyRadioButton() {
- // forThe()->radioButton("Moderators only") can not be used here; that
- // would return the radio button itself, but the element that the user
- // interacts with is the label.
- return Locator::forThe()->css(".moderators-only-label")->
- descendantOf(self::roomModerationMenu())->
- describedAs("Enable for moderators only button in room moderation menu in conversation info");
- }
-
- /**
- * @return Locator
- */
- public static function enableForModeratorsOnlyRadioButtonInput() {
- return Locator::forThe()->radioButton("Moderators only")->
- descendantOf(self::roomModerationMenu())->
- describedAs("Enable for moderators only button input in room moderation menu in conversation info");
+ describedAs("Enable lobby checkbox input in room moderation menu in conversation info");
}
/**
@@ -199,21 +178,25 @@ class ConversationInfoContext implements Context, ActorAwareInterface {
}
/**
- * @When I enable the conversation for all participants
+ * @When I enable the conversation lobby
*/
- public function iEnableTheConversationForAllParticipants() {
+ public function iEnableTheConversationLobby() {
+ $this->iSeeThatTheConversationLobbyIsNotEnabled();
+
$this->showRoomModerationMenu();
- $this->actor->find(self::enableForAllParticipantsRadioButton(), 2)->click();
+ $this->actor->find(self::enableLobbyCheckbox(), 2)->click();
}
/**
- * @When I enable the conversation for moderators only
+ * @When I disable the conversation lobby
*/
- public function iEnableTheConversationForModeratorsOnly() {
+ public function iDisableTheConversationLobby() {
+ $this->iSeeThatTheConversationLobbyIsEnabled();
+
$this->showRoomModerationMenu();
- $this->actor->find(self::enableForModeratorsOnlyRadioButton(), 2)->click();
+ $this->actor->find(self::enableLobbyCheckbox(), 2)->click();
}
/**
@@ -241,24 +224,24 @@ class ConversationInfoContext implements Context, ActorAwareInterface {
}
/**
- * @Then I see that the conversation is enabled for all participants
+ * @Then I see that the conversation lobby is enabled
*/
- public function iSeeThatTheConversationIsEnabledForAllParticipants() {
+ public function iSeeThatTheConversationLobbyIsEnabled() {
$this->showRoomModerationMenu();
- PHPUnit_Framework_Assert::assertTrue($this->actor->find(self::enableForAllParticipantsRadioButtonInput(), 10)->isChecked(), "Enable for all participants radio button is checked");
+ PHPUnit_Framework_Assert::assertTrue($this->actor->find(self::enableLobbyCheckboxInput(), 10)->isChecked(), "Enable lobby checkbox is checked");
// Hide menu again after checking the button.
$this->actor->find(self::roomModerationButton(), 2)->click();
}
/**
- * @Then I see that the conversation is enabled for moderators only
+ * @Then I see that the conversation lobby is not enabled
*/
- public function iSeeThatTheConversationIsEnabledForModeratorsOnly() {
+ public function iSeeThatTheConversationLobbyIsNotEnabled() {
$this->showRoomModerationMenu();
- PHPUnit_Framework_Assert::assertTrue($this->actor->find(self::enableForModeratorsOnlyRadioButtonInput(), 10)->isChecked(), "Enable for moderators only radio button is checked");
+ PHPUnit_Framework_Assert::assertFalse($this->actor->find(self::enableLobbyCheckboxInput(), 10)->isChecked(), "Enable lobby checkbox is not checked");
// Hide menu again after checking the button.
$this->actor->find(self::roomModerationButton(), 2)->click();
diff --git a/tests/acceptance/features/lobby.feature b/tests/acceptance/features/lobby.feature
index bf7155ef5..26a4843ae 100644
--- a/tests/acceptance/features/lobby.feature
+++ b/tests/acceptance/features/lobby.feature
@@ -5,8 +5,8 @@ Feature: lobby
And I am logged in
And I have opened the Talk app
And I create a public conversation named "Public"
- And I enable the conversation for moderators only
- And I see that the conversation is enabled for moderators only
+ And I enable the conversation lobby
+ And I see that the conversation lobby is enabled
And I write down the public conversation link
And I add "admin" to the participants
When I act as Jane
@@ -21,8 +21,8 @@ Feature: lobby
And I am logged in
And I have opened the Talk app
And I create a public conversation named "Public"
- And I enable the conversation for moderators only
- And I see that the conversation is enabled for moderators only
+ And I enable the conversation lobby
+ And I see that the conversation lobby is enabled
And I write down the public conversation link
When I act as Jane
And I am logged in as the admin
@@ -38,8 +38,8 @@ Feature: lobby
And I am logged in
And I have opened the Talk app
And I create a public conversation named "Public"
- And I enable the conversation for moderators only
- And I see that the conversation is enabled for moderators only
+ And I enable the conversation lobby
+ And I see that the conversation lobby is enabled
And I protect the conversation with the password "abcdef"
And I see that the conversation is password protected
And I write down the public conversation link
@@ -56,8 +56,8 @@ Feature: lobby
And I am logged in
And I have opened the Talk app
And I create a public conversation named "Public"
- And I enable the conversation for moderators only
- And I see that the conversation is enabled for moderators only
+ And I enable the conversation lobby
+ And I see that the conversation lobby is enabled
And I protect the conversation with the password "abcdef"
And I see that the conversation is password protected
And I write down the public conversation link