datacite/bracco

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

Summary

Maintainability
F
5 days
Test Coverage

Similar blocks of code found in 3 locations. Consider refactoring.
Open

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

      cy.get('h2.work').contains('DataCite');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 2 other locations - About 1 day to fix
cypress/e2e/consortium_admin/info.test.ts on lines 123..145
cypress/e2e/organization_admin/info.test.ts on lines 109..131

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 296.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

      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', '/dois');
        cy.get('#chart-doi');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 3 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 51..56
cypress/e2e/consortium_admin/info.test.ts on lines 69..74
cypress/e2e/organization_admin/info.test.ts on lines 62..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 101.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 5 locations. Consider refactoring.
Open

      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', '/repositories');
        cy.get('#chart-repository');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 4 other locations - About 3 hrs to fix
cypress/e2e/consortium_admin/info.test.ts on lines 55..60
cypress/e2e/consortium_admin/info.test.ts on lines 62..67
cypress/e2e/organization_admin/info.test.ts on lines 53..58
cypress/e2e/staff_admin/info.test.ts on lines 52..57

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 99.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 5 locations. Consider refactoring.
Open

      cy.get('#chart-member-title').parent().parent('.panel').within((panel) => {
        cy.get('#chart-member-title').contains(/Members/i);
        cy.get('.member.graphs a').and('have.attr', 'href')
          .and('include', '/providers');
        cy.get('#chart-member');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 4 other locations - About 3 hrs to fix
cypress/e2e/consortium_admin/info.test.ts on lines 55..60
cypress/e2e/consortium_admin/info.test.ts on lines 62..67
cypress/e2e/organization_admin/info.test.ts on lines 53..58
cypress/e2e/staff_admin/info.test.ts on lines 59..64

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 99.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/providers - no redirect', () => {
    cy.visit('/providers');
    cy.url().should('include', '/providers').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 118..124
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/settings - no redirect', () => {
    cy.visit('/settings');
    cy.url().should('include', '/settings').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 118..124
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/contacts - no redirect', () => {
    cy.visit('/contacts');
    cy.url().should('include', '/contacts').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 118..124
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/repositories - no redirect', () => {
    cy.visit('/repositories');
    cy.url().should('include', '/repositories').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 118..124
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/dois - no redirect', () => {
    cy.visit('/dois');
    cy.url().should('include', '/dois').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 118..124

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/prefixes - no redirect', () => {
    cy.visit('/prefixes');
    cy.url().should('include', '/prefixes').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 102..108
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

  it('/users - no redirect', () => {
    cy.visit('/users');
    cy.url().should('include', '/users').then (() => {
      cy.get('h2.work').contains('DataCite');
      cy.get('a#account_menu_link').should('contain', 'ADMIN');
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 8 other locations - About 3 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 78..84
cypress/e2e/client_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 78..84
cypress/e2e/staff_admin/info.test.ts on lines 86..92
cypress/e2e/staff_admin/info.test.ts on lines 94..100
cypress/e2e/staff_admin/info.test.ts on lines 110..116
cypress/e2e/staff_admin/info.test.ts on lines 118..124
cypress/e2e/staff_admin/info.test.ts on lines 126..132

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 95.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 19 locations. Consider refactoring.
Open

  before(function () {
    cy.login(Cypress.env('staff_admin_username'), Cypress.env('staff_admin_password'));
    cy.setCookie('_consent', 'true');
    cy.wait(waitTime2);
  })
Severity: Major
Found in cypress/e2e/staff_admin/info.test.ts and 18 other locations - About 1 hr to fix
cypress/e2e/client_admin/doi.test.ts on lines 19..23
cypress/e2e/client_admin/info.test.ts on lines 14..18
cypress/e2e/client_admin/prefixes.test.ts on lines 10..14
cypress/e2e/client_admin/settings.test.ts on lines 8..12
cypress/e2e/consortium_admin/contact.test.ts on lines 23..27
cypress/e2e/consortium_admin/doi.test.ts on lines 15..19
cypress/e2e/consortium_admin/info.test.ts on lines 13..17
cypress/e2e/consortium_admin/organizations.test.ts on lines 10..14
cypress/e2e/consortium_admin/prefixes.test.ts on lines 10..14
cypress/e2e/organization_admin/contact.test.ts on lines 23..27
cypress/e2e/organization_admin/doi.test.ts on lines 13..17
cypress/e2e/organization_admin/info.test.ts on lines 13..17
cypress/e2e/organization_admin/prefixes.test.ts on lines 10..14
cypress/e2e/staff_admin/admin.test.ts on lines 8..12
cypress/e2e/staff_admin/contact.test.ts on lines 26..30
cypress/e2e/staff_admin/prefix.test.ts on lines 8..12
cypress/e2e/staff_admin/repositories.test.ts on lines 8..12
cypress/e2e/staff_admin/settings.test.ts on lines 8..12

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 63.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

There are no issues that match your filters.

Category
Status