synapsecns/sanguine

View on GitHub
ethergo/contracts/mocks/contract_type.go

Summary

Maintainability
A
3 hrs
Test Coverage

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

func (_m *ContractType) ContractInfo() *compiler.Contract {
    ret := _m.Called()

    var r0 *compiler.Contract
    if rf, ok := ret.Get(0).(func() *compiler.Contract); ok {
Severity: Major
Found in ethergo/contracts/mocks/contract_type.go and 9 other locations - About 1 hr to fix
ethergo/backends/mocks/simulated_test_backend.go on lines 265..278
ethergo/backends/mocks/simulated_test_backend.go on lines 478..491
ethergo/backends/mocks/simulated_test_backend.go on lines 1125..1138
ethergo/chain/gas/backend/mocks/oracle_backend_chain.go on lines 70..83
ethergo/chain/mocks/chain.go on lines 216..229
ethergo/chain/mocks/chain.go on lines 419..432
ethergo/contracts/mocks/deployed_contract.go on lines 37..50
ethergo/contracts/mocks/deployed_contract.go on lines 69..82
ethergo/contracts/mocks/deployed_contract.go on lines 101..114

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

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

func (_m *ContractType) Name() string {
    ret := _m.Called()

    var r0 string
    if rf, ok := ret.Get(0).(func() string); ok {
Severity: Major
Found in ethergo/contracts/mocks/contract_type.go and 26 other locations - About 45 mins to fix
ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
ethergo/chain/mocks/chain.go on lines 37..48
ethergo/chain/mocks/chain.go on lines 255..266
ethergo/chain/mocks/chain.go on lines 269..280
ethergo/chain/mocks/chain.go on lines 306..317
ethergo/chain/mocks/chain.go on lines 435..446
ethergo/chain/mocks/chain.go on lines 712..723
ethergo/chain/mocks/chain.go on lines 726..737
ethergo/contracts/mocks/contract_type.go on lines 33..44
ethergo/contracts/mocks/contract_type.go on lines 47..58
ethergo/contracts/mocks/deployed_contract.go on lines 117..128
ethergo/listener/mocks/contract_listener.go on lines 37..48
services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
services/omnirpc/http/mocks/response.go on lines 29..40

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

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

func (_m *ContractType) ID() int {
    ret := _m.Called()

    var r0 int
    if rf, ok := ret.Get(0).(func() int); ok {
Severity: Major
Found in ethergo/contracts/mocks/contract_type.go and 26 other locations - About 45 mins to fix
ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
ethergo/chain/mocks/chain.go on lines 37..48
ethergo/chain/mocks/chain.go on lines 255..266
ethergo/chain/mocks/chain.go on lines 269..280
ethergo/chain/mocks/chain.go on lines 306..317
ethergo/chain/mocks/chain.go on lines 435..446
ethergo/chain/mocks/chain.go on lines 712..723
ethergo/chain/mocks/chain.go on lines 726..737
ethergo/contracts/mocks/contract_type.go on lines 33..44
ethergo/contracts/mocks/contract_type.go on lines 61..72
ethergo/contracts/mocks/deployed_contract.go on lines 117..128
ethergo/listener/mocks/contract_listener.go on lines 37..48
services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
services/omnirpc/http/mocks/response.go on lines 29..40

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

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

func (_m *ContractType) ContractName() string {
    ret := _m.Called()

    var r0 string
    if rf, ok := ret.Get(0).(func() string); ok {
Severity: Major
Found in ethergo/contracts/mocks/contract_type.go and 26 other locations - About 45 mins to fix
ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
ethergo/chain/mocks/chain.go on lines 37..48
ethergo/chain/mocks/chain.go on lines 255..266
ethergo/chain/mocks/chain.go on lines 269..280
ethergo/chain/mocks/chain.go on lines 306..317
ethergo/chain/mocks/chain.go on lines 435..446
ethergo/chain/mocks/chain.go on lines 712..723
ethergo/chain/mocks/chain.go on lines 726..737
ethergo/contracts/mocks/contract_type.go on lines 47..58
ethergo/contracts/mocks/contract_type.go on lines 61..72
ethergo/contracts/mocks/deployed_contract.go on lines 117..128
ethergo/listener/mocks/contract_listener.go on lines 37..48
services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
services/omnirpc/http/mocks/response.go on lines 29..40

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

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