Feature: Video Rejection and Approval
  
  @ows_video
  @frontend_video
  Scenario: Contributor validation / Genre for non-music video types
    Given I am on an in-progress video product page
    When I try to save a contributor without selecting a role
    Then I see a warning saying both contributor fields must be present
    When I try to save a contributor role without selecting a contributor
    Then I see a warning saying both contributor fields must be present
    When I set the video type to Behind the Scenes
    Then the genre select list should be automatically set to Video
    And the subgenre select list can be set to Documentary

  @ows_video
  @frontend_video
  Scenario: Reject a music video product
    Given a submitted music video product
    And I am on the Video::VideoApprovalPage for the product
    Then I see that the product delivery links go to the appropriate pages
    When I reject the video product
    Then the video product should be rejected
    
  @ows_video
  @frontend_video
  Scenario: Create and deliver a music video product
    Given I am on the Video::VideoPage
    And I have valid Video Product data
    When I upload a valid music video
    Then the video starts the validation process
    When I fill out the video metadata fields and refresh
    Then the video metadata is still present after the refresh
    When the video finishes validating
    Then the video preview should appear
    When I submit the video product
    Then the video product is queued up for approval
    Given I am on the Video::VideoApprovalPage for the product
#    When I edit the video's project info
#    Then I see the updated project info
    When I approve the video product
    Then the video product should be in content
