# SUP-290 - Integration Sinbad table secondary sales UI ## Test Scenarios #### Test Scenario 1 ```gherkin Scenario Outline: As an Admin, I should be able to see shown data based on options chosen in `Data Option` Given the user has logged in as Admin And the user opened Data Option menu section pop-up And the user has chosen Sinbad Data Source And the user is on Secondary Sales Data When the user choose <timeFrameFilter> And the user choose <segmentFilter> And the user choose <measureNameFilter> And the user clicks `Apply` Then show data filtered based on chosen filters Examples: | timeFrameFilter | segmentFilter | measureNameFilter | | ----------------------- | ------------------------------------ | ---------------------------------------- | | year | buyingStore | stockIn | | month | productBase | stockOut | | quarter | categoryBase | stockOutValue | | week | buyingStore+productBase | priceUnit | | year+month | buyingStore+categoryBase | stockIn+stockOut | | year+quarter | productBase+categoryBase | stockOutvalue+priceUnit | | year+week | buyingStore+productBase+categoryBase | stockIn+stockOutValue | | year+month+quarter | buyingStore+productBase+categoryBase | stockIn+priceUnit | | year+month+week | buyingStore+productBase+categoryBase | stockIn+stockOut+stockOutValue | | year+quarter+week | buyingStore+productBase+categoryBase | stockIn+stockOut+priceUnit | | year+month+quarter+week | buyingStore+productBase+categoryBase | stockIn+stockOutValue+priceUnit | | month+quarter | buyingStore+productBase+categoryBase | stockOut+stockOutValue | | month+week | buyingStore+productBase+categoryBase | stockOut+priceUnit | | month+quarter+week | buyingStore+productBase+categoryBase | stockOut+stockOutValue+priceUnit | | quarter+week | buyingStore+productBase+categoryBase | stockIn+stockOut+stockOutValue+priceUnit | ``` #### Test Scenario 2 ```gherkin Scenario: Given And When Then ``` #### Test Scenario 3 ```gherkin Scenario: Given And When Then ``` #### Test Scenario 4 ```gherkin Scenario: Given And When Then ``` ###### tags: `Sprint 7` `SBP`