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

file_upload.feature 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @file_upload
  2. Feature: File Upload
  3. In order to upload files
  4. As an content creator
  5. I want to upload and manage files
  6. Background:
  7. Given the website is configured
  8. Scenario: Upload file
  9. Given I am logged in as admin
  10. And I go to the files page
  11. When I click in the link "Upload File"
  12. And I fill in "Title" with "Cat meme"
  13. And I fill in "Description" with "Cats with lasers"
  14. And I upload the file "cats_with_lasers.jpg" to the field "upload_file"
  15. And I click in the button "Save"
  16. Then I should see "Upload was successfully created"
  17. And I should see the image "cats_with_lasers.jpg"
  18. Scenario: List files
  19. Given I am logged in as admin
  20. And the following files where uploaded
  21. | title | description | file |
  22. | Aliens | History Chanel guy | aliens_meme.jpg |
  23. | Cats | Cats with lasers | cats_with_lasers.jpg |
  24. When I go to the files page
  25. Then I should see "Aliens"
  26. And I should see the image "aliens_meme.jpg"
  27. And I should see "Cats"
  28. And I should see the image "cats_with_lasers.jpg"
  29. Scenario: Edit file
  30. Given I am logged in as admin
  31. And the following files where uploaded
  32. | title | description | file |
  33. | Aliens | History Chanel guy | aliens_meme.jpg |
  34. | Cats | Cats with lasers | cats_with_lasers.jpg |
  35. When I go to the files page
  36. And I click in the link "Aliens"
  37. And I click in the link "Edit"
  38. And I fill in "Title" with "Crazy Dude"
  39. And I fill in "Description" with "I see aliens"
  40. And I click in the button "Save"
  41. Then I should see the image "aliens_meme.jpg"
  42. And I should see "Crazy Dude"
  43. And I should see "I see aliens"
  44. Scenario: Delete file
  45. Given I am logged in as admin
  46. And the following files where uploaded
  47. | title | description | file |
  48. | Aliens | History Chanel guy | aliens_meme.jpg |
  49. | Cats | Cats with lasers | cats_with_lasers.jpg |
  50. When I go to the files page
  51. And I click in the link "Aliens"
  52. And I click in the link "Delete"
  53. Then I should see "Cats"
  54. And I should see the image "cats_with_lasers.jpg"
  55. And I should not see "Aliens"