datacite/bracco

View on GitHub
cypress/e2e/organization_admin/info.test.ts

Summary

Maintainability
F
4 days
Test Coverage
/// <reference types="cypress" />
/* eslint-disable no-undef */

function escapeRE(string) {
  return string.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
}

describe('ACCEPTANCE: ORGANIZATION_ADMIN | INFO', () => {
  const waitTime = 1000;
  const waitTime2 = 2000;
  const waitTime3 = 3000;

  before(function () {
    cy.login(Cypress.env('organization_admin_username'), Cypress.env('organization_admin_password'));
    cy.setCookie('_consent', 'true');
    cy.wait(waitTime2);
  })

  beforeEach(() => {
    // TBD - set up test environment
  });

  after(function () {
    // TBD - Clean up any resources created for the test. (only local dev and stage).
    // cy.log('TBD - CLEAN UP RESOURCES AFTER TEST');
    cy.clearAllSessionStorage()
  });

  it('is logged in to homepage', () => {
    cy.visit('/providers/datacite');
    cy.url().should('include', '/providers/datacite').then(() => {

      // Has Fabrica logo and correct navbar color
      cy.get('img.fabrica-logo').should('exist').should('have.attr', 'src').should('include', 'fabrica-logo.svg');
      cy.get('ul.navbar-nav').should('have.css', 'background-color', 'rgb(0, 177, 226)');

      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'DATACITE');

      cy.get('ul.nav-tabs li.active a').contains(/Info/i)
        .and('have.attr', 'href').and('include', '/providers/datacite');
      cy.get('ul.nav-tabs li a').contains(/Settings/i)
        .and('have.attr', 'href').and('include', '/providers/datacite/settings');
      cy.get('ul.nav-tabs li a').contains(/Contacts/i)
        .and('have.attr', 'href').and('include', '/providers/datacite/contacts');
      cy.get('ul.nav-tabs li a').contains(/Repositories/i)
        .and('have.attr', 'href').and('include', '/providers/datacite/repositories');
      cy.get('ul.nav-tabs li a').contains(/Prefixes/i)
        .and('have.attr', 'href').and('include', '/providers/datacite/prefixes');
      cy.get('ul.nav-tabs li a').contains(/DOIs/i)
        .and('have.attr', 'href').and('include', '/providers/datacite/dois');

      cy.get('#chart-repository-title').parent().parent('.panel').within((panel) => {
        cy.get('#chart-repository-title').contains(/Repositories/i);
        cy.get('.member.graphs a').and('have.attr', 'href')
          .and('include', '/providers/datacite/repositories');
        cy.get('#chart-repository');
      });

      cy.get('button.export-basic-metadata').should('not.exist');

      cy.get('#chart-doi-title').parent().parent('.panel').within((panel) => {
        cy.get('#chart-doi-title').contains(/DOIs/i);
        cy.get('.member.graphs a').and('have.attr', 'href')
          .and('include', '/providers/datacite/dois');
        cy.get('#chart-doi');
      });

        // Create DOI button
        cy.get('.create-doi-button').should('not.exist');
    });
  });

  it('/settings redirects to homepage', () => {
    cy.visit('/settings');
    cy.url().should('include', '/providers/datacite').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DATACITE');
    });
  });

  it('/contacts redirects to homepage', () => {
    cy.visit('/contacts');
    cy.url().should('include', '/providers/datacite').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DATACITE');
    });
  });

  it('/repositories redirects to homepage', () => {
    cy.visit('/repositories');
    cy.url().should('include', '/providers/datacite').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DATACITE');
    });
  });

  it('/prefixes redirects to homepage', () => {
    cy.visit('/prefixes');
    cy.url().should('include', '/providers/datacite').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DATACITE');
    });
  });

  it('/dois redirects to homepage', () => {
    cy.visit('/dois');
    cy.url().should('include', '/providers/datacite').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DATACITE');
    });
  });

  it('has password settings page', () => {
    cy.visit('/providers/datacite/change');
    cy.url().should('include', '/providers/datacite/change').then (() => {

      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'DATACITE');

      cy.get('h3').contains(/Set Password/i);

      cy.get('form').within(($form) => {
        cy.get('input#password-input-field').should('be.visible');
        cy.get('input#confirm-password-input-field').should('be.visible');
        cy.get('button[type=submit]').should('be.visible');
        cy.get('button').contains(/Cancel/i).should('be.visible')

        cy.get('button').contains(/Cancel/i).click({force: true});
      });
    })

    cy.on("url:changed", (newUrl) => {
      expect(newUrl).to.contain("/providers/datacite");
    });
  });

  // TBD - Could do more testing here. Only cursory testing for
  // presence of field objects. No testing of form behavior yet.
  it('has an organization settings page', () => {
    cy.visit('/providers/datacite/edit');
    cy.url().should('include', '/providers/datacite/edit').then(() => {

      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'DATACITE');

      cy.get('h3.edit').contains(/Update\s*Organization/);

      cy.get('form').within(($form) => {
        cy.get('h3.member-results').contains('Organization Information');
        cy.get('#member-id').should('be.visible');
        cy.get('#ror-id').should('be.visible');
        cy.get('#name').should('be.visible');
        cy.get('#display-name').should('be.visible');
        cy.get('#system-email').should('be.visible');
        cy.get('#group-email').should('be.visible');
        cy.get('#website').should('be.visible');
        cy.get('#twitter-handle').should('be.visible');
        cy.get('#country').should('be.visible');
        cy.get('#organization-type').should('be.visible');
        cy.get('#focus-area').should('be.visible');
        cy.get('#description').should('be.visible');

        cy.get('h3.member-results').contains('Contact Information');
        cy.get('.alert-info').contains(/Contacts are created.*and then assigned roles here./i )
        cy.get('#service-contact').should('be.visible');
        cy.get('#secondary-service-contact').should('be.visible');
        cy.get('#technical-contact').should('be.visible');
        cy.get('#secondary-technical-contact').should('be.visible');
        cy.get('.alert-warning').contains(/The contacts entered may receive notifications/i)
          .within(() => {
            cy.get('a[href*="privacy-policy"]').should('be.visible');
          }
        );
        cy.get('button#update-provider').should('be.visible');
        cy.get('button').contains(/Cancel/i).should('be.visible');

        cy.get('button').contains(/Cancel/i).click({force: true});
      })
    });
    cy.on("url:changed", (newUrl) => {
      expect(newUrl).to.contain("/providers/datacite");
    });
  });

  it.only('can see info when using capitalized identifier URL subdirectory', () => {
    cy.visit('/providers/DATACITE');
    cy.url().should('include', '/providers/DATACITE').then(() => {
      // Increase timeout because requests that return these totals can be slow.
      cy.wait(waitTime3*2)
      // Info page should be populated with non-zero graph data.
      // Iterate over each element to test.
      cy.get('.graphs > a').each(($el, index, $list) => {
        expect($el.text()).to.match(/^[0-9]+$/)
      })
    });
  });
});