forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
creator_test.go
77 lines (67 loc) · 2.59 KB
/
creator_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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright 2017 FoxyUtils ehf. All rights reserved.
//
// Use of this software package and source code is governed by the terms of the
// UniDoc End User License Agreement (EULA) that is available at:
// https://unidoc.io/eula/
// A trial license code for evaluation can be obtained at https://unidoc.io.
package unioffice_test
import (
"bytes"
"encoding/xml"
"fmt"
"os"
"strings"
"testing"
"github.com/unidoc/unioffice"
"github.com/unidoc/unioffice/schema/soo/wml"
"github.com/unidoc/unioffice/zippkg"
)
func TestCreatorUnknownType(t *testing.T) {
el, err := unioffice.CreateElement(xml.StartElement{Name: xml.Name{Local: "foo", Space: "bar"}})
if el == nil || err != nil {
t.Errorf("CreateElement should never return nil: %s", err)
}
if _, ok := el.(*unioffice.XSDAny); !ok {
t.Errorf("CreateElement should return XSDAny for unknown types")
}
}
func TestCreatorKnownType(t *testing.T) {
el, err := unioffice.CreateElement(xml.StartElement{Name: xml.Name{Local: "CT_Settings", Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main"}})
if el == nil || err != nil {
t.Errorf("CreateElement should never return nil: %s", err)
}
if _, ok := el.(*wml.CT_Settings); !ok {
t.Errorf("CreateElement should return the element requested, got %T", el)
}
}
func TestRawEncode(t *testing.T) {
f, err := os.Open("testdata/settings.xml")
if err != nil {
t.Fatalf("error reading settings file")
}
dec := xml.NewDecoder(f)
var got *bytes.Buffer
// should round trip multiple times with no changes after
// the first encoding
for i := 0; i < 5; i++ {
stng := wml.NewSettings()
if err := dec.Decode(stng); err != nil {
t.Errorf("error decoding settings: %s", err)
}
got = &bytes.Buffer{}
fmt.Fprintf(got, zippkg.XMLHeader)
enc := xml.NewEncoder(zippkg.SelfClosingWriter{W: got})
if err := enc.Encode(stng); err != nil {
t.Errorf("error encoding settings: %s", err)
}
dec = xml.NewDecoder(bytes.NewReader(got.Bytes()))
}
xmlStr := got.String()
beg := strings.LastIndex(xmlStr, "<w:hdrShapeDefaults>")
end := strings.LastIndex(xmlStr, "</w:hdrShapeDefaults>")
gotRaw := xmlStr[beg+20 : end]
exp := "<o:shapedefaults xmlns=\"urn:schemas-microsoft-com:office:office\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" spidmax=\"2049\" ext=\"edit\"/>"
if gotRaw != exp {
t.Errorf("expected\n%q\ngot\n%q\n", exp, gotRaw)
}
}