import { testA11y } from 'cypress/support/utils';

describe('Admin Workflow Page', () => {
  beforeEach(() => {
    // Must login as an Admin to see the page
    cy.visit('/admin/workflow');
    cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
  });

  it('should pass accessibility tests', () => {
    // Page must first be visible
    cy.get('ds-admin-workflow-page').should('be.visible');
    // At least one search result should be displayed
    cy.get('[data-test="list-object"]').should('be.visible');
    // Click each filter toggle to open *every* filter
    // (As we want to scan filter section for accessibility issues as well)
    cy.get('[data-test="filter-toggle"]').click({ multiple: true });
    // Analyze <ds-admin-workflow-page> for accessibility issues
    testA11y('ds-admin-workflow-page');
  });
});