-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_parser_test.go
45 lines (36 loc) · 1.03 KB
/
page_parser_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package textractor
import (
"testing"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/textract/types"
"github.com/stretchr/testify/assert"
)
func TestPageParser(t *testing.T) {
t.Run("createSignatures", func(t *testing.T) {
signatureBlock1 := types.Block{
Id: aws.String("id1"),
BlockType: types.BlockTypeSignature,
Confidence: aws.Float32(0.95),
Geometry: &types.Geometry{
BoundingBox: &types.BoundingBox{},
},
}
signatureBlock2 := types.Block{
Id: aws.String("id2"),
BlockType: types.BlockTypeSignature,
Confidence: aws.Float32(0.98),
Geometry: &types.Geometry{
BoundingBox: &types.BoundingBox{},
},
}
bp := newBlockParser([]types.Block{signatureBlock1, signatureBlock2})
page := &Page{
childIDs: []string{"id1", "id2"},
}
pp := newPageParser(bp, page)
resultSignatures := pp.createSignatures()
assert.Len(t, resultSignatures, 2)
assert.Equal(t, "id1", resultSignatures[0].id)
assert.Equal(t, "id2", resultSignatures[1].id)
})
}