summaryrefslogtreecommitdiff
path: root/shape_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'shape_test.go')
-rw-r--r--shape_test.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/shape_test.go b/shape_test.go
index 9d1da8a..2b2e87c 100644
--- a/shape_test.go
+++ b/shape_test.go
@@ -87,10 +87,15 @@ func TestAddShape(t *testing.T) {
}
}`))
assert.NoError(t, f.SaveAs(filepath.Join("test", "TestAddShape2.xlsx")))
- // Test set row style with unsupported charset style sheet.
+ // Test add shape with unsupported charset style sheet.
f.Styles = nil
f.Pkg.Store(defaultXMLPathStyles, MacintoshCyrillicCharset)
assert.EqualError(t, f.AddShape("Sheet1", "B30", `{"type":"rect","paragraph":[{"text":"Rectangle"},{}]}`), "XML syntax error on line 1: invalid UTF-8")
+ // Test add shape with unsupported charset content types.
+ f = NewFile()
+ f.ContentTypes = nil
+ f.Pkg.Store(defaultXMLPathContentTypes, MacintoshCyrillicCharset)
+ assert.EqualError(t, f.AddShape("Sheet1", "B30", `{"type":"rect","paragraph":[{"text":"Rectangle"},{}]}`), "XML syntax error on line 1: invalid UTF-8")
}
func TestAddDrawingShape(t *testing.T) {