The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
###############################################################################
#
# Tests for Excel::Writer::XLSX::Worksheet methods.
#
# reverse ('(c)'), October 2011, John McNamara, jmcnamara@cpan.org
#

use lib 't/lib';
use TestFunctions qw(_expected_to_aref _got_to_aref _is_deep_diff _new_worksheet);
use strict;
use warnings;

use Test::More tests => 1;

###############################################################################
#
# Tests setup.
#
my $expected;
my $got;
my $caption;
my $worksheet;


###############################################################################
#
# Test the _assemble_xml_file() method.
#
# Test conditional formats.
#
$caption = " \tWorksheet: _assemble_xml_file()";

$worksheet = _new_worksheet(\$got);

$worksheet->select();

# Start test code.
$worksheet->write( 'A1', 10 );
$worksheet->write( 'A2', 20 );
$worksheet->write( 'A3', 30 );
$worksheet->write( 'A4', 40 );

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => 'above',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => 'below',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => 'equal or above',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => 'equal or below',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '1 std dev above',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '1 std dev below',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '2 std dev above',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '2 std dev below',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '3 std dev above',
    }
);

$worksheet->conditional_formatting( 'A1:A4',
    {
        type     => 'average',
        format   => undef,
        criteria => '3 std dev below',
    }
);

# End test code.

$worksheet->_assemble_xml_file();

$expected = _expected_to_aref();
$got      = _got_to_aref( $got );

_is_deep_diff( $got, $expected, $caption );

__DATA__
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
  <dimension ref="A1:A4"/>
  <sheetViews>
    <sheetView tabSelected="1" workbookViewId="0"/>
  </sheetViews>
  <sheetFormatPr defaultRowHeight="15"/>
  <sheetData>
    <row r="1" spans="1:1">
      <c r="A1">
        <v>10</v>
      </c>
    </row>
    <row r="2" spans="1:1">
      <c r="A2">
        <v>20</v>
      </c>
    </row>
    <row r="3" spans="1:1">
      <c r="A3">
        <v>30</v>
      </c>
    </row>
    <row r="4" spans="1:1">
      <c r="A4">
        <v>40</v>
      </c>
    </row>
  </sheetData>
  <conditionalFormatting sqref="A1:A4">
    <cfRule type="aboveAverage" priority="1"/>
    <cfRule type="aboveAverage" priority="2" aboveAverage="0"/>
    <cfRule type="aboveAverage" priority="3" equalAverage="1"/>
    <cfRule type="aboveAverage" priority="4" aboveAverage="0" equalAverage="1"/>
    <cfRule type="aboveAverage" priority="5" stdDev="1"/>
    <cfRule type="aboveAverage" priority="6" aboveAverage="0" stdDev="1"/>
    <cfRule type="aboveAverage" priority="7" stdDev="2"/>
    <cfRule type="aboveAverage" priority="8" aboveAverage="0" stdDev="2"/>
    <cfRule type="aboveAverage" priority="9" stdDev="3"/>
    <cfRule type="aboveAverage" priority="10" aboveAverage="0" stdDev="3"/>
  </conditionalFormatting>
  <pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
</worksheet>