asteris-llc/converge

View on GitHub

Showing 615 of 615 total issues

Function expandSwitchMacro has 6 return statements (exceeds 4 allowed).
Open

func expandSwitchMacro(data []byte, current *source, n *parse.Node, g *graph.Graph) (*graph.Graph, error) {
    if !control.IsSwitchNode(n) {
        return g, nil
    }
    switchObj, err := control.NewSwitch(n, data)
Severity: Major
Found in load/nodes.go - About 40 mins to fix

    Function loadKeyring has 6 return statements (exceeds 4 allowed).
    Open

    func loadKeyring(ks *Keystore) (openpgp.KeyRing, error) {
        var keyring openpgp.EntityList
        trustedKeys := make(map[string]*openpgp.Entity)
    
        for _, p := range []string{ks.SystemPath, ks.UserPath, ks.LocalPath} {
    Severity: Major
    Found in keystore/keystore.go - About 40 mins to fix

      Method Printer.DrawNode has 6 return statements (exceeds 4 allowed).
      Open

      func (p *Printer) DrawNode(g *graph.Graph, id string) (pp.Renderable, error) {
          meta, ok := g.Get(id)
          if !ok {
              return pp.HiddenString(), nil
          }
      Severity: Major
      Found in prettyprinters/human/human.go - About 40 mins to fix

        Function TestNotifyTransform has 6 return statements (exceeds 4 allowed).
        Open

        func TestNotifyTransform(t *testing.T) {
            g := graph.New()
            g.Add(node.New("root", 1))
        
            doNothing := func(*node.Node, *graph.Graph) error { return nil }
        Severity: Major
        Found in graph/notifier_test.go - About 40 mins to fix

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

                  t.Run("when-mismatched", func(t *testing.T) {
                      o := &owner.Ownership{UID: intRef(2), GID: intRef(2)}
                      d, err := owner.NewOwnershipDiff(m, "foo", o)
                      require.NoError(t, err)
                      assert.True(t, d.Changes())
          Severity: Major
          Found in resource/file/owner/ownership_test.go and 3 other locations - About 40 mins to fix
          resource/file/owner/ownership_test.go on lines 121..126
          resource/file/owner/ownership_test.go on lines 133..138
          resource/file/owner/ownership_test.go on lines 139..144

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

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

              t.Run("when installation error", func(t *testing.T) {
                  pkg := "foo1"
                  runner := newRunner("", makeExitError("", 1))
                  a := &apt.Manager{Sys: runner}
                  _, err := a.InstallPackage(pkg)
          Severity: Minor
          Found in resource/package/apt/package_manager_test.go and 2 other locations - About 40 mins to fix
          resource/package/apt/package_manager_test.go on lines 190..197
          resource/package/rpm/package_manager_test.go on lines 72..79

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

          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

                  t.Run("when-uid-match", func(t *testing.T) {
                      o := &owner.Ownership{UID: intRef(1), GID: intRef(2)}
                      d, err := owner.NewOwnershipDiff(m, "foo", o)
                      require.NoError(t, err)
                      assert.True(t, d.Changes())
          Severity: Major
          Found in resource/file/owner/ownership_test.go and 3 other locations - About 40 mins to fix
          resource/file/owner/ownership_test.go on lines 121..126
          resource/file/owner/ownership_test.go on lines 127..132
          resource/file/owner/ownership_test.go on lines 139..144

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

          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

                  t.Run("when-gid-match", func(t *testing.T) {
                      o := &owner.Ownership{UID: intRef(2), GID: intRef(1)}
                      d, err := owner.NewOwnershipDiff(m, "foo", o)
                      require.NoError(t, err)
                      assert.True(t, d.Changes())
          Severity: Major
          Found in resource/file/owner/ownership_test.go and 3 other locations - About 40 mins to fix
          resource/file/owner/ownership_test.go on lines 121..126
          resource/file/owner/ownership_test.go on lines 127..132
          resource/file/owner/ownership_test.go on lines 133..138

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

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

              t.Run("when installation error", func(t *testing.T) {
                  pkg := "foo1"
                  runner := newRunner("", makeExitError("", 1))
                  y := &rpm.YumManager{Sys: runner}
                  _, err := y.InstallPackage(pkg)
          Severity: Minor
          Found in resource/package/rpm/package_manager_test.go and 2 other locations - About 40 mins to fix
          resource/package/apt/package_manager_test.go on lines 135..142
          resource/package/apt/package_manager_test.go on lines 190..197

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

          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

                  t.Run("when-matching", func(t *testing.T) {
                      o := &owner.Ownership{UID: intRef(1), GID: intRef(1)}
                      d, err := owner.NewOwnershipDiff(m, "foo", o)
                      require.NoError(t, err)
                      assert.False(t, d.Changes())
          Severity: Major
          Found in resource/file/owner/ownership_test.go and 3 other locations - About 40 mins to fix
          resource/file/owner/ownership_test.go on lines 127..132
          resource/file/owner/ownership_test.go on lines 133..138
          resource/file/owner/ownership_test.go on lines 139..144

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

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

              t.Run("when package never installed", func(t *testing.T) {
                  pkg := "foo1"
                  runner := newRunner("", makeExitError("", 1))
                  a := &apt.Manager{Sys: runner}
                  _, err := a.RemovePackage(pkg)
          Severity: Minor
          Found in resource/package/apt/package_manager_test.go and 2 other locations - About 40 mins to fix
          resource/package/apt/package_manager_test.go on lines 135..142
          resource/package/rpm/package_manager_test.go on lines 72..79

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

          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

                  t.Run("no uid", func(t *testing.T) {
                      p := user.Preparer{GID: &testID, Username: "test", Name: "test", HomeDir: "tmp", State: user.StateAbsent}
                      _, err := p.Prepare(context.Background(), &fr)
          
                      assert.NoError(t, err)
          Severity: Minor
          Found in resource/user/preparer_test.go and 1 other location - About 40 mins to fix
          resource/user/preparer_test.go on lines 70..75

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

          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

              if (d.UIDs != nil) && d.UIDs[0] != d.UIDs[1] {
                  uid := d.UIDs[idx]
                  userName, err := usernameFromUID(d.p, show(uid))
                  if err != nil {
                      return show(err)
          Severity: Minor
          Found in resource/file/owner/ownership.go and 1 other location - About 40 mins to fix
          resource/file/owner/ownership.go on lines 75..82

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

          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

              if (d.GIDs != nil) && d.GIDs[0] != d.GIDs[1] {
                  gid := d.GIDs[idx]
                  groupName, err := groupnameFromGID(d.p, show(gid))
                  if err != nil {
                      return show(err)
          Severity: Minor
          Found in resource/file/owner/ownership.go and 1 other location - About 40 mins to fix
          resource/file/owner/ownership.go on lines 67..74

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

          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

          func setUid() (string, error) {
              for i := 0; i <= maxUID; i++ {
                  uid := strconv.Itoa(i)
                  user, err := os.LookupId(uid)
                  if err == nil && user.Username != currUsername {
          Severity: Minor
          Found in resource/user/user_test.go and 1 other location - About 40 mins to fix
          resource/group/group_test.go on lines 986..995

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

          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

          func setGid() (string, error) {
              for i := 0; i <= maxGID; i++ {
                  gid := strconv.Itoa(i)
                  group, err := user.LookupGroupId(gid)
                  if err == nil && group.Name != currName {
          Severity: Minor
          Found in resource/group/group_test.go and 1 other location - About 40 mins to fix
          resource/user/user_test.go on lines 1398..1407

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

          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

                  t.Run("no group", func(t *testing.T) {
                      p := user.Preparer{UID: &testID, Username: "test", Name: "test", HomeDir: "tmp", State: user.StateAbsent}
                      _, err := p.Prepare(context.Background(), &fr)
          
                      assert.NoError(t, err)
          Severity: Minor
          Found in resource/user/preparer_test.go and 1 other location - About 40 mins to fix
          resource/user/preparer_test.go on lines 49..54

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

          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

                  assert.True(t, strings.Contains(u.fetchContents[0], expF[3]) || strings.Contains(u.fetchContents[1], expF[3]) || strings.Contains(u.fetchContents[2], expF[3]) || strings.Contains(u.fetchContents[3], expF[3]))
          Severity: Major
          Found in resource/unarchive/unarchive_test.go and 3 other locations - About 40 mins to fix
          resource/unarchive/unarchive_test.go on lines 702..702
          resource/unarchive/unarchive_test.go on lines 703..703
          resource/unarchive/unarchive_test.go on lines 704..704

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

          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

                  assert.True(t, strings.Contains(u.fetchContents[0], expF[0]) || strings.Contains(u.fetchContents[1], expF[0]) || strings.Contains(u.fetchContents[2], expF[0]) || strings.Contains(u.fetchContents[3], expF[0]))
          Severity: Major
          Found in resource/unarchive/unarchive_test.go and 3 other locations - About 40 mins to fix
          resource/unarchive/unarchive_test.go on lines 703..703
          resource/unarchive/unarchive_test.go on lines 704..704
          resource/unarchive/unarchive_test.go on lines 705..705

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

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

              t.Run("no mkfs, no unit, only mount", func(t *testing.T) {
                  lvm, m := testhelpers.MakeFakeLvm()
                  setupNormalFlowApply(m, "xfs", false, false)
                  _ = simpleApplySuccess(t, lvm)
                  m.AssertNotCalled(t, "Mkfs", "/dev/mapper/vg0-data", "xfs")
          Severity: Minor
          Found in resource/lvm/fs/fs_test.go and 2 other locations - About 40 mins to fix
          resource/lvm/fs/fs_test.go on lines 95..102
          resource/lvm/fs/fs_test.go on lines 104..112

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

          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

          Severity
          Category
          Status
          Source
          Language