Skip to content

Commit 9e79f64

Browse files
dseevrunclejack
authored andcommitted
Replaced checks with checks.sh from volplugin + addressed issues found by deadcode and misspell
Signed-off-by: Bill Robinson <[email protected]>
1 parent 4f66ae0 commit 9e79f64

File tree

5 files changed

+88
-99
lines changed

5 files changed

+88
-99
lines changed

Makefile

+9-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,16 @@ stop:
1818
test: start build
1919
vagrant ssh node1 -c 'cd /opt/gopath/src/github.com/contiv/objdb && make host-test'
2020

21+
# build compiles and installs the code after running code quality checks
2122
host-build:
22-
./checks "./*.go ./modeldb"
23+
./checks.sh
2324
go get github.com/tools/godep
24-
godep go install ./ ./modeldb
25+
go install ./ ./modeldb
2526

2627
host-test:
27-
godep go test -v ./ ./modeldb
28-
godep go test -bench=. -run "Benchmark"
28+
go test -v ./ ./modeldb
29+
go test -bench=. -run "Benchmark"
30+
31+
# godep updates Godeps/Godeps.json
32+
godep:
33+
godep save ./...

checks

-60
This file was deleted.

checks.sh

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
dirs=$(go list ./... | sed -e 's!github.com/contiv/objdb!.!g' | grep -v ./vendor)
6+
files=$(find . -type f -name '*.go' | grep -v ./vendor)
7+
8+
echo "Running gofmt..."
9+
set +e
10+
out=$(gofmt -s -l ${files})
11+
set -e
12+
# gofmt can include empty lines in its output
13+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
14+
echo 1>&2 "gofmt errors in:"
15+
echo 1>&2 "${out}"
16+
exit 1
17+
fi
18+
19+
echo "Running ineffassign..."
20+
[ -n "$(which ineffassign)" ] || go get github.com/gordonklaus/ineffassign
21+
for i in ${dirs}; do
22+
ineffassign $i
23+
done
24+
25+
echo "Running golint..."
26+
[ -n "$(which golint)" ] || go get github.com/golang/lint/golint
27+
set +e
28+
out=$(golint ./... | grep -vE '^vendor')
29+
set -e
30+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
31+
echo 1>&2 "golint errors in:"
32+
echo 1>&2 "${out}"
33+
exit 1
34+
fi
35+
36+
echo "Running govet..."
37+
set +e
38+
out=$(go tool vet -composites=false ${dirs} 2>&1 | grep -v vendor)
39+
set -e
40+
41+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
42+
echo 1>&2 "go vet errors in:"
43+
echo 1>&2 "${out}"
44+
exit 1
45+
fi
46+
47+
echo "Running gocyclo..."
48+
[ -n "$(which gocyclo)" ] || go get github.com/fzipp/gocyclo
49+
set +e
50+
out=$(gocyclo -over 20 . | grep -v vendor)
51+
set -e
52+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
53+
echo 1>&2 "gocycle errors in:"
54+
echo 1>&2 "${out}"
55+
exit 1
56+
fi
57+
58+
echo "Running misspell..."
59+
[ -n "$(which misspell)" ] || go get github.com/client9/misspell/...
60+
set +e
61+
out=$(misspell -locale US -error -i exportfs ${files})
62+
set -e
63+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
64+
echo 1>&2 "misspell errors in:"
65+
echo 1>&2 "${out}"
66+
exit 1
67+
fi
68+
69+
echo "Running deadcode..."
70+
[ -n "$(which deadcode)" ] || go get github.com/remyoudompheng/go-misc/deadcode/...
71+
set +e
72+
out=$(deadcode ${dirs} 2>&1)
73+
set -e
74+
if [ "$(echo $out | sed '/^$/d' | wc -l)" -gt 0 ]; then
75+
echo 1>&2 "deadcode errors in:"
76+
echo 1>&2 "${out}"
77+
exit 1
78+
fi

consulService.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ func (cp *ConsulClient) DeregisterService(serviceInfo ServiceInfo) error {
258258
return nil
259259
}
260260

261-
//--------------------- Internal funcitons -------------------
261+
//--------------------- Internal functions -------------------
262262
func (cp *ConsulClient) renewService(keyName, ttl, sessionID string, jsonVal []byte, stopChan chan struct{}) {
263263
for {
264264
err := cp.client.Session().RenewPeriodic(ttl, sessionID, nil, stopChan)

etcdClient.go

-34
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ package objdb
1818
import (
1919
"encoding/json"
2020
"errors"
21-
"io/ioutil"
22-
"net/http"
2321
"sync"
2422
"time"
2523

@@ -41,15 +39,6 @@ type EtcdClient struct {
4139
serviceDb map[string]*etcdServiceState
4240
}
4341

44-
type member struct {
45-
Name string `json:"name"`
46-
ClientURLs []string `json:"clientURLs"`
47-
}
48-
49-
type memData struct {
50-
Members []member `json:"members"`
51-
}
52-
5342
// Max retry count
5443
const maxEtcdRetries = 10
5544

@@ -253,26 +242,3 @@ func (ep *EtcdClient) DelObj(key string) error {
253242

254243
return nil
255244
}
256-
257-
// Get JSON output from a http request
258-
func httpGetJSON(url string, data interface{}) (interface{}, error) {
259-
res, err := http.Get(url)
260-
if err != nil {
261-
log.Errorf("Error during http get. Err: %v", err)
262-
return nil, err
263-
}
264-
body, err := ioutil.ReadAll(res.Body)
265-
if err != nil {
266-
log.Errorf("Error during ioutil readall. Err: %v", err)
267-
return nil, err
268-
}
269-
270-
if err := json.Unmarshal(body, data); err != nil {
271-
log.Errorf("Error during json unmarshall. Err: %v", err)
272-
return nil, err
273-
}
274-
275-
log.Debugf("Results for (%s): %+v\n", url, data)
276-
277-
return data, nil
278-
}

0 commit comments

Comments
 (0)