Skip to content

Commit 74f6ea9

Browse files
committed
ref qax-os#1054, breaking change for the column and row's iterator
This removed 3 exported functions: `TotalCols`, `CurrentCol` and `CurrentRow`
1 parent 4daa6ed commit 74f6ea9

File tree

5 files changed

+11
-22
lines changed

5 files changed

+11
-22
lines changed

cell_test.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -682,8 +682,10 @@ func TestSharedStringsError(t *testing.T) {
682682
rows, err := f.Rows("Sheet1")
683683
assert.NoError(t, err)
684684
const maxUint16 = 1<<16 - 1
685+
currentRow := 0
685686
for rows.Next() {
686-
if rows.CurrentRow() == 19 {
687+
currentRow++
688+
if currentRow == 19 {
687689
_, err := rows.Columns()
688690
assert.NoError(t, err)
689691
// Test get cell value from string item with invalid offset
@@ -705,8 +707,10 @@ func TestSharedStringsError(t *testing.T) {
705707
assert.NoError(t, err)
706708
rows, err = f.Rows("Sheet1")
707709
assert.NoError(t, err)
710+
currentRow = 0
708711
for rows.Next() {
709-
if rows.CurrentRow() == 19 {
712+
currentRow++
713+
if currentRow == 19 {
710714
_, err := rows.Columns()
711715
assert.NoError(t, err)
712716
break

col.go

-10
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,6 @@ type Cols struct {
4040
sheetXML []byte
4141
}
4242

43-
// CurrentCol returns the column number that represents the current column.
44-
func (cols *Cols) CurrentCol() int {
45-
return cols.curCol
46-
}
47-
48-
// TotalCols returns the total columns count in the worksheet.
49-
func (cols *Cols) TotalCols() int {
50-
return cols.totalCols
51-
}
52-
5343
// GetCols return all the columns in a sheet by given worksheet name (case
5444
// sensitive). For example:
5545
//

col_test.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ func TestColumnsIterator(t *testing.T) {
6868

6969
for cols.Next() {
7070
colCount++
71-
assert.Equal(t, colCount, cols.CurrentCol())
72-
assert.Equal(t, expectedNumCol, cols.TotalCols())
7371
require.True(t, colCount <= expectedNumCol, "colCount is greater than expected")
7472
}
7573
assert.Equal(t, expectedNumCol, colCount)
@@ -85,8 +83,6 @@ func TestColumnsIterator(t *testing.T) {
8583

8684
for cols.Next() {
8785
colCount++
88-
assert.Equal(t, colCount, cols.CurrentCol())
89-
assert.Equal(t, expectedNumCol, cols.TotalCols())
9086
require.True(t, colCount <= 4, "colCount is greater than expected")
9187
}
9288
assert.Equal(t, expectedNumCol, colCount)
@@ -131,6 +127,11 @@ func TestGetColsError(t *testing.T) {
131127
cols.sheetXML = []byte(`<worksheet><sheetData><row r="1"><c r="A" t="str"><v>A</v></c></row></sheetData></worksheet>`)
132128
_, err = cols.Rows()
133129
assert.EqualError(t, err, newCellNameToCoordinatesError("A", newInvalidCellNameError("A")).Error())
130+
131+
f.Pkg.Store("xl/worksheets/sheet1.xml", nil)
132+
f.Sheet.Store("xl/worksheets/sheet1.xml", nil)
133+
_, err = f.Cols("Sheet1")
134+
assert.NoError(t, err)
134135
}
135136

136137
func TestColsRows(t *testing.T) {

rows.go

-5
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,6 @@ type Rows struct {
7979
token xml.Token
8080
}
8181

82-
// CurrentRow returns the row number that represents the current row.
83-
func (rows *Rows) CurrentRow() int {
84-
return rows.seekRow
85-
}
86-
8782
// Next will return true if find the next row element.
8883
func (rows *Rows) Next() bool {
8984
rows.seekRow++

rows_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ func TestRowsIterator(t *testing.T) {
7474

7575
for rows.Next() {
7676
rowCount++
77-
assert.Equal(t, rowCount, rows.CurrentRow())
7877
require.True(t, rowCount <= expectedNumRow, "rowCount is greater than expected")
7978
}
8079
assert.Equal(t, expectedNumRow, rowCount)

0 commit comments

Comments
 (0)