-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain_test.go
59 lines (52 loc) · 1.26 KB
/
main_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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package uncozip
import (
"bytes"
"encoding/binary"
"io"
"strings"
"testing"
)
func noDebug(...any) {
}
func TestSeekToSignatureForLocalHeader(t *testing.T) {
var source bytes.Buffer
io.WriteString(&source, "HOGEHOGE")
dd := &_DataDescriptor{CompressedSize: 8}
binary.Write(&source, binary.LittleEndian, dd)
io.WriteString(&source, "PK\x03\x04")
var output strings.Builder
cont, _, err := seekToSignature(&source, &output, noDebug)
if err != nil {
t.Fatal(err.Error())
return
}
if !cont {
t.Fatal("expect local-header,but central-header found")
return
}
if out := output.String(); out != "HOGEHOGE" {
t.Fatalf("output: expect 'HOGEHOGE' but '%s'", out)
return
}
}
func TestSeekToSignatureForCentralDirectoryHeader(t *testing.T) {
var source bytes.Buffer
io.WriteString(&source, "HOGEHOGE")
dd := &_DataDescriptor{CompressedSize: 8}
binary.Write(&source, binary.LittleEndian, dd)
io.WriteString(&source, "PK\x01\x02")
var output strings.Builder
cont, _, err := seekToSignature(&source, &output, noDebug)
if err != nil {
t.Fatal(err.Error())
return
}
if cont {
t.Fatal("expect central-header,but local-header found")
return
}
if out := output.String(); out != "HOGEHOGE" {
t.Fatalf("output: expect 'HOGEHOGE' but '%s'", out)
return
}
}