2018-07-14 02:25:29 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions defined in
|
|
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHexStringWriteBasic(t *testing.T) {
|
|
|
|
testcases := map[string]string{
|
|
|
|
" ": "<20>",
|
|
|
|
}
|
|
|
|
|
|
|
|
for src, expected := range testcases {
|
|
|
|
strObj := MakeHexString(src)
|
|
|
|
ws := strObj.DefaultWriteString()
|
|
|
|
|
|
|
|
if ws != expected {
|
|
|
|
t.Fatalf("%s: '%s' != '%s'\n", src, ws, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test writing and parsing back of hexadecimal and regular strings.
|
|
|
|
func TestHexStringMulti(t *testing.T) {
|
|
|
|
testcases := []string{
|
|
|
|
"This is a string",
|
|
|
|
"Strings may contain\n newlines and such",
|
|
|
|
string([]byte{0x50, 0x01, 0x00, 0x90, 0xff, 0x49, 0xdf, 0x20, 0x32}),
|
|
|
|
"",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testcase := range testcases {
|
|
|
|
// Make *PdfObject representations for regular and hexadecimal strings.
|
|
|
|
s := MakeString(testcase)
|
|
|
|
shex := MakeHexString(testcase)
|
|
|
|
|
|
|
|
// Write out.
|
|
|
|
writestr := s.DefaultWriteString()
|
|
|
|
writestrhex := shex.DefaultWriteString()
|
|
|
|
|
|
|
|
// Parse back.
|
|
|
|
parser1 := makeParserForText(writestr)
|
|
|
|
parser2 := makeParserForText(writestrhex)
|
|
|
|
|
|
|
|
// Check that representation is correct.
|
|
|
|
obj1, err := parser1.parseObject()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Error: %v", err)
|
|
|
|
}
|
|
|
|
strObj1, ok := obj1.(*PdfObjectString)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Type incorrect")
|
|
|
|
}
|
|
|
|
if strObj1.isHex != false {
|
|
|
|
t.Fatalf("Should not be hex")
|
|
|
|
}
|
|
|
|
if strObj1.Str() != testcase {
|
|
|
|
t.Fatalf("String mismatch")
|
|
|
|
}
|
|
|
|
|
|
|
|
obj2, err := parser2.parseObject()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Error: %v", err)
|
|
|
|
}
|
|
|
|
strObj2, ok := obj2.(*PdfObjectString)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Type incorrect")
|
|
|
|
}
|
|
|
|
if strObj2.isHex != true {
|
|
|
|
t.Fatalf("Should be hex")
|
|
|
|
}
|
|
|
|
if strObj2.Str() != testcase {
|
|
|
|
t.Fatalf("String mismatch")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-28 09:50:18 +00:00
|
|
|
|
|
|
|
func TestPdfDocEncodingDecode(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
Encoded PdfObjectString
|
|
|
|
Expected string
|
|
|
|
}{
|
|
|
|
{PdfObjectString{val: "Ger\xfer\xfa\xf0ur", isHex: false}, "Gerþrúður"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testcase := range testcases {
|
|
|
|
dec := testcase.Encoded.Decoded()
|
|
|
|
if dec != testcase.Expected {
|
|
|
|
t.Fatalf("%s != %s", dec, testcase.Expected)
|
|
|
|
}
|
2018-10-05 01:59:19 +00:00
|
|
|
|
|
|
|
str := MakeEncodedString(dec, false)
|
|
|
|
if str.Decoded() != dec {
|
|
|
|
t.Fatalf("%s (%X) != %s (%X)", str.Decoded(), str.Decoded(), dec, dec)
|
|
|
|
}
|
2018-09-28 09:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-29 02:23:38 +00:00
|
|
|
|
|
|
|
func TestUTF16StringEncodeDecode(t *testing.T) {
|
|
|
|
testcases := []string{"漢字", `Testing «ταБЬℓσ»: 1<2 & 4+1>3, now 20% off!`}
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
2018-10-05 01:59:19 +00:00
|
|
|
// UTF16-BE.
|
|
|
|
str := MakeEncodedString(tc, true)
|
2018-09-29 02:23:38 +00:00
|
|
|
if str.Decoded() != tc {
|
|
|
|
t.Fatalf("% X != % X (%s)", str.Decoded(), tc, tc)
|
|
|
|
}
|
2018-10-05 01:59:19 +00:00
|
|
|
|
2018-09-29 02:23:38 +00:00
|
|
|
}
|
|
|
|
}
|