unioffice/spreadsheet/stylesheet_test.go
Vyacheslav Zgordan dd7713e1e3 Functions2 (#348)
* MATCH, IFS, MAXA, MINA
* OFFSET fixed
* ISBLANK, ISERR, ISERROR, ISEVEN ,ISFORMULA, ISNONTEXT, ISNUMBER, ISODD, ISTEXT
* ISLEAPYEAR, ISLOGICAL, ISNA, ISREF
* FIND, FINDB
* SEARCH, SEARCHB
* CONCAT, CONCATENATE
* YEAR, YEARFRAC
* CONCAT is fixed, now TRUE and FALSE are concatenated instead of 1 and 0 in case of boolean results
* NOW, TODAY, TIME, TIMEVALUE
* DATE
* DATEDIF
2019-11-20 23:21:00 +00:00

61 lines
1.6 KiB
Go

// Copyright 2017 FoxyUtils ehf. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased on https://unidoc.io.
package spreadsheet_test
import (
"bytes"
"encoding/xml"
"fmt"
"os"
"testing"
"github.com/unidoc/unioffice/spreadsheet"
"github.com/unidoc/unioffice/testhelper"
"github.com/unidoc/unioffice/zippkg"
)
func TestStyleSheetUnmarshal(t *testing.T) {
f, err := os.Open("testdata/styles.xml")
if err != nil {
t.Fatalf("error reading styles.xml")
}
dec := xml.NewDecoder(f)
r := spreadsheet.NewStyleSheet(nil)
if err := dec.Decode(r.X()); err != nil {
t.Errorf("error decoding styles.xml: %s", err)
}
got := &bytes.Buffer{}
fmt.Fprintf(got, zippkg.XMLHeader)
enc := xml.NewEncoder(zippkg.SelfClosingWriter{W: got})
if err := enc.Encode(r.X()); err != nil {
t.Errorf("error encoding styles.xml: %s", err)
}
testhelper.CompareGoldenXML(t, "styles.xml", got.Bytes())
}
func TestStyleSheetFonts(t *testing.T) {
ss := spreadsheet.NewStyleSheet(nil)
fc := len(ss.Fonts())
ft := ss.AddFont()
if len(ss.Fonts()) != fc+1 {
t.Errorf("expected %d fonts, had %d", fc+1, len(ss.Fonts()))
}
if err := ss.RemoveFont(ft); err != nil {
t.Errorf("expected no errors removing font, got %s", err)
}
if len(ss.Fonts()) != fc {
t.Errorf("expected %d fonts, had %d", fc, len(ss.Fonts()))
}
if err := ss.RemoveFont(ft); err == nil {
t.Errorf("expected an errors removing non-existent font, got none")
}
}