Skip to content
Extraits de code Groupes Projets
connects_users.feature 3,71 ko
Newer Older
  • Learn to ignore specific revisions
  • @javascript
    
    Feature: sending and receiving requests
    
      Background: 
        Given a user with email "bob@bob.bob"
        And a user with email "alice@alice.alice"
        When I sign in as "bob@bob.bob"
        And I am on "alice@alice.alice"'s page
    
        And I add the person to my 1st aspect
    
    
        And I am on the home page
        Given I expand the publisher
        When I fill in "status_message_fake_text" with "I am following you"
          And I press "Share"
    
    
        Then I go to the destroy user session page
    
      Scenario: see follower's posts on their profile page and not on the home page
    
        When I sign in as "alice@alice.alice"
    
        And I am on "bob@bob.bob"'s page
        Then I should see "I am following you"
    
        And I am on the home page
        Then I should not see "I am following you"
    
      Scenario: see following's public posts on their profile page and on the home page
        Given I sign in as "alice@alice.alice"
        And I am on the home page
        And I expand the publisher
        And I fill in "status_message_fake_text" with "I am ALICE"
        And I press the first ".public_icon" within "#publisher"
        And I press "Share"
        And I go to the destroy user session page
    
        When I sign in as "bob@bob.bob"
        And I am on "alice@alice.alice"'s page
    
        Then I should see "I am ALICE"
        And I am on the home page
        Then I should see "I am ALICE"
    
    
      Scenario: mutual following the original follower should see private posts on their stream
    
        When I sign in as "alice@alice.alice"
        And I am on "bob@bob.bob"'s page
    
    
        And I add the person to my 1st aspect
        And I add the person to my 2nd aspect
    
        When I go to the home page
        Then I go to the manage aspects page
    
        Then I should see 1 contact in "Unicorns"
        Then I should see 1 contact in "Besties"
    
        And I am on the home page
        Given I expand the publisher
        When I fill in "status_message_fake_text" with "I am following you back"
        And I press "Share"
        Then I go to the destroy user session page
    
        When I sign in as "bob@bob.bob"
        And I am on the manage aspects page
        Then I should see 1 contact in "Besties"
    
        And I am on the home page
        Then I should see "I am following you back"
    
      Scenario: following a contact request into a new aspect
    
        When I sign in as "alice@alice.alice"
        And I am on "bob@bob.bob"'s page
    
        And I press the first ".share_with.button" within "#author_info"
    
        And I fill in "Name" with "Super People" in the modal window
        And I press "aspect_submit" in the modal window
        And I wait for the ajax to finish
    
       When I go to the home page
    
       Then I go to the manage aspects page
    
       Then I should see 1 contact in "Super People"
       Then I go to the destroy user session page
    
       When I sign in as "bob@bob.bob"
    
       And I am on the manage aspects page
    
       Then I should see 1 contact in "Besties"
    
      Scenario: should not see "Add to aspect" and see mention if already a follower
    
        When I sign in as "bob@bob.bob"
        And I am on "alice@alice.alice"'s page
    
    
        Then I should see "Mention"
        Then I should not see "Message"
    
    
      Scenario: should see "Add to aspect" and not see mention if on a follower's page
    
        When I sign in as "alice@alice.alice"
        And I am on "bob@bob.bob"'s page
    
    
        Then I should not see /^In \d aspects?$/
    
        Then I should not see "Mention"
        Then I should not see "Message"
    
    
      Scenario: should see "Add to aspect" & mention & message on mutual contacts
    
        When I sign in as "alice@alice.alice"
        And I am on "bob@bob.bob"'s page
    
    
        And I add the person to my 1st aspect
        And I add the person to my 2nd aspect
    
    
        And I am on "bob@bob.bob"'s page
    
    
        Then I should not see "Add to aspect"
        Then I should see "In 2 aspects"
    
        Then I should see "Mention"
        Then I should see "Message"