Preparing report...

Report for github.com/Jeffail/benthos

(v1.20.4)

A+    Excellent!    Found 78 issues across 505 files

Tweet

gofmt98%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


golint100%

Golint is a linter for Go source code.

No problems detected. Good job!


gocyclo86%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • lib/broker/try_test.go
    • Line 138: warning: cyclomatic complexity 25 of function TestTryHappyishPath() is high (> 15) (gocyclo)
    • Line 238: warning: cyclomatic complexity 19 of function TestTryAllFail() is high (> 15) (gocyclo)
    • Line 61: warning: cyclomatic complexity 18 of function TestTryHappyPath() is high (> 15) (gocyclo)
    • lib/util/http/client/type.go
    • Line 451: warning: cyclomatic complexity 22 of function (*Type).Do() is high (> 15) (gocyclo)
    • Line 301: warning: cyclomatic complexity 19 of function (*Type).CreateRequest() is high (> 15) (gocyclo)
    • Line 123: warning: cyclomatic complexity 16 of function New() is high (> 15) (gocyclo)
    • lib/output/broker_test.go
    • Line 141: warning: cyclomatic complexity 19 of function TestRoundRobinWithNanomsg() is high (> 15) (gocyclo)
    • Line 40: warning: cyclomatic complexity 18 of function TestBrokerWithNanomsg() is high (> 15) (gocyclo)
    • lib/input/http_client_test.go
    • Line 316: warning: cyclomatic complexity 19 of function TestHTTPClientGETMultipart() is high (> 15) (gocyclo)
    • Line 412: warning: cyclomatic complexity 18 of function TestHTTPClientGETMultipartLoop() is high (> 15) (gocyclo)
    • Line 220: warning: cyclomatic complexity 17 of function TestHTTPClientPOST() is high (> 15) (gocyclo)
    • Line 613: warning: cyclomatic complexity 16 of function TestHTTPClientStreamGETMultiRecover() is high (> 15) (gocyclo)
    • cmd/benthos/main.go
    • Line 187: warning: cyclomatic complexity 52 of function bootstrap() is high (> 15) (gocyclo)
    • Line 356: warning: cyclomatic complexity 30 of function main() is high (> 15) (gocyclo)
    • lib/pipeline/pool_test.go
    • Line 38: warning: cyclomatic complexity 25 of function TestPoolBasic() is high (> 15) (gocyclo)
    • Line 156: warning: cyclomatic complexity 20 of function TestPoolMultiMsgs() is high (> 15) (gocyclo)
    • Line 245: warning: cyclomatic complexity 19 of function TestPoolMultiThreads() is high (> 15) (gocyclo)
    • lib/input/reader_test.go
    • Line 339: warning: cyclomatic complexity 22 of function TestReaderFailsReconnect() is high (> 15) (gocyclo)
    • Line 265: warning: cyclomatic complexity 20 of function TestReaderCanReconnect() is high (> 15) (gocyclo)
    • Line 528: warning: cyclomatic complexity 16 of function TestReaderSadPath() is high (> 15) (gocyclo)
    • Line 458: warning: cyclomatic complexity 16 of function TestReaderHappyPath() is high (> 15) (gocyclo)
    • lib/broker/fan_out_sequential_test.go
    • Line 194: warning: cyclomatic complexity 23 of function TestFanOutSequentialBlock() is high (> 15) (gocyclo)
    • Line 112: warning: cyclomatic complexity 23 of function TestFanOutSequentialAtLeastOnce() is high (> 15) (gocyclo)
    • Line 38: warning: cyclomatic complexity 18 of function TestBasicFanOutSequential() is high (> 15) (gocyclo)
    • lib/pipeline/processor_test.go
    • Line 75: warning: cyclomatic complexity 31 of function TestProcessorPipeline() is high (> 15) (gocyclo)
    • Line 319: warning: cyclomatic complexity 27 of function TestProcessorMultiMsgsOddSync() is high (> 15) (gocyclo)
    • Line 234: warning: cyclomatic complexity 21 of function TestProcessorMultiMsgs() is high (> 15) (gocyclo)
    • lib/broker/dynamic_fan_out_test.go
    • Line 129: warning: cyclomatic complexity 30 of function TestDynamicFanOutChangeOutputs() is high (> 15) (gocyclo)
    • Line 263: warning: cyclomatic complexity 23 of function TestDynamicFanOutAtLeastOnce() is high (> 15) (gocyclo)
    • Line 53: warning: cyclomatic complexity 17 of function TestBasicDynamicFanOut() is high (> 15) (gocyclo)
    • Line 365: warning: cyclomatic complexity 16 of function TestDynamicFanOutShutDownFromErrorResponse() is high (> 15) (gocyclo)
    • lib/broker/fan_out_test.go
    • Line 129: warning: cyclomatic complexity 24 of function TestFanOutAtLeastOnce() is high (> 15) (gocyclo)
    • Line 51: warning: cyclomatic complexity 19 of function TestBasicFanOut() is high (> 15) (gocyclo)
    • lib/output/switch_test.go
    • Line 225: warning: cyclomatic complexity 27 of function TestSwitchWithConditions() is high (> 15) (gocyclo)
    • Line 404: warning: cyclomatic complexity 27 of function TestSwitchWithConditionsNoFallthrough() is high (> 15) (gocyclo)
    • Line 528: warning: cyclomatic complexity 25 of function TestSwitchAtLeastOnce() is high (> 15) (gocyclo)
    • Line 147: warning: cyclomatic complexity 20 of function TestSwitchNoRetries() is high (> 15) (gocyclo)
    • Line 622: warning: cyclomatic complexity 18 of function TestSwitchShutDownFromErrorResponse() is high (> 15) (gocyclo)
    • Line 75: warning: cyclomatic complexity 18 of function TestSwitchNoConditions() is high (> 15) (gocyclo)
    • lib/stream/manager/api.go
    • Line 71: warning: cyclomatic complexity 25 of function (*Type).HandleStreamsCRUD() is high (> 15) (gocyclo)
    • Line 209: warning: cyclomatic complexity 22 of function (*Type).HandleStreamCRUD() is high (> 15) (gocyclo)
    • lib/stream/manager/api_test.go
    • Line 147: warning: cyclomatic complexity 21 of function TestTypeAPIBasicOperations() is high (> 15) (gocyclo)
    • Line 477: warning: cyclomatic complexity 17 of function TestTypeAPISetStreams() is high (> 15) (gocyclo)
    • lib/message/mapper/type.go
    • Line 401: warning: cyclomatic complexity 19 of function (*Type).MapResponses() is high (> 15) (gocyclo)
    • Line 260: warning: cyclomatic complexity 16 of function (*Type).MapRequests() is high (> 15) (gocyclo)
    • lib/input/read_until_test.go
    • Line 144: warning: cyclomatic complexity 19 of function testReadUntilRetry() is high (> 15) (gocyclo)
    • Line 78: warning: cyclomatic complexity 16 of function testReadUntilBasic() is high (> 15) (gocyclo)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!