-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxref_test.go
54 lines (49 loc) · 1.4 KB
/
xref_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
// seehuhn.de/go/pdf - a library for reading and writing PDF files
// Copyright (C) 2021 Jochen Voss <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package pdf
import (
"bytes"
"strings"
"testing"
)
func TestFindXref(t *testing.T) {
in := "%PDF-1.7\nhello\nstartxref\n9\n%%EOF"
r := &Reader{
r: strings.NewReader(in),
}
start, err := r.findXRef(int64(len(in)))
if err != nil {
t.Error(err)
}
if start != 9 {
t.Errorf("wrong xref start, expected 9 but got %d", start)
}
}
func TestLastOccurence(t *testing.T) {
buf := make([]byte, 2048)
pat := "ABC"
copy(buf[1023:], pat)
r := &Reader{
r: bytes.NewReader(buf),
}
pos, err := r.lastOccurence(pat, int64(len(buf)))
if err != nil {
t.Fatal(err)
}
if pos != 1023 {
t.Errorf("found wrong position: expected 1023, got %d", pos)
}
}