resources/assets/js/stores/songStore.spec.ts

Summary

Maintainability
F
3 days
Test Coverage

Function test has 234 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  protected test () {
    it('gets a song by ID', () => {
      const song = reactive(factory<Song>('song', { id: 'foo' }))
      songStore.vault.set('foo', reactive(song))
      songStore.vault.set('bar', reactive(factory<Song>('song', { id: 'bar' })))
Severity: Major
Found in resources/assets/js/stores/songStore.spec.ts - About 1 day to fix

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

    import { reactive } from 'vue'
    import isMobile from 'ismobilejs'
    import UnitTestCase from '@/__tests__/UnitTestCase'
    import { expect, it } from 'vitest'
    import factory from '@/__tests__/factory'
    Severity: Minor
    Found in resources/assets/js/stores/songStore.spec.ts - About 2 hrs to fix

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

          it('resolves a song', async () => {
            const song = factory<Song>('song')
            const getMock = this.mock(http, 'get').mockResolvedValueOnce(song)
      
            expect(await songStore.resolve(song.id)).toEqual(song)
      Severity: Major
      Found in resources/assets/js/stores/songStore.spec.ts and 2 other locations - About 6 hrs to fix
      resources/assets/js/stores/albumStore.spec.ts on lines 81..91
      resources/assets/js/stores/artistStore.spec.ts on lines 82..92

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

      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('fetches for artist', async () => {
            const songs = factory<Song>('song', 3)
            const artist = factory<Artist>('artist', { id: 42 })
            const getMock = this.mock(http, 'get').mockResolvedValueOnce(songs)
            const syncMock = this.mock(songStore, 'syncWithVault', songs)
      Severity: Major
      Found in resources/assets/js/stores/songStore.spec.ts and 1 other location - About 5 hrs to fix
      resources/assets/js/stores/songStore.spec.ts on lines 199..209

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

      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('fetches for album', async () => {
            const songs = factory<Song>('song', 3)
            const album = factory<Album>('album', { id: 42 })
            const getMock = this.mock(http, 'get').mockResolvedValueOnce(songs)
            const syncMock = this.mock(songStore, 'syncWithVault', songs)
      Severity: Major
      Found in resources/assets/js/stores/songStore.spec.ts and 1 other location - About 5 hrs to fix
      resources/assets/js/stores/songStore.spec.ts on lines 211..221

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

      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

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

            const getMock = this.mock(http, 'get').mockResolvedValueOnce({
              data: songs,
              links: {
                next: 'http://test/api/v1/songs?page=3'
              },
      Severity: Minor
      Found in resources/assets/js/stores/songStore.spec.ts and 1 other location - About 50 mins to fix
      resources/assets/js/stores/songStore.spec.ts on lines 288..296

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

      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

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

            const getMock = this.mock(http, 'get').mockResolvedValueOnce({
              data: songs,
              links: {
                next: 'http://test/api/v1/songs?page=3'
              },
      Severity: Minor
      Found in resources/assets/js/stores/songStore.spec.ts and 1 other location - About 50 mins to fix
      resources/assets/js/stores/songStore.spec.ts on lines 265..273

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

      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