Feature: asset management get stream url

  Scenario: Valid response should be obtained once stream url of an existing file is requested
    When existent file is requested
    Then a valid stream url should be obtained

  Scenario: Valid response should be obtained once stream url of an existing file is requested by admin
    When existent file is requested by admin
    Then a valid stream url should be obtained

  Scenario: Error should be obtained once stream url of an unexisting file is requested
    When non-existent file is requested
    Then an 404 error should be obtained in get stream response

  Scenario: Error should be obtained if a file not owned by account is requested
    When not-owned file is requested
    Then an 403 error should be obtained in get stream response
