streaming.feature 713 B

1234567891011121314151617181920212223242526
  1. # language: en
  2. @performance @streaming
  3. Feature: Streaming transfers consume a fixed amount of memory
  4. Scenario Outline: Streaming uploads are O(1) in memory usage
  5. Given I have a <bytes> byte file
  6. And I take a snapshot of my resources
  7. When I upload the file
  8. Then I should not have leaked any resources
  9. Examples:
  10. | bytes |
  11. | 2097152 |
  12. | 209715200 |
  13. Scenario Outline: Streaming download are O(1) in memory usage
  14. Given I have a <bytes> byte file
  15. And I take a snapshot of my resources
  16. When I upload the file
  17. And then download the file
  18. Then I should not have leaked any resources
  19. Examples:
  20. | bytes |
  21. | 2097152 |
  22. | 209715200 |