@android
Feature: Android My Favorites screen basic flow

Background: User is logged in
    Given a valid test user
    And I login to the android app
    When I navigate to the My Favorites screen

Scenario: Song tab is displayed by default on My Favorites screen
    Then The Song tab is displayed as the default tab
    Given The Songs tab in My Favorites has no existing favorites
    Then The screen should display Recommended Songs

Scenario: Display of Recommended Products in the Products Tab on My Favorites Screen
    When I navigate to the Products tab on the My Favorites screen
    Given The Products tab in My Favorites has no existing favorites
    Then The screen should display Recommended Products

Scenario: Display of Recommended Artists in the Artists Tab on My Favorites Screen
    When I navigate to the Artists tab on the My Favorites screen
    Given The Artists tab in My Favorites has no existing favorites

Scenario: Display of Recommended Labels in the Labels Tab on My Favorites Screen
    When I navigate to the Labels tab on the My Favorites screen
    Given The Labels tab in My Favorites has no existing favorites
    Then The screen should display Recommended Labels

Scenario: Songs starred from different app sections are displayed in My Favorites
    # TODO: Will be created when GO-4842 will be fixed

Scenario: Products starred from different app sections are displayed in My Favorites
    When I navigate to the My Favorites screen
      And I navigate to the Products tab on the My Favorites screen
      And I star a product from the Recommended Products section
    When I navigate to the home tab
      And I navigate to the products tab in my catalog
      And I star another product from My Catalog
    When I navigate to the search tab
      # TODO: Re-enable once bug GO-4892 is fixed
#      And I search for "Money"
#      Then I can see product Money with id 320226 in my search results
#      And Tapping product Money with id 320226 takes me to the product page
#      And I star current product
    When I navigate to the My Favorites screen
      And I navigate to the Products tab on the My Favorites screen
      Then All starred products should be displayed in My Favorites
    When I unstar the first product in My Favorites and tap Undo
      Then All starred products should be displayed in My Favorites
    When I navigate to the home tab
      And I unstar current product
      Then I should be able to navigate back
    When I navigate to the search tab
      # TODO: Re-enable once bug GO-4892 is fixed
#      And I unstar current product
#      Then I should be able to navigate back
    When I navigate to the My Favorites screen
      And I navigate to the Products tab on the My Favorites screen
      Then Only the product restored with Undo should be displayed in My Favorites
    When I unstar the first product in My Favorites
      Then No favorite products should be displayed in My Favorites

Scenario: Artists starred from different app sections are displayed in My Favorites
    When I navigate to the home tab
      And I navigate to the artists tab
      And I star another artist from My Catalog
    When I navigate to the search tab
      And I search for "Somebody's Child"
      Then I can see artist Somebody's Child with id cc5f5a63-2bff-4dcb-8c9e-b4a9c6e4f9c4 in my search results
      And Tapping artist Somebody's Child with id cc5f5a63-2bff-4dcb-8c9e-b4a9c6e4f9c4 takes me to the artist page
      And I star current artist
    When I navigate to the My Favorites screen
      And I navigate to the Artists tab on the My Favorites screen
      Then All starred artists should be displayed in My Favorites
    When I unstar the first artist in My Favorites and tap Undo
      Then All starred artists should be displayed in My Favorites
    When I navigate to the search tab
      And I unstar current artist
    When I navigate to the My Favorites screen
      And I navigate to the Artists tab on the My Favorites screen
      Then Only the artist restored with Undo should be displayed in My Favorites
    When I unstar the first artist in My Favorites
      Then No favorite artists should be displayed in My Favorites

@skip_if_sme
Scenario: Label starred from Recommended Labels is displayed in My Favorites
    When I navigate to the Labels tab on the My Favorites screen
    Given The Labels tab in My Favorites has no existing favorites
    When I star the first label from the Recommended Labels section
    Then The starred label should be displayed in My Favorites
    When I unstar all labels in My Favorites
    Then No favorite labels should be displayed in My Favorites
