]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add acceptance tests for switching to the comments of another file
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 22 Nov 2018 04:20:26 +0000 (05:20 +0100)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 22 Nov 2018 16:43:58 +0000 (17:43 +0100)
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tests/acceptance/features/app-comments.feature
tests/acceptance/features/bootstrap/CommentsAppContext.php

index a5bdb0aa745abbc7442b3954fbff4cf1bdda8c90..1ee113d0aac57aba0d1875246a0b207dcd2ee101 100644 (file)
@@ -6,3 +6,26 @@ Feature: app-comments
     And I open the "Comments" tab in the details view
     When I create a new comment with "Hello world" as message
     Then I see a comment with "Hello world" as message
+
+  Scenario: open the comments for a different file
+    Given I am logged in
+    And I create a new folder named "Folder"
+    And I open the details view for "welcome.txt"
+    And I open the "Comments" tab in the details view
+    And I create a new comment with "Hello world" as message
+    And I see a comment with "Hello world" as message
+    When I open the details view for "Folder"
+    # The "Comments" tab should already be opened
+    Then I see that there are no comments
+
+  Scenario: write a comment in a file right after writing a comment in another file
+    Given I am logged in
+    And I create a new folder named "Folder"
+    And I open the details view for "Folder"
+    And I open the "Comments" tab in the details view
+    And I create a new comment with "Comment in Folder" as message
+    And I open the details view for "welcome.txt"
+    # The "Comments" tab should already be opened
+    When I create a new comment with "Comment in welcome.txt" as message
+    Then I see a comment with "Comment in welcome.txt" as message
+    And I see that there is no comment with "Comment in Folder" as message
index 13d8af4e60e76bd89115a73b97fc624548b56f69..5d19412c30e2620ef206a69cf786eaa9197e1b55 100644 (file)
@@ -62,6 +62,15 @@ class CommentsAppContext implements Context, ActorAwareInterface {
                                describedAs("Comment with text \"$text\" in details view in Files app");
        }
 
+       /**
+        * @return Locator
+        */
+       public static function emptyContent() {
+               return Locator::forThe()->css(".emptycontent")->
+                               descendantOf(FilesAppContext::detailsView())->
+                               describedAs("Empty content in details view in Files app");
+       }
+
        /**
         * @When /^I create a new comment with "([^"]*)" as message$/
         */
@@ -70,6 +79,14 @@ class CommentsAppContext implements Context, ActorAwareInterface {
                $this->actor->find(self::submitNewCommentButton())->click();
        }
 
+       /**
+        * @Then /^I see that there are no comments$/
+        */
+       public function iSeeThatThereAreNoComments() {
+               PHPUnit_Framework_Assert::assertTrue(
+                               $this->actor->find(self::emptyContent(), 10)->isVisible());
+       }
+
        /**
         * @Then /^I see a comment with "([^"]*)" as message$/
         */
@@ -77,4 +94,15 @@ class CommentsAppContext implements Context, ActorAwareInterface {
                PHPUnit_Framework_Assert::assertTrue(
                                $this->actor->find(self::commentWithText($commentText), 10)->isVisible());
        }
+
+       /**
+        * @Then /^I see that there is no comment with "([^"]*)" as message$/
+        */
+       public function iSeeThatThereIsNoCommentWithAsMessage($commentText) {
+               try {
+                       PHPUnit_Framework_Assert::assertFalse(
+                                       $this->actor->find(self::commentWithText($commentText))->isVisible());
+               } catch (NoSuchElementException $exception) {
+               }
+       }
 }