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

maintenance_mode.feature 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Feature: Maintenance Mode
  2. In order to change things in the website
  3. As an admin
  4. I want to close the website for visitors
  5. Background:
  6. Given the website is configured
  7. Scenario: Enable maintenance mode
  8. Given I am logged in as admin
  9. When I go to the configurations page
  10. And the page should have a "input" called "info_maintenance_mode"
  11. Then I check the checkbox called "info_maintenance_mode"
  12. And I fill in "info_maintenance_title" with "Website under maintenance"
  13. And I fill in "info_maintenance_message" with "Please check back soon"
  14. And I click in the button "Update Config"
  15. Then I should see "Configurations saved successfully"
  16. And I go to the homepage
  17. And I should not see "Website under maintenance"
  18. Then I click in the link "Logout"
  19. And I go to the homepage
  20. And I should see "Website under maintenance"
  21. And I should see "Please check back soon"
  22. Scenario: Visitor tries to access page during maintenance mode
  23. Given I am not logged in
  24. And Maintenance mode is activated
  25. When I go to the blog page
  26. Then I should see "Website under maintenance"
  27. Scenario: User login during maintenance mode
  28. Given I am not logged in
  29. And Maintenance mode is activated
  30. When I log in as user
  31. Then I should not see "Website under maintenance"
  32. Scenario: Disable maintenance mode
  33. Given I am not logged in
  34. And Maintenance mode is activated
  35. When I log in as admin
  36. And I go to the configurations page
  37. And I uncheck the checkbox called "info_maintenance_mode"
  38. And I click in the button "Update Config"
  39. And I click in the link "Logout"
  40. And I go to the homepage
  41. Then I should not see "Website under maintenance"