aurelia/aurelia

View on GitHub
packages/__tests__/src/i18n/i18n.spec.ts

Summary

Maintainability
F
1 wk
Test Coverage

File i18n.spec.ts has 362 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { I18N, I18nInitOptions, Signals } from '@aurelia/i18n';
import { EventAggregator } from '@aurelia/kernel';
import { nowrap } from '@aurelia/runtime';
import { assert, MockSignaler, createFixture } from '@aurelia/testing';
import { ISignaler } from '@aurelia/runtime-html';
Severity: Minor
Found in packages/__tests__/src/i18n/i18n.spec.ts - About 4 hrs to fix

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

      describe('createDateTimeFormat', function () {
        it('returns Intl.DateTimeFormat with the active locale', async function () {
          const { sut } = await $createFixture();
    
          const nf = sut.createDateTimeFormat();
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 1 other location - About 1 day to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 122..146

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

    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

      describe('createNumberFormat', function () {
        it('returns Intl.NumberFormat with the active locale', async function () {
          const { sut } = await $createFixture();
    
          const nf = sut.createNumberFormat();
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 1 other location - About 1 day to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 174..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 302.

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

            it(`works for time difference in minutes - ${multiplier > 0 ? 'future' : 'past'} - ${value > 1 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setMinutes(input.getMinutes() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 236..246
    packages/__tests__/src/i18n/i18n.spec.ts on lines 260..270
    packages/__tests__/src/i18n/i18n.spec.ts on lines 272..282
    packages/__tests__/src/i18n/i18n.spec.ts on lines 309..319
    packages/__tests__/src/i18n/i18n.spec.ts on lines 325..335

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

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

            it(`works for time difference in years - ${multiplier > 0 ? 'future' : 'past'} - ${value > 1 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setFullYear(input.getFullYear() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 236..246
    packages/__tests__/src/i18n/i18n.spec.ts on lines 248..258
    packages/__tests__/src/i18n/i18n.spec.ts on lines 260..270
    packages/__tests__/src/i18n/i18n.spec.ts on lines 272..282
    packages/__tests__/src/i18n/i18n.spec.ts on lines 325..335

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

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

            it(`works for time difference in seconds - ${multiplier > 0 ? 'future' : 'past'} - ${value > 1 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setSeconds(input.getSeconds() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 248..258
    packages/__tests__/src/i18n/i18n.spec.ts on lines 260..270
    packages/__tests__/src/i18n/i18n.spec.ts on lines 272..282
    packages/__tests__/src/i18n/i18n.spec.ts on lines 309..319
    packages/__tests__/src/i18n/i18n.spec.ts on lines 325..335

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

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

            it(`works for time difference in hours - ${multiplier > 0 ? 'future' : 'past'} - ${value > 1 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setHours(input.getHours() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 236..246
    packages/__tests__/src/i18n/i18n.spec.ts on lines 248..258
    packages/__tests__/src/i18n/i18n.spec.ts on lines 272..282
    packages/__tests__/src/i18n/i18n.spec.ts on lines 309..319
    packages/__tests__/src/i18n/i18n.spec.ts on lines 325..335

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

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

            it(`works for time difference in weeks - ${multiplier > 0 ? 'future' : 'past'} - ${value > 7 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setDate(input.getDate() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 236..246
    packages/__tests__/src/i18n/i18n.spec.ts on lines 248..258
    packages/__tests__/src/i18n/i18n.spec.ts on lines 260..270
    packages/__tests__/src/i18n/i18n.spec.ts on lines 272..282
    packages/__tests__/src/i18n/i18n.spec.ts on lines 309..319

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

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

            it(`works for time difference in days - ${multiplier > 0 ? 'future' : 'past'} - ${value > 1 ? 'plural' : 'singular'}`, async function () {
              const { sut } = await $createFixture();
              const input = new Date();
              input.setDate(input.getDate() + multiplier * value);
              assert.equal(
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 5 other locations - About 5 hrs to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 236..246
    packages/__tests__/src/i18n/i18n.spec.ts on lines 248..258
    packages/__tests__/src/i18n/i18n.spec.ts on lines 260..270
    packages/__tests__/src/i18n/i18n.spec.ts on lines 309..319
    packages/__tests__/src/i18n/i18n.spec.ts on lines 325..335

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

    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('formats a given number considering it as UNIX timestamp', async function () {
          const { sut } = await $createFixture();
    
          assert.equal(sut.df(0), new Date(0).toLocaleDateString('en'));
        });
    Severity: Major
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 1 other location - About 1 hr to fix
    packages/__tests__/src/i18n/df/date-format-value-converter.spec.ts on lines 53..56

    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

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

            {
              type: 'postProcessor',
              name: 'custom2',
              process: function (value: string, _key: string, _options: any, _translator: any) { return value; }
            }
    Severity: Minor
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 1 other location - About 30 mins to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 62..66

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

    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

            {
              type: 'postProcessor',
              name: 'custom1',
              process: function (value: string, _key: string, _options: any, _translator: any) { return value; }
            },
    Severity: Minor
    Found in packages/__tests__/src/i18n/i18n.spec.ts and 1 other location - About 30 mins to fix
    packages/__tests__/src/i18n/i18n.spec.ts on lines 67..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 45.

    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