A website template with lots of features, built with ruby on rails.

blog.feature 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @blog
  2. Feature: Blog Posts
  3. In order to make a blog
  4. As an author
  5. I want to create and manage blog psots
  6. Background:
  7. Given the website is configured
  8. And the following list of blog posts
  9. | title | content | published | description | slug |
  10. | Hello World | Welcome to the website | true | First Post | hello_world |
  11. | Test 001 | 1 2 3 testing | true | Testing the website | test_001 |
  12. Scenario: Blog posts list
  13. When I go to the blog page
  14. Then I should see "Hello World"
  15. And I should see "First Post"
  16. And I should see "Test 001"
  17. And I should see "Testing the website"
  18. Scenario: Blog post page
  19. When I go to the blog page
  20. And I click in the link "Hello World"
  21. Then I should see "Hello World"
  22. And I should see "Welcome to the website"
  23. And The current url should be "/blog/hello_world"
  24. Scenario: New blog post
  25. Given I am logged in as admin
  26. Then I click in the link "Admin Panel"
  27. And I click in the link "Posts"
  28. And The current url should be "/admin/posts"
  29. Then I click in the link "New Post"
  30. And The current url should be "/admin/posts/new"
  31. Then I fill in "Title" with "Test 002"
  32. And I fill in "Slug" with "test_002"
  33. And I fill in "Description" with "Another blog post test"
  34. And I fill in "post_content" with "This is blog post test number 002!"
  35. And I click in the button "Save"
  36. Then I should see "Test 002"
  37. And I should see "This is blog post test number 002!"
  38. And I should see "Admin"
  39. Scenario: Delete blog post
  40. Given I am logged in as admin
  41. Then I click in the link "Admin Panel"
  42. Then I click in the link "Posts"
  43. And The current url should be "/admin/posts"
  44. Then I should see "Hello World"
  45. And I should see "Test 001"
  46. Then I click in the link "delete_hello_world"
  47. Then I should see "Test 001"
  48. And I should not see "Hello World"
  49. Scenario: Only admin users can see edit blog post button
  50. Given I go to the blog page
  51. And I click in the link "Hello World"
  52. Then I should not see the link "edit_hello_world"
  53. Then I log in as admin
  54. And I go to the blog page
  55. And I click in the link "Hello World"
  56. Then I should see the link "edit_hello_world"
  57. Scenario: Only admin users can access the blog posts admin page
  58. Given I go to the blog page
  59. Then I should not see the link "navlink_admin_panel"
  60. Then I go to the admin blog posts page
  61. And I should see "You dont have permission to access that page!"
  62. Then I log in as admin
  63. And I go to the admin blog posts page
  64. Then The current url should be "/admin/posts"