comment.feature
2.05 KB
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
Feature: comment
As a visitor
I want to post comments
Background:
Given the following users
| login |
| booking |
And the following articles
| owner | name |
| booking | article to comment |
Scenario: not post a comment without javascript
Given I am on /booking/article-to-comment
And I fill in "Name" with "Joey Ramone"
And I fill in "e-Mail" with "joey@ramones.com"
And I fill in "Title" with "Hey ho, let's go!"
And I fill in "Enter your comment" with "Hey ho, let's go!"
When I press "Post comment"
Then I should not see "Hey ho, let's go"
@selenium
Scenario: post a comment while not authenticated
Given I am on /booking/article-to-comment
And I fill in "Name" with "Joey Ramone"
And I fill in "e-Mail" with "joey@ramones.com"
And I fill in "Title" with "Hey ho, let's go!"
And I fill in "Enter your comment" with "Hey ho, let's go!"
When I press "Post comment"
Then I should see "Hey ho, let's go"
@selenium
Scenario: post comment while authenticated
Given I am logged in as "booking"
And I am on /booking/article-to-comment
And I fill in "Title" with "Hey ho, let's go!"
And I fill in "Enter your comment" with "Hey ho, let's go!"
When I press "Post comment"
Then I should see "Hey ho, let's go"
@selenium
Scenario: redirect to right place after comment a picture
Given the following files
| owner | file | mime |
| booking | rails.png | image/png |
Given I am logged in as "booking"
And I am on /booking/rails.png?view=true
And I fill in "Title" with "Hey ho, let's go!"
And I fill in "Enter your comment" with "Hey ho, let's go!"
When I press "Post comment"
Then I should be exactly on /booking/rails.png?view=true
@selenium
Scenario: show error messages when make a blank comment
Given I am logged in as "booking"
And I am on /booking/article-to-comment
When I press "Post comment"
Then I should see "Title can't be blank"
And I should see "Body can't be blank"