2017-11-14 22:09:50 +08:00
|
|
|
package excelize_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mohae/deepcopy"
|
2018-12-27 18:51:44 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2019-09-13 18:38:44 +08:00
|
|
|
"github.com/360EntSecGroup-Skylar/excelize/v2"
|
2017-11-14 22:09:50 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = []excelize.SheetPrOption{
|
|
|
|
excelize.CodeName("hello"),
|
|
|
|
excelize.EnableFormatConditionsCalculation(false),
|
|
|
|
excelize.Published(false),
|
|
|
|
excelize.FitToPage(true),
|
|
|
|
excelize.AutoPageBreaks(true),
|
2018-12-14 03:01:36 +08:00
|
|
|
excelize.OutlineSummaryBelow(true),
|
2017-11-14 22:09:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ = []excelize.SheetPrOptionPtr{
|
|
|
|
(*excelize.CodeName)(nil),
|
|
|
|
(*excelize.EnableFormatConditionsCalculation)(nil),
|
|
|
|
(*excelize.Published)(nil),
|
|
|
|
(*excelize.FitToPage)(nil),
|
|
|
|
(*excelize.AutoPageBreaks)(nil),
|
2018-12-14 03:01:36 +08:00
|
|
|
(*excelize.OutlineSummaryBelow)(nil),
|
2017-11-14 22:09:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func ExampleFile_SetSheetPrOptions() {
|
2019-04-30 18:39:27 +08:00
|
|
|
f := excelize.NewFile()
|
2017-11-14 22:09:50 +08:00
|
|
|
const sheet = "Sheet1"
|
|
|
|
|
2019-04-30 18:39:27 +08:00
|
|
|
if err := f.SetSheetPrOptions(sheet,
|
2017-11-14 22:09:50 +08:00
|
|
|
excelize.CodeName("code"),
|
|
|
|
excelize.EnableFormatConditionsCalculation(false),
|
|
|
|
excelize.Published(false),
|
|
|
|
excelize.FitToPage(true),
|
|
|
|
excelize.AutoPageBreaks(true),
|
2018-12-14 03:01:36 +08:00
|
|
|
excelize.OutlineSummaryBelow(false),
|
2017-11-14 22:09:50 +08:00
|
|
|
); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// Output:
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExampleFile_GetSheetPrOptions() {
|
2019-04-30 18:39:27 +08:00
|
|
|
f := excelize.NewFile()
|
2017-11-14 22:09:50 +08:00
|
|
|
const sheet = "Sheet1"
|
|
|
|
|
|
|
|
var (
|
|
|
|
codeName excelize.CodeName
|
|
|
|
enableFormatConditionsCalculation excelize.EnableFormatConditionsCalculation
|
|
|
|
published excelize.Published
|
|
|
|
fitToPage excelize.FitToPage
|
|
|
|
autoPageBreaks excelize.AutoPageBreaks
|
2018-12-14 03:01:36 +08:00
|
|
|
outlineSummaryBelow excelize.OutlineSummaryBelow
|
2017-11-14 22:09:50 +08:00
|
|
|
)
|
|
|
|
|
2019-04-30 18:39:27 +08:00
|
|
|
if err := f.GetSheetPrOptions(sheet,
|
2017-11-14 22:09:50 +08:00
|
|
|
&codeName,
|
|
|
|
&enableFormatConditionsCalculation,
|
|
|
|
&published,
|
|
|
|
&fitToPage,
|
|
|
|
&autoPageBreaks,
|
2018-12-14 03:01:36 +08:00
|
|
|
&outlineSummaryBelow,
|
2017-11-14 22:09:50 +08:00
|
|
|
); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
fmt.Println("Defaults:")
|
|
|
|
fmt.Printf("- codeName: %q\n", codeName)
|
|
|
|
fmt.Println("- enableFormatConditionsCalculation:", enableFormatConditionsCalculation)
|
|
|
|
fmt.Println("- published:", published)
|
|
|
|
fmt.Println("- fitToPage:", fitToPage)
|
|
|
|
fmt.Println("- autoPageBreaks:", autoPageBreaks)
|
2018-12-14 03:01:36 +08:00
|
|
|
fmt.Println("- outlineSummaryBelow:", outlineSummaryBelow)
|
2017-11-14 22:09:50 +08:00
|
|
|
// Output:
|
|
|
|
// Defaults:
|
|
|
|
// - codeName: ""
|
|
|
|
// - enableFormatConditionsCalculation: true
|
|
|
|
// - published: true
|
|
|
|
// - fitToPage: false
|
|
|
|
// - autoPageBreaks: false
|
2018-12-14 03:01:36 +08:00
|
|
|
// - outlineSummaryBelow: true
|
2017-11-14 22:09:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestSheetPrOptions(t *testing.T) {
|
|
|
|
const sheet = "Sheet1"
|
2018-12-27 18:51:44 +08:00
|
|
|
|
|
|
|
testData := []struct {
|
2017-11-14 22:09:50 +08:00
|
|
|
container excelize.SheetPrOptionPtr
|
|
|
|
nonDefault excelize.SheetPrOption
|
|
|
|
}{
|
|
|
|
{new(excelize.CodeName), excelize.CodeName("xx")},
|
|
|
|
{new(excelize.EnableFormatConditionsCalculation), excelize.EnableFormatConditionsCalculation(false)},
|
|
|
|
{new(excelize.Published), excelize.Published(false)},
|
|
|
|
{new(excelize.FitToPage), excelize.FitToPage(true)},
|
|
|
|
{new(excelize.AutoPageBreaks), excelize.AutoPageBreaks(true)},
|
2018-12-14 03:01:36 +08:00
|
|
|
{new(excelize.OutlineSummaryBelow), excelize.OutlineSummaryBelow(false)},
|
2018-12-27 18:51:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, test := range testData {
|
|
|
|
t.Run(fmt.Sprintf("TestData%d", i), func(t *testing.T) {
|
|
|
|
|
|
|
|
opt := test.nonDefault
|
|
|
|
t.Logf("option %T", opt)
|
|
|
|
|
|
|
|
def := deepcopy.Copy(test.container).(excelize.SheetPrOptionPtr)
|
|
|
|
val1 := deepcopy.Copy(def).(excelize.SheetPrOptionPtr)
|
|
|
|
val2 := deepcopy.Copy(def).(excelize.SheetPrOptionPtr)
|
|
|
|
|
2019-04-30 18:39:27 +08:00
|
|
|
f := excelize.NewFile()
|
2018-12-27 18:51:44 +08:00
|
|
|
// Get the default value
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, def), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
// Get again and check
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, val1), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
if !assert.Equal(t, val1, def, opt) {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
// Set the same value
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.SetSheetPrOptions(sheet, val1), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
// Get again and check
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, val1), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
if !assert.Equal(t, val1, def, "%T: value should not have changed", opt) {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
// Set a different value
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.SetSheetPrOptions(sheet, test.nonDefault), opt)
|
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, val1), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
// Get again and compare
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, val2), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
if !assert.Equal(t, val1, val2, "%T: value should not have changed", opt) {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
// Value should not be the same as the default
|
|
|
|
if !assert.NotEqual(t, def, val1, "%T: value should have changed from default", opt) {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
// Restore the default value
|
2019-04-30 18:39:27 +08:00
|
|
|
assert.NoError(t, f.SetSheetPrOptions(sheet, def), opt)
|
|
|
|
assert.NoError(t, f.GetSheetPrOptions(sheet, val1), opt)
|
2018-12-27 18:51:44 +08:00
|
|
|
if !assert.Equal(t, def, val1) {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
})
|
2017-11-14 22:09:50 +08:00
|
|
|
}
|
|
|
|
}
|