Skip to content

Commit 5f73154

Browse files
committed
merkle add test; add Makefile; update README
1 parent 2b8d506 commit 5f73154

File tree

8 files changed

+31
-3
lines changed

8 files changed

+31
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
main.go
2-
test-keyfile.json
2+
test-keyfile.json
3+
.DS_Store

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
sh ./test.sh

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,11 @@ func main() {
7474
fmt.Println(id, stat, err) // {{id}}, Pending, nil
7575
}
7676
```
77+
78+
### Development
79+
80+
#### Test
81+
82+
```
83+
make test
84+
```

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ require github.com/stretchr/testify v1.6.1
66

77
require (
88
github.com/everFinance/gojwk v1.0.0
9-
github.com/shopspring/decimal v1.2.0 // indirect
9+
github.com/shopspring/decimal v1.2.0
1010
)

test.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#! /bin/bash
2+
3+
for i in $(find . -iname "*_test.go" -exec dirname {} \; | uniq)
4+
do
5+
go test -race -cover $i;
6+
if [ $? != 0 ]
7+
then
8+
return 1
9+
fi
10+
done

utils/merkle.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ package utils
22

33
import (
44
"crypto/sha256"
5-
"github.com/shopspring/decimal"
65
"math"
76
"math/big"
7+
8+
"github.com/shopspring/decimal"
89
)
910

1011
const (

utils/merkle_test.go

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package utils
22

33
import (
4+
"io/ioutil"
45
"testing"
56

67
"github.com/stretchr/testify/assert"
@@ -9,6 +10,11 @@ import (
910
func TestGenerateChunks(t *testing.T) {
1011
data, _ := Base64Decode("NzcyNg")
1112
assert.Equal(t, "z3rQGxyiqdQuOh2dxDst176oOKmW3S9MwQNTEh4DK1U", Base64Encode(GenerateChunks(data).DataRoot))
13+
14+
data, err := ioutil.ReadFile("./testfile/1mb.bin")
15+
assert.NoError(t, err)
16+
chunks := GenerateChunks(data)
17+
assert.Equal(t, "o1tTTjbC7hIZN6KbUUYjlkQoDl2k8VXNuBDcGIs52Hc", Base64Encode(chunks.DataRoot))
1218
}
1319

1420
func TestChunkData(t *testing.T) {

utils/testfile/1mb.bin

1 MB
Binary file not shown.

0 commit comments

Comments
 (0)