2022-01-09 00:20:42 +08:00
|
|
|
// Copyright 2016 - 2022 The excelize Authors. All rights reserved. Use of
|
2020-03-31 00:02:00 +08:00
|
|
|
// this source code is governed by a BSD-style license that can be found in
|
|
|
|
// the LICENSE file.
|
|
|
|
//
|
|
|
|
// Package excelize providing a set of functions that allow you to write to
|
2021-03-30 23:02:22 +08:00
|
|
|
// and read from XLSX / XLSM / XLTM files. Supports reading and writing
|
|
|
|
// spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports
|
|
|
|
// complex components by high compatibility, and provided streaming API for
|
|
|
|
// generating or reading data from a worksheet with huge amounts of data. This
|
2021-04-04 15:29:43 +08:00
|
|
|
// library needs Go version 1.15 or later.
|
2020-03-31 00:02:00 +08:00
|
|
|
|
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
2021-07-04 12:13:06 +08:00
|
|
|
"sync"
|
2020-03-31 00:02:00 +08:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDrawingParser(t *testing.T) {
|
|
|
|
f := File{
|
2021-07-04 12:13:06 +08:00
|
|
|
Drawings: sync.Map{},
|
2021-07-05 00:03:56 +08:00
|
|
|
Pkg: sync.Map{},
|
2020-03-31 00:02:00 +08:00
|
|
|
}
|
2021-07-05 00:03:56 +08:00
|
|
|
f.Pkg.Store("charset", MacintoshCyrillicCharset)
|
|
|
|
f.Pkg.Store("wsDr", []byte(`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"><xdr:oneCellAnchor><xdr:graphicFrame/></xdr:oneCellAnchor></xdr:wsDr>`))
|
2020-03-31 00:02:00 +08:00
|
|
|
// Test with one cell anchor
|
|
|
|
f.drawingParser("wsDr")
|
2021-03-30 23:02:22 +08:00
|
|
|
// Test with unsupported charset
|
2020-03-31 00:02:00 +08:00
|
|
|
f.drawingParser("charset")
|
|
|
|
}
|