-
-
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.
wip: working embed_image() with dynamic functions
- Loading branch information
Showing
3 changed files
with
79 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,71 @@ | ||
############################################################################### | ||
# | ||
# Tests the output of Excel::Writer::XLSX against Excel generated files. | ||
# | ||
# Copyright 2000-2023, John McNamara, jmcnamara@cpan.org | ||
# | ||
# 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 = 'embed_image05.xlsx'; | ||
my $dir = 't/regression/'; | ||
my $got_filename = $dir . "ewx_$filename"; | ||
my $exp_filename = $dir . 'xlsx_files/' . $filename; | ||
|
||
my $ignore_members = []; | ||
my $ignore_elements = {}; | ||
|
||
|
||
############################################################################### | ||
# | ||
# Test the creation of a simple Excel::Writer::XLSX file with image(s). | ||
# | ||
use Excel::Writer::XLSX; | ||
|
||
my $workbook = Excel::Writer::XLSX->new( $got_filename ); | ||
my $worksheet = $workbook->add_worksheet(); | ||
|
||
$worksheet->write_dynamic_array_formula( 0, 0, 2, 0, '=LEN(B1:B3)', undef, 0 ); | ||
|
||
$worksheet->embed_image( 8, 4, $dir . 'images/red.png' ); | ||
|
||
$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.