2016-08-30 11:51:31 +08:00
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
2016-08-30 14:00:21 +08:00
|
|
|
"strconv"
|
2016-08-30 11:51:31 +08:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestExcelize(t *testing.T) {
|
2016-10-19 18:42:29 +08:00
|
|
|
// Test update a XLSX file.
|
|
|
|
f1, err := OpenFile("./test/Workbook1.xlsx")
|
2016-09-06 21:20:24 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
2016-10-19 18:42:29 +08:00
|
|
|
f1.UpdateLinkedValue()
|
|
|
|
f1.SetCellInt("SHEET2", "A1", 100)
|
|
|
|
f1.SetCellStr("SHEET2", "C11", "Knowns")
|
|
|
|
f1.NewSheet(3, "TestSheet")
|
|
|
|
f1.SetCellInt("Sheet3", "A23", 10)
|
|
|
|
f1.SetCellStr("SHEET3", "b230", "10")
|
|
|
|
f1.SetCellStr("SHEET10", "b230", "10")
|
|
|
|
f1.SetActiveSheet(2)
|
|
|
|
// Test read cell value with given illegal rows number.
|
|
|
|
f1.GetCellValue("Sheet2", "a-1")
|
|
|
|
// Test read cell value with given lowercase column number.
|
|
|
|
f1.GetCellValue("Sheet2", "a5")
|
|
|
|
f1.GetCellValue("Sheet2", "C11")
|
|
|
|
f1.GetCellValue("Sheet2", "D11")
|
|
|
|
f1.GetCellValue("Sheet2", "D12")
|
|
|
|
// Test SetCellValue function.
|
|
|
|
f1.SetCellValue("Sheet2", "F1", "Hello")
|
|
|
|
f1.SetCellValue("Sheet2", "G1", []byte("World"))
|
|
|
|
f1.SetCellValue("Sheet2", "F2", 42)
|
|
|
|
f1.SetCellValue("Sheet2", "G2", nil)
|
|
|
|
// Test read cell value with given axis large than exists row.
|
|
|
|
f1.GetCellValue("Sheet2", "E13")
|
2016-09-06 21:20:24 +08:00
|
|
|
|
2016-09-05 16:37:15 +08:00
|
|
|
for i := 1; i <= 300; i++ {
|
2016-10-19 18:42:29 +08:00
|
|
|
f1.SetCellStr("SHEET3", "c"+strconv.Itoa(i), strconv.Itoa(i))
|
2016-08-30 11:51:31 +08:00
|
|
|
}
|
2016-10-19 18:42:29 +08:00
|
|
|
err = f1.Save()
|
2016-08-30 11:51:31 +08:00
|
|
|
if err != nil {
|
2016-09-02 10:28:29 +08:00
|
|
|
t.Log(err)
|
2016-08-30 11:51:31 +08:00
|
|
|
}
|
2016-10-19 18:42:29 +08:00
|
|
|
// Test write file to given path.
|
|
|
|
err = f1.WriteTo("./test/Workbook_2.xlsx")
|
2016-09-02 10:28:29 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
2016-10-19 18:42:29 +08:00
|
|
|
// Test write file to not exist directory.
|
|
|
|
err = f1.WriteTo("")
|
2016-09-02 10:28:29 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
2016-08-30 11:51:31 +08:00
|
|
|
|
2016-10-19 18:42:29 +08:00
|
|
|
// Test write file with broken file struct.
|
|
|
|
f2 := File{}
|
|
|
|
err = f2.Save()
|
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
|
|
|
// Test write file with broken file struct with given path.
|
|
|
|
err = f2.WriteTo("./test/Workbook_3.xlsx")
|
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test create a XLSX file.
|
|
|
|
f3 := CreateFile()
|
|
|
|
f3.NewSheet(2, "XLSXSheet2")
|
|
|
|
f3.NewSheet(3, "XLSXSheet3")
|
|
|
|
f3.SetCellInt("Sheet2", "A23", 56)
|
|
|
|
f3.SetCellStr("SHEET1", "B20", "42")
|
|
|
|
f3.SetActiveSheet(0)
|
|
|
|
err = f3.WriteTo("./test/Workbook_3.xlsx")
|
2016-08-30 11:51:31 +08:00
|
|
|
if err != nil {
|
2016-09-02 10:28:29 +08:00
|
|
|
t.Log(err)
|
2016-08-30 11:51:31 +08:00
|
|
|
}
|
2016-08-30 21:54:28 +08:00
|
|
|
|
2016-10-19 18:42:29 +08:00
|
|
|
// Test open a XLSX file with given illegal path.
|
2016-09-06 21:20:24 +08:00
|
|
|
_, err = OpenFile("./test/Workbook.xlsx")
|
|
|
|
if err != nil {
|
|
|
|
t.Log(err)
|
|
|
|
}
|
2016-08-30 11:51:31 +08:00
|
|
|
}
|