diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2022-10-04 19:56:52 +1100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-10-05 11:18:36 +0200 |
commit | 379ea0bb9e4836b212e004fd93abfc8067ec8929 (patch) | |
tree | c72fefebac5e0ef104646e442e8210af2e7a887c /unotools | |
parent | bf3df0fc73fc3757d3abb94465d5bcb2106c355f (diff) |
unotools: test ConvertChar::RecodeString()
Change-Id: I1f82afe7e1ac57004723f67412f1a7007d107eff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140938
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/CppunitTest_unotools_fontcvt.mk | 30 | ||||
-rw-r--r-- | unotools/Module_unotools.mk | 1 | ||||
-rw-r--r-- | unotools/qa/unit/testRecodeString.cxx | 45 |
3 files changed, 76 insertions, 0 deletions
diff --git a/unotools/CppunitTest_unotools_fontcvt.mk b/unotools/CppunitTest_unotools_fontcvt.mk new file mode 100644 index 000000000000..16236c16c5d1 --- /dev/null +++ b/unotools/CppunitTest_unotools_fontcvt.mk @@ -0,0 +1,30 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_CppunitTest_CppunitTest,unotools_fontcvt)) + +$(eval $(call gb_CppunitTest_use_external,unotools_fontcvt,boost_headers)) + +$(eval $(call gb_CppunitTest_use_sdk_api,unotools_fontcvt)) + +$(eval $(call gb_CppunitTest_add_exception_objects,unotools_fontcvt, \ + unotools/qa/unit/testRecodeString \ +)) + +$(eval $(call gb_CppunitTest_use_libraries,unotools_fontcvt, \ + comphelper \ + cppu \ + cppuhelper \ + tl \ + sal \ + svt \ + utl \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/unotools/Module_unotools.mk b/unotools/Module_unotools.mk index e069960530c3..d2e13a8520d8 100644 --- a/unotools/Module_unotools.mk +++ b/unotools/Module_unotools.mk @@ -19,6 +19,7 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,unotools,\ $(eval $(call gb_Module_add_check_targets,unotools,\ CppunitTest_unotools_configpaths \ CppunitTest_unotools_fontdefs \ + CppunitTest_unotools_fontcvt \ )) # vim: set noet sw=4 ts=4: diff --git a/unotools/qa/unit/testRecodeString.cxx b/unotools/qa/unit/testRecodeString.cxx new file mode 100644 index 000000000000..31e26257b96f --- /dev/null +++ b/unotools/qa/unit/testRecodeString.cxx @@ -0,0 +1,45 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + */ + +#include <config_options.h> + +#include <cppunit/TestFixture.h> +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/plugin/TestPlugIn.h> + +#include <unotools/fontcvt.hxx> +#include <unotools/fontdefs.hxx> + +class Test : public CppUnit::TestFixture +{ +public: + void testRecodeString(); + + CPPUNIT_TEST_SUITE(Test); + CPPUNIT_TEST(testRecodeString); + + CPPUNIT_TEST_SUITE_END(); +}; + +void Test::testRecodeString() +{ +// note, the below won't work with mergelibs as the class is not visible to the linker +#if !ENABLE_MERGELIBS + ConvertChar const* pConversion = ConvertChar::GetRecodeData(u"starbats", u"opensymbol"); + OUString aStr(u"u"); + pConversion->RecodeString(aStr, 0, 1); + CPPUNIT_ASSERT_EQUAL(OUString(u""), aStr); +#endif +} + +CPPUNIT_TEST_SUITE_REGISTRATION(Test); +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |