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.
|
|
|
|
//
|
2022-02-17 00:09:11 +08:00
|
|
|
// Package excelize providing a set of functions that allow you to write to and
|
|
|
|
// read from XLAM / XLSM / XLSX / XLTM / XLTX 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 library needs Go version 1.15 or later.
|
2020-03-31 00:02:00 +08:00
|
|
|
|
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
2022-03-05 14:48:34 +08:00
|
|
|
"encoding/xml"
|
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)
|
2022-03-05 14:48:34 +08:00
|
|
|
f.Pkg.Store("wsDr", []byte(xml.Header+`<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")
|
2022-03-05 14:48:34 +08:00
|
|
|
// Test with alternate content
|
|
|
|
f.Drawings = sync.Map{}
|
|
|
|
f.Pkg.Store("wsDr", []byte(xml.Header+`<xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"><mc:AlternateContent xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"><mc:Choice xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" Requires="a14"><xdr:twoCellAnchor editAs="oneCell"></xdr:twoCellAnchor></mc:Choice><mc:Fallback/></mc:AlternateContent></xdr:wsDr>`))
|
|
|
|
f.drawingParser("wsDr")
|
2020-03-31 00:02:00 +08:00
|
|
|
}
|