datacite/bracco

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

Summary

Maintainability
F
4 days
Test Coverage

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

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

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

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', '/providers/dc/dois');
        cy.get('#chart-doi');
Severity: Major
Found in cypress/e2e/consortium_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/organization_admin/info.test.ts on lines 62..67
cypress/e2e/staff_admin/info.test.ts on lines 66..71

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', '/providers/dc/repositories');
        cy.get('#chart-repository');
Severity: Major
Found in cypress/e2e/consortium_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/organization_admin/info.test.ts on lines 53..58
cypress/e2e/staff_admin/info.test.ts on lines 52..57
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 5 locations. Consider refactoring.
Open

      cy.get('#chart-organization-title').parent().parent('.panel').within((panel) => {
        cy.get('#chart-organization-title').contains(/Organizations/i);
        cy.get('.member.graphs a').and('have.attr', 'href')
          .and('include', '/providers/dc/organizations');
        cy.get('#chart-organization');
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 4 other locations - About 3 hrs to fix
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
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 2 locations. Consider refactoring.
Open

  it.only('can see info when using capitalized identifier URL subdirectory', () => {
    cy.visit('/providers/DC');
    cy.url().should('include', '/providers/DC').then(() => {
      
      cy.wait(waitTime3)
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 1 other location - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 190..198

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 93.

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 12 locations. Consider refactoring.
Open

  it('/settings redirects to homepage', () => {
    cy.visit('/settings');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 88..93
cypress/e2e/consortium_admin/info.test.ts on lines 95..100
cypress/e2e/consortium_admin/info.test.ts on lines 102..107
cypress/e2e/consortium_admin/info.test.ts on lines 109..114
cypress/e2e/consortium_admin/info.test.ts on lines 116..121
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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 12 locations. Consider refactoring.
Open

  it('/providers redirects to homepage', () => {
    cy.visit('/providers');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 81..86
cypress/e2e/consortium_admin/info.test.ts on lines 95..100
cypress/e2e/consortium_admin/info.test.ts on lines 102..107
cypress/e2e/consortium_admin/info.test.ts on lines 109..114
cypress/e2e/consortium_admin/info.test.ts on lines 116..121
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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 12 locations. Consider refactoring.
Open

  it('/contacts redirects to homepage', () => {
    cy.visit('/contacts');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 81..86
cypress/e2e/consortium_admin/info.test.ts on lines 88..93
cypress/e2e/consortium_admin/info.test.ts on lines 102..107
cypress/e2e/consortium_admin/info.test.ts on lines 109..114
cypress/e2e/consortium_admin/info.test.ts on lines 116..121
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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 12 locations. Consider refactoring.
Open

  it('/prefixes redirects to homepage', () => {
    cy.visit('/prefixes');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 81..86
cypress/e2e/consortium_admin/info.test.ts on lines 88..93
cypress/e2e/consortium_admin/info.test.ts on lines 95..100
cypress/e2e/consortium_admin/info.test.ts on lines 102..107
cypress/e2e/consortium_admin/info.test.ts on lines 116..121
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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 12 locations. Consider refactoring.
Open

  it('/dois redirects to homepage', () => {
    cy.visit('/dois');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 81..86
cypress/e2e/consortium_admin/info.test.ts on lines 88..93
cypress/e2e/consortium_admin/info.test.ts on lines 95..100
cypress/e2e/consortium_admin/info.test.ts on lines 102..107
cypress/e2e/consortium_admin/info.test.ts on lines 109..114
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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 12 locations. Consider refactoring.
Open

  it('/repositories redirects to homepage', () => {
    cy.visit('/repositories');
    cy.url().should('include', '/providers/dc').then (() => {
      cy.get('a#account_menu_link').should('contain', 'DC');
    });
Severity: Major
Found in cypress/e2e/consortium_admin/info.test.ts and 11 other locations - About 2 hrs to fix
cypress/e2e/client_admin/info.test.ts on lines 71..76
cypress/e2e/consortium_admin/info.test.ts on lines 81..86
cypress/e2e/consortium_admin/info.test.ts on lines 88..93
cypress/e2e/consortium_admin/info.test.ts on lines 95..100
cypress/e2e/consortium_admin/info.test.ts on lines 109..114
cypress/e2e/consortium_admin/info.test.ts on lines 116..121
cypress/e2e/organization_admin/info.test.ts on lines 74..79
cypress/e2e/organization_admin/info.test.ts on lines 81..86
cypress/e2e/organization_admin/info.test.ts on lines 88..93
cypress/e2e/organization_admin/info.test.ts on lines 95..100
cypress/e2e/organization_admin/info.test.ts on lines 102..107

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 76.

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('consortium_admin_username'), Cypress.env('consortium_admin_password'));
    cy.setCookie('_consent', 'true');
    cy.wait(waitTime2);
  })
Severity: Major
Found in cypress/e2e/consortium_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/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/info.test.ts on lines 12..16
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