xlnt/tests/styles/conditional_format_test_suite.cpp

65 lines
2.5 KiB
C++

// Copyright (c) 2014-2021 Thomas Fussell
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE
//
// @license: http://www.opensource.org/licenses/mit-license.php
// @author: see AUTHORS file
#include <xlnt/styles/conditional_format.hpp>
#include <helpers/test_suite.hpp>
#include <xlnt/xlnt.hpp>
class conditional_format_test_suite : public test_suite
{
public:
conditional_format_test_suite()
{
register_test(test_all);
}
void test_all()
{
xlnt::workbook wb;
auto ws = wb.active_sheet();
auto format = ws.conditional_format(xlnt::range_reference("A1:A10"), xlnt::condition::text_contains("test"));
xlnt_assert(!format.has_border());
xlnt_assert(!format.has_fill());
xlnt_assert(!format.has_font());
// set border
auto border = xlnt::border().diagonal(xlnt::diagonal_direction::both);
format.border(border);
xlnt_assert(format.has_border());
xlnt_assert_equals(format.border(), border);
// set fill
auto fill = xlnt::fill(xlnt::gradient_fill().type(xlnt::gradient_fill_type::path));
format.fill(fill);
xlnt_assert(format.has_fill());
xlnt_assert_equals(format.fill(), fill);
// set font
auto font = xlnt::font().color(xlnt::color::darkblue());
format.font(font);
xlnt_assert(format.has_font());
xlnt_assert_equals(format.font(), font);
// copy ctor
auto format_copy(format);
xlnt_assert_equals(format, format_copy);
}
};
static conditional_format_test_suite x;