superset/superset-frontend/cypress-base/cypress/integration/dashboard/fav_star.test.js
Phillip Kelley-Dotson 95b9e2e185
refactor: icon to icons for favestar component (#15371)
* initial commit

* initial commit

* fix cypress test

* fix favstar cypress test

* fix card view

* fix other card view
2021-06-25 09:48:22 -07:00

64 lines
2.3 KiB
JavaScript

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import {
WORLD_HEALTH_DASHBOARD,
CHECK_DASHBOARD_FAVORITE_ENDPOINT,
} from './dashboard.helper';
describe('Dashboard add to favorite', () => {
let isFavoriteDashboard = false;
beforeEach(() => {
cy.login();
cy.intercept(CHECK_DASHBOARD_FAVORITE_ENDPOINT).as('countFavStar');
cy.visit(WORLD_HEALTH_DASHBOARD);
cy.wait('@countFavStar').then(xhr => {
isFavoriteDashboard = xhr.response.body.count === 1;
});
});
it('should allow favor/unfavor', () => {
if (!isFavoriteDashboard) {
cy.get('[data-test="fave-unfave-icon"]')
.find('span')
.should('have.attr', 'aria-label', 'favorite-unselected');
cy.get('[data-test="fave-unfave-icon"]').trigger('click');
cy.get('[data-test="fave-unfave-icon"]')
.find('span')
.should('have.attr', 'aria-label', 'favorite-selected')
.and('not.have.attr', 'aria-label', 'favorite-unselected');
} else {
cy.get('[data-test="fave-unfave-icon"]')
.find('span')
.should('have.attr', 'aria-label', 'favorite-unselected')
.and('not.have.attr', 'aria-label', 'favorite-selected');
cy.get('[data-test="fave-unfave-icon"]').trigger('click');
cy.get('[data-test="fave-unfave-icon"]')
.find('span')
.should('have.attr', 'aria-label', 'favorite-unselected')
.and('not.have.attr', 'aria-label', 'favorite-selected');
}
// reset to original fav state
cy.get('[data-test="fave-unfave-icon"]').trigger('click');
});
});