-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
table: fix escaping of future functions
- Loading branch information
Showing
5 changed files
with
191 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
############################################################################### | ||
# | ||
# Tests the output of Excel::Writer::XLSX against Excel generated files. | ||
# | ||
# Copyright 2000-2023, John McNamara, [email protected] | ||
# | ||
# SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later | ||
# | ||
|
||
use lib 't/lib'; | ||
use TestFunctions qw(_compare_xlsx_files _is_deep_diff); | ||
use strict; | ||
use warnings; | ||
|
||
use Test::More tests => 1; | ||
|
||
############################################################################### | ||
# | ||
# Tests setup. | ||
# | ||
my $filename = 'table35.xlsx'; | ||
my $dir = 't/regression/'; | ||
my $got_filename = $dir . "ewx_$filename"; | ||
my $exp_filename = $dir . 'xlsx_files/' . $filename; | ||
|
||
|
||
my $ignore_members = [ 'xl/calcChain.xml', '\[Content_Types\].xml', 'xl/_rels/workbook.xml.rels' ]; | ||
my $ignore_elements = { 'xl/workbook.xml' => ['<workbookView'] }; | ||
|
||
############################################################################### | ||
# | ||
# Test the creation of a simple Excel::Writer::XLSX file with tables. | ||
# | ||
use Excel::Writer::XLSX; | ||
|
||
my $workbook = Excel::Writer::XLSX->new( $got_filename ); | ||
my $worksheet = $workbook->add_worksheet(); | ||
|
||
my $format1 = $workbook->add_format( num_format => "0.0000" ); | ||
|
||
my $data = [ | ||
[ 'Foo', 1234, 0, 4321 ], | ||
[ 'Bar', 1256, 0, 4320 ], | ||
[ 'Baz', 2234, 0, 4332 ], | ||
[ 'Bop', 1324, 0, 4333 ], | ||
]; | ||
|
||
|
||
# Set the column width to match the target worksheet. | ||
$worksheet->set_column('C:F', 10.288); | ||
|
||
# Add the table. | ||
$worksheet->add_table( | ||
'C2:F6', | ||
{ | ||
data => $data, | ||
columns => [ | ||
{}, | ||
{}, | ||
{}, | ||
{ formula => 'BASE(0,2)', format => $format1 } | ||
], | ||
} | ||
); | ||
|
||
$workbook->close(); | ||
|
||
|
||
############################################################################### | ||
# | ||
# Compare the generated and existing Excel files. | ||
# | ||
|
||
my ( $got, $expected, $caption ) = _compare_xlsx_files( | ||
|
||
$got_filename, | ||
$exp_filename, | ||
$ignore_members, | ||
$ignore_elements, | ||
); | ||
|
||
_is_deep_diff( $got, $expected, $caption ); | ||
|
||
|
||
############################################################################### | ||
# | ||
# Cleanup. | ||
# | ||
unlink $got_filename; | ||
|
||
__END__ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
############################################################################### | ||
# | ||
# Tests the output of Excel::Writer::XLSX against Excel generated files. | ||
# | ||
# Copyright 2000-2023, John McNamara, [email protected] | ||
# | ||
# SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later | ||
# | ||
|
||
use lib 't/lib'; | ||
use TestFunctions qw(_compare_xlsx_files _is_deep_diff); | ||
use strict; | ||
use warnings; | ||
|
||
use Test::More tests => 1; | ||
|
||
############################################################################### | ||
# | ||
# Tests setup. | ||
# | ||
my $filename = 'table36.xlsx'; | ||
my $dir = 't/regression/'; | ||
my $got_filename = $dir . "ewx_$filename"; | ||
my $exp_filename = $dir . 'xlsx_files/' . $filename; | ||
|
||
my $ignore_members = [ 'xl/calcChain.xml', '\[Content_Types\].xml', 'xl/_rels/workbook.xml.rels' ]; | ||
my $ignore_elements = { 'xl/workbook.xml' => ['<workbookView'] }; | ||
|
||
|
||
############################################################################### | ||
# | ||
# Test the creation of a simple Excel::Writer::XLSX file with tables. | ||
# | ||
use Excel::Writer::XLSX; | ||
|
||
my $workbook = Excel::Writer::XLSX->new( $got_filename ); | ||
my $worksheet = $workbook->add_worksheet(); | ||
|
||
# Set the column width to match the target worksheet. | ||
$worksheet->set_column('C:F', 10.288); | ||
|
||
# Write some strings to order the string table. | ||
$worksheet->write_string('A1', 'Column1'); | ||
$worksheet->write_string('B1', 'Column2'); | ||
$worksheet->write_string('C1', 'Column3'); | ||
$worksheet->write_string('D1', 'Column4'); | ||
$worksheet->write_string('E1', 'Total'); | ||
|
||
# Add the table. | ||
$worksheet->add_table( | ||
'C3:F14', | ||
{ | ||
total_row => 1, | ||
columns => [ | ||
{ total_string => 'Total' }, | ||
{ total_function => 'BASE(0,2)' }, | ||
{ total_function => '=SUM([Column3])' }, | ||
{ total_function => 'count' }, | ||
], | ||
|
||
} | ||
); | ||
|
||
|
||
|
||
$workbook->close(); | ||
|
||
|
||
############################################################################### | ||
# | ||
# Compare the generated and existing Excel files. | ||
# | ||
|
||
my ( $got, $expected, $caption ) = _compare_xlsx_files( | ||
|
||
$got_filename, | ||
$exp_filename, | ||
$ignore_members, | ||
$ignore_elements, | ||
); | ||
|
||
_is_deep_diff( $got, $expected, $caption ); | ||
|
||
|
||
############################################################################### | ||
# | ||
# Cleanup. | ||
# | ||
unlink $got_filename; | ||
|
||
__END__ |
Binary file not shown.
Binary file not shown.