| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- package excelize
- import (
- "fmt"
- "path/filepath"
- "strconv"
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func TestRows(t *testing.T) {
- xlsx, err := OpenFile(filepath.Join("test", "Book1.xlsx"))
- if !assert.NoError(t, err) {
- t.FailNow()
- }
- rows, err := xlsx.Rows("Sheet2")
- if !assert.NoError(t, err) {
- t.FailNow()
- }
- rowStrs := make([][]string, 0)
- var i = 0
- for rows.Next() {
- i++
- columns := rows.Columns()
- rowStrs = append(rowStrs, columns)
- }
- if !assert.NoError(t, rows.Error()) {
- t.FailNow()
- }
- dstRows := xlsx.GetRows("Sheet2")
- if !assert.Equal(t, len(rowStrs), len(dstRows)) {
- t.FailNow()
- }
- for i := 0; i < len(rowStrs); i++ {
- if !assert.Equal(t, trimSliceSpace(dstRows[i]), trimSliceSpace(rowStrs[i])) {
- t.FailNow()
- }
- }
- r := Rows{}
- r.Columns()
- }
- func TestRowsError(t *testing.T) {
- xlsx, err := OpenFile(filepath.Join("test", "Book1.xlsx"))
- if !assert.NoError(t, err) {
- t.FailNow()
- }
- _, err = xlsx.Rows("SheetN")
- assert.EqualError(t, err, "Sheet SheetN is not exist")
- }
- func TestRowHeight(t *testing.T) {
- xlsx := NewFile()
- sheet1 := xlsx.GetSheetName(1)
- xlsx.SetRowHeight(sheet1, 0, defaultRowHeightPixels+1.0) // should no effect
- assert.Equal(t, defaultRowHeightPixels, xlsx.GetRowHeight("Sheet1", 0))
- xlsx.SetRowHeight(sheet1, 1, 111.0)
- assert.Equal(t, 111.0, xlsx.GetRowHeight(sheet1, 1))
- xlsx.SetRowHeight(sheet1, 4, 444.0)
- assert.Equal(t, 444.0, xlsx.GetRowHeight(sheet1, 4))
- err := xlsx.SaveAs(filepath.Join("test", "TestRowHeight.xlsx"))
- if !assert.NoError(t, err) {
- t.FailNow()
- }
- convertColWidthToPixels(0)
- }
- func TestRemoveRow(t *testing.T) {
- xlsx := NewFile()
- sheet1 := xlsx.GetSheetName(1)
- r := xlsx.workSheetReader(sheet1)
- const (
- cellCount = 10
- rowCount = 10
- )
- for j := 1; j <= cellCount; j++ {
- for i := 1; i <= rowCount; i++ {
- axis := ToAlphaString(i) + strconv.Itoa(j)
- xlsx.SetCellStr(sheet1, axis, axis)
- }
- }
- xlsx.SetCellHyperLink(sheet1, "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
- xlsx.RemoveRow(sheet1, -1)
- if !assert.Len(t, r.SheetData.Row, rowCount) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 0)
- if !assert.Len(t, r.SheetData.Row, rowCount) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 4)
- if !assert.Len(t, r.SheetData.Row, rowCount-1) {
- t.FailNow()
- }
- xlsx.MergeCell(sheet1, "B3", "B5")
- xlsx.RemoveRow(sheet1, 2)
- if !assert.Len(t, r.SheetData.Row, rowCount-2) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 4)
- if !assert.Len(t, r.SheetData.Row, rowCount-3) {
- t.FailNow()
- }
- err := xlsx.AutoFilter(sheet1, "A2", "A2", `{"column":"A","expression":"x != blanks"}`)
- if !assert.NoError(t, err) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 1)
- if !assert.Len(t, r.SheetData.Row, rowCount-4) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 2)
- if !assert.Len(t, r.SheetData.Row, rowCount-5) {
- t.FailNow()
- }
- xlsx.RemoveRow(sheet1, 1)
- if !assert.Len(t, r.SheetData.Row, rowCount-6) {
- t.FailNow()
- }
- assert.NoError(t, xlsx.SaveAs(filepath.Join("test", "TestRemoveRow.xlsx")))
- }
- func TestInsertRow(t *testing.T) {
- xlsx := NewFile()
- sheet1 := xlsx.GetSheetName(1)
- r := xlsx.workSheetReader(sheet1)
- const (
- cellCount = 10
- rowCount = 10
- )
- for j := 1; j <= cellCount; j++ {
- for i := 1; i < rowCount; i++ {
- axis := ToAlphaString(i) + strconv.Itoa(j)
- xlsx.SetCellStr(sheet1, axis, axis)
- }
- }
- xlsx.SetCellHyperLink(sheet1, "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
- xlsx.InsertRow(sheet1, -1)
- if !assert.Len(t, r.SheetData.Row, rowCount) {
- t.FailNow()
- }
- xlsx.InsertRow(sheet1, 0)
- if !assert.Len(t, r.SheetData.Row, rowCount) {
- t.FailNow()
- }
- xlsx.InsertRow(sheet1, 1)
- if !assert.Len(t, r.SheetData.Row, rowCount+1) {
- t.FailNow()
- }
- xlsx.InsertRow(sheet1, 4)
- if !assert.Len(t, r.SheetData.Row, rowCount+2) {
- t.FailNow()
- }
- assert.NoError(t, xlsx.SaveAs(filepath.Join("test", "TestInsertRow.xlsx")))
- }
- // Testing internal sructure state after insert operations.
- // It is important for insert workflow to be constant to avoid side effect with functions related to internal structure.
- func TestInsertRowInEmptyFile(t *testing.T) {
- xlsx := NewFile()
- sheet1 := xlsx.GetSheetName(1)
- r := xlsx.workSheetReader(sheet1)
- xlsx.InsertRow(sheet1, 1)
- assert.Len(t, r.SheetData.Row, 0)
- xlsx.InsertRow(sheet1, 2)
- assert.Len(t, r.SheetData.Row, 0)
- xlsx.InsertRow(sheet1, 99)
- assert.Len(t, r.SheetData.Row, 0)
- assert.NoError(t, xlsx.SaveAs(filepath.Join("test", "TestInsertRowInEmptyFile.xlsx")))
- }
- func TestDuplicateRow(t *testing.T) {
- const sheet = "Sheet1"
- outFile := filepath.Join("test", "TestDuplicateRow.%s.xlsx")
- cells := map[string]string{
- "A1": "A1 Value",
- "A2": "A2 Value",
- "A3": "A3 Value",
- "B1": "B1 Value",
- "B2": "B2 Value",
- "B3": "B3 Value",
- }
- newFileWithDefaults := func() *File {
- f := NewFile()
- for cell, val := range cells {
- f.SetCellStr(sheet, cell, val)
- }
- return f
- }
- t.Run("FromSingleRow", func(t *testing.T) {
- xlsx := NewFile()
- xlsx.SetCellStr(sheet, "A1", cells["A1"])
- xlsx.SetCellStr(sheet, "B1", cells["B1"])
- xlsx.DuplicateRow(sheet, 1)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.FromSingleRow_1"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A1"], "B2": cells["B1"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- xlsx.DuplicateRow(sheet, 2)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.FromSingleRow_2"))) {
- t.FailNow()
- }
- expect = map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A1"], "B2": cells["B1"],
- "A3": cells["A1"], "B3": cells["B1"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("UpdateDuplicatedRows", func(t *testing.T) {
- xlsx := NewFile()
- xlsx.SetCellStr(sheet, "A1", cells["A1"])
- xlsx.SetCellStr(sheet, "B1", cells["B1"])
- xlsx.DuplicateRow(sheet, 1)
- xlsx.SetCellStr(sheet, "A2", cells["A2"])
- xlsx.SetCellStr(sheet, "B2", cells["B2"])
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.UpdateDuplicatedRows"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A2"], "B2": cells["B2"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("FirstOfMultipleRows", func(t *testing.T) {
- xlsx := newFileWithDefaults()
- xlsx.DuplicateRow(sheet, 1)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.FirstOfMultipleRows"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A1"], "B2": cells["B1"],
- "A3": cells["A2"], "B3": cells["B2"],
- "A4": cells["A3"], "B4": cells["B3"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("ZeroWithNoRows", func(t *testing.T) {
- xlsx := NewFile()
- xlsx.DuplicateRow(sheet, 0)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.ZeroWithNoRows"))) {
- t.FailNow()
- }
- assert.Equal(t, "", xlsx.GetCellValue(sheet, "A1"))
- assert.Equal(t, "", xlsx.GetCellValue(sheet, "B1"))
- assert.Equal(t, "", xlsx.GetCellValue(sheet, "A2"))
- assert.Equal(t, "", xlsx.GetCellValue(sheet, "B2"))
- expect := map[string]string{
- "A1": "", "B1": "",
- "A2": "", "B2": "",
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("MiddleRowOfEmptyFile", func(t *testing.T) {
- xlsx := NewFile()
- xlsx.DuplicateRow(sheet, 99)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.MiddleRowOfEmptyFile"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A98": "",
- "A99": "",
- "A100": "",
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("WithLargeOffsetToMiddleOfData", func(t *testing.T) {
- xlsx := newFileWithDefaults()
- xlsx.DuplicateRowTo(sheet, 1, 3)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.WithLargeOffsetToMiddleOfData"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A2"], "B2": cells["B2"],
- "A3": cells["A1"], "B3": cells["B1"],
- "A4": cells["A3"], "B4": cells["B3"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("WithLargeOffsetToEmptyRows", func(t *testing.T) {
- xlsx := newFileWithDefaults()
- xlsx.DuplicateRowTo(sheet, 1, 7)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.WithLargeOffsetToEmptyRows"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A1"], "B1": cells["B1"],
- "A2": cells["A2"], "B2": cells["B2"],
- "A3": cells["A3"], "B3": cells["B3"],
- "A7": cells["A1"], "B7": cells["B1"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("InsertBefore", func(t *testing.T) {
- xlsx := newFileWithDefaults()
- xlsx.DuplicateRowTo(sheet, 2, 1)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.InsertBefore"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A2"], "B1": cells["B2"],
- "A2": cells["A1"], "B2": cells["B1"],
- "A3": cells["A2"], "B3": cells["B2"],
- "A4": cells["A3"], "B4": cells["B3"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell), cell) {
- t.FailNow()
- }
- }
- })
- t.Run("InsertBeforeWithLargeOffset", func(t *testing.T) {
- xlsx := newFileWithDefaults()
- xlsx.DuplicateRowTo(sheet, 3, 1)
- if !assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, "TestDuplicateRow.InsertBeforeWithLargeOffset"))) {
- t.FailNow()
- }
- expect := map[string]string{
- "A1": cells["A3"], "B1": cells["B3"],
- "A2": cells["A1"], "B2": cells["B1"],
- "A3": cells["A2"], "B3": cells["B2"],
- "A4": cells["A3"], "B4": cells["B3"],
- }
- for cell, val := range expect {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, cell)) {
- t.FailNow()
- }
- }
- })
- }
- func TestDuplicateRowInvalidRownum(t *testing.T) {
- const sheet = "Sheet1"
- outFile := filepath.Join("test", "TestDuplicateRowInvalidRownum.%s.xlsx")
- cells := map[string]string{
- "A1": "A1 Value",
- "A2": "A2 Value",
- "A3": "A3 Value",
- "B1": "B1 Value",
- "B2": "B2 Value",
- "B3": "B3 Value",
- }
- testRows := []int{-2, -1}
- testRowPairs := []struct {
- row1 int
- row2 int
- }{
- {-1, -1},
- {-1, 0},
- {-1, 1},
- {0, -1},
- {0, 0},
- {0, 1},
- {1, -1},
- {1, 1},
- {1, 0},
- }
- for i, row := range testRows {
- name := fmt.Sprintf("TestRow_%d", i+1)
- t.Run(name, func(t *testing.T) {
- xlsx := NewFile()
- for col, val := range cells {
- xlsx.SetCellStr(sheet, col, val)
- }
- xlsx.DuplicateRow(sheet, row)
- for col, val := range cells {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, col)) {
- t.FailNow()
- }
- }
- assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, name)))
- })
- }
- for i, pair := range testRowPairs {
- name := fmt.Sprintf("TestRowPair_%d", i+1)
- t.Run(name, func(t *testing.T) {
- xlsx := NewFile()
- for col, val := range cells {
- xlsx.SetCellStr(sheet, col, val)
- }
- xlsx.DuplicateRowTo(sheet, pair.row1, pair.row2)
- for col, val := range cells {
- if !assert.Equal(t, val, xlsx.GetCellValue(sheet, col)) {
- t.FailNow()
- }
- }
- assert.NoError(t, xlsx.SaveAs(fmt.Sprintf(outFile, name)))
- })
- }
- }
- func trimSliceSpace(s []string) []string {
- for {
- if len(s) > 0 && s[len(s)-1] == "" {
- s = s[:len(s)-1]
- } else {
- break
- }
- }
- return s
- }
|