123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // 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 <ctime>
- #include <iostream>
- #include <sstream>
- #include <helpers/test_suite.hpp>
- #include <xlnt/cell/rich_text.hpp>
- class rich_text_test_suite : public test_suite
- {
- public:
- rich_text_test_suite()
- {
- register_test(test_operators);
- register_test(test_runs);
- register_test(test_phonetic_runs);
- register_test(test_phonetic_properties);
- }
- void test_operators()
- {
- xlnt::rich_text text1;
- xlnt::rich_text text2;
- xlnt_assert_equals(text1, text2);
- xlnt::rich_text_run run_default;
- text1.add_run(run_default);
- xlnt_assert_differs(text1, text2);
- text2.add_run(run_default);
- xlnt_assert_equals(text1, text2);
- 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;
- xlnt::rich_text text_formatted;
- text_formatted.add_run(run_formatted);
- 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;
- text_color_differs.add_run(run_color_differs);
- xlnt_assert_differs(text_formatted, text_color_differs);
- 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;
- text_font_differs.add_run(run_font_differs);
- xlnt_assert_differs(text_formatted, text_font_differs);
- 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;
- text_scheme_differs.add_run(run_scheme_differs);
- xlnt_assert_differs(text_formatted, text_scheme_differs);
- 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;
- text_size_differs.add_run(run_size_differs);
- xlnt_assert_differs(text_formatted, text_size_differs);
- 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;
- text_family_differs.add_run(run_family_differs);
- xlnt_assert_differs(text_formatted, text_family_differs);
- }
- 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());
- }
- 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);
- }
- };
- static rich_text_test_suite x{};
|