Newer
Older
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
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
danielgrippi
a validé
When I follow "Your Aspects"
Then I should have 1 contact in "Unicorns"
Then I should have 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"
danielgrippi
a validé
When I follow "Your Aspects"
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 ".toggle.button"
And I press the first "a" within ".add_aspect"
And I wait for the ajax to finish
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 destroy user session page
When I sign in as "bob@bob.bob"
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 "Besties"
Then I should see "Mention"
Then I should not see "Message"
Scenario: interacting with a follower's profile page
Given I sign in as "alice@alice.alice"
And I am on "bob@bob.bob"'s page
Raphael Sofaer
a validé
Then I should see "Add to aspect"
And I should not see "Mention"
And I should not see "Message"
When I add the person to my 1st aspect
And I add the person to my 2nd aspect
# should wait for ajax to finish here, but infinite scroll is screwing that up.
When I go to "bob@bob.bob"'s page
Then I should see "In 2 aspects"
And I should see "Mention"
And I should see "Message"