diaspora/features/post_preview.feature
2013-04-07 17:43:27 +02:00

52 lines
2 KiB
Gherkin

@javascript
Feature: preview posts in the stream
In order to test markdown without posting
As a user
I want to see a preview of my posts in the stream
Background:
Given following users exist:
| username | email |
| Bob Jones | bob@bob.bob |
| Alice Smith | alice@alice.alice |
And a user with email "bob@bob.bob" is connected with "alice@alice.alice"
When I sign in as "bob@bob.bob"
And I am on the home page
Then I should not see any posts in my stream
Scenario: preview and post a text-only message
Given I expand the publisher
When I fill in the following:
| status_message_fake_text | I am eating yogurt |
And I press "Preview"
Then "I am eating yogurt" should be post 1
And the first post should be a preview
When I fill in the following:
| status_message_fake_text | This preview rocks |
And I press "Preview"
Then "This preview rocks" should be post 1
And I should not see "I am eating a yogurt"
When I fill in the following:
| status_message_fake_text | I like rocks |
And I press "Share"
And I wait for the ajax to finish
Then "I like rocks" should be post 1
And I should not see "This preview rocks"
Scenario: preview a photo with text
Given I expand the publisher
When I attach the file "spec/fixtures/button.png" to hidden element "file" within "#file-upload"
When I fill in the following:
| status_message_fake_text | Look at this dog |
And I press "Preview"
Then I should see a "img" within ".stream_element div.photo_attachments"
And I should see "Look at this dog" within ".stream_element"
Scenario: preview a post with mentions
Given I expand the publisher
And I mention Alice in the publisher
And I press "Preview"
And I follow "Alice Smith"
Then I should see "Alice Smith"