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

connects_users.feature « features - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ae7c99bf72e3fb5cefc38ce88a67c3a36a2f647 (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
@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
    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"
    When I follow "Your Aspects"
      Then I should have 1 contacts 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 ".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 should have 1 contact in "Super People"
   Then I go to the destroy user session page

   When I sign in as "bob@bob.bob"
   Then I should have 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 "Besties"
    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 see "Add to aspect"
    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 see "In 2 aspects"
    Then I should see "Mention"
    Then I should see "Message"