2021-08-22 20:23:18 +08:00
|
|
|
// Copyright (c) 2014-2021 Thomas Fussell
|
2017-04-14 07:01:30 +08:00
|
|
|
//
|
|
|
|
// 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
|
2021-08-22 20:23:18 +08:00
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2017-04-14 07:01:30 +08:00
|
|
|
// 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
|
|
|
|
|
2016-07-17 06:42:56 +08:00
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2018-07-05 16:47:24 +08:00
|
|
|
#include <helpers/test_suite.hpp>
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2018-07-05 17:26:29 +08:00
|
|
|
#include <xlnt/cell/rich_text.hpp>
|
|
|
|
|
2017-04-14 07:01:30 +08:00
|
|
|
class rich_text_test_suite : public test_suite
|
2016-07-17 06:42:56 +08:00
|
|
|
{
|
|
|
|
public:
|
2017-04-14 07:01:30 +08:00
|
|
|
rich_text_test_suite()
|
2017-04-14 02:51:35 +08:00
|
|
|
{
|
2017-04-14 07:01:30 +08:00
|
|
|
register_test(test_operators);
|
2018-07-10 13:19:56 +08:00
|
|
|
register_test(test_runs);
|
2018-11-21 21:43:31 +08:00
|
|
|
register_test(test_phonetic_runs);
|
|
|
|
register_test(test_phonetic_properties);
|
2017-04-14 02:51:35 +08:00
|
|
|
}
|
|
|
|
|
2016-07-17 06:42:56 +08:00
|
|
|
void test_operators()
|
|
|
|
{
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text text1;
|
|
|
|
xlnt::rich_text text2;
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_equals(text1, text2);
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_default;
|
2016-07-17 06:42:56 +08:00
|
|
|
text1.add_run(run_default);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text1, text2);
|
2016-07-17 06:42:56 +08:00
|
|
|
text2.add_run(run_default);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_equals(text1, text2);
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_formatted;
|
|
|
|
xlnt::font run_font;
|
|
|
|
run_font.color(xlnt::color::green());
|
|
|
|
run_font.name("Cambria");
|
|
|
|
run_font.scheme("ascheme");
|
|
|
|
run_font.size(40);
|
|
|
|
run_font.family(17);
|
|
|
|
run_formatted.second = run_font;
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text text_formatted;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_formatted.add_run(run_formatted);
|
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_color_differs = run_formatted;
|
|
|
|
run_font = xlnt::font();
|
|
|
|
run_font.color(xlnt::color::red());
|
|
|
|
run_color_differs.second = run_font;
|
|
|
|
xlnt::rich_text text_color_differs;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_color_differs.add_run(run_color_differs);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text_formatted, text_color_differs);
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_font_differs = run_formatted;
|
|
|
|
run_font = xlnt::font();
|
|
|
|
run_font.name("Calibri");
|
|
|
|
run_font_differs.second = run_font;
|
|
|
|
xlnt::rich_text text_font_differs;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_font_differs.add_run(run_font_differs);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text_formatted, text_font_differs);
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_scheme_differs = run_formatted;
|
|
|
|
run_font = xlnt::font();
|
|
|
|
run_font.scheme("bscheme");
|
|
|
|
run_scheme_differs.second = run_font;
|
|
|
|
xlnt::rich_text text_scheme_differs;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_scheme_differs.add_run(run_scheme_differs);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text_formatted, text_scheme_differs);
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_size_differs = run_formatted;
|
|
|
|
run_font = xlnt::font();
|
|
|
|
run_font.size(41);
|
|
|
|
run_size_differs.second = run_font;
|
|
|
|
xlnt::rich_text text_size_differs;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_size_differs.add_run(run_size_differs);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text_formatted, text_size_differs);
|
2016-07-17 06:42:56 +08:00
|
|
|
|
2016-12-23 19:51:30 +08:00
|
|
|
xlnt::rich_text_run run_family_differs = run_formatted;
|
|
|
|
run_font = xlnt::font();
|
|
|
|
run_font.family(18);
|
|
|
|
run_family_differs.second = run_font;
|
|
|
|
xlnt::rich_text text_family_differs;
|
2016-07-17 06:42:56 +08:00
|
|
|
text_family_differs.add_run(run_family_differs);
|
2017-04-19 06:30:54 +08:00
|
|
|
xlnt_assert_differs(text_formatted, text_family_differs);
|
2016-07-17 06:42:56 +08:00
|
|
|
}
|
2018-07-10 13:19:56 +08:00
|
|
|
|
|
|
|
void test_runs()
|
|
|
|
{
|
|
|
|
xlnt::rich_text rt;
|
|
|
|
xlnt_assert(rt.runs().empty());
|
|
|
|
std::vector<xlnt::rich_text_run> test_runs{xlnt::rich_text_run{"1_abc_test_123"}, xlnt::rich_text_run{"2_abc_test_123"}, xlnt::rich_text_run{"3_abc_test_123"}};
|
|
|
|
// just one
|
|
|
|
rt.add_run(test_runs[0]);
|
|
|
|
xlnt_assert_equals(1, rt.runs().size());
|
|
|
|
xlnt_assert_equals(test_runs[0], rt.runs()[0]);
|
|
|
|
// whole set
|
|
|
|
rt.runs(test_runs);
|
|
|
|
xlnt_assert_equals(test_runs, rt.runs());
|
|
|
|
}
|
2018-11-21 21:43:31 +08:00
|
|
|
|
|
|
|
void test_phonetic_runs()
|
|
|
|
{
|
|
|
|
xlnt::rich_text rt;
|
|
|
|
rt.plain_text("取引", true);
|
|
|
|
rt.add_phonetic_run({"トリヒキ", 0, 2});
|
|
|
|
|
|
|
|
xlnt_assert_equals(rt.phonetic_runs().size(), 1);
|
|
|
|
xlnt_assert_equals(rt.phonetic_runs()[0].text, "トリヒキ");
|
|
|
|
xlnt_assert_equals(rt.phonetic_runs()[0].start, 0);
|
|
|
|
xlnt_assert_equals(rt.phonetic_runs()[0].end, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_phonetic_properties()
|
|
|
|
{
|
|
|
|
xlnt::rich_text rt;
|
|
|
|
xlnt::phonetic_pr ph(1);
|
|
|
|
ph.type(xlnt::phonetic_pr::type_from_string("fullwidthKatakana"));
|
|
|
|
ph.alignment(xlnt::phonetic_pr::alignment_from_string("Center"));
|
|
|
|
rt.phonetic_properties(ph);
|
|
|
|
|
|
|
|
xlnt_assert_equals(rt.has_phonetic_properties(), true);
|
|
|
|
xlnt_assert_equals(rt.phonetic_properties().has_type(), true);
|
|
|
|
xlnt_assert_equals(rt.phonetic_properties().has_alignment(), true);
|
|
|
|
}
|
2016-07-17 06:42:56 +08:00
|
|
|
};
|
2020-02-09 01:12:59 +08:00
|
|
|
static rich_text_test_suite x{};
|