summaryrefslogtreecommitdiffstats
path: root/editeng/qa/lookuptree
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:54:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:54:39 +0000
commit267c6f2ac71f92999e969232431ba04678e7437e (patch)
tree358c9467650e1d0a1d7227a21dac2e3d08b622b2 /editeng/qa/lookuptree
parentInitial commit. (diff)
downloadlibreoffice-267c6f2ac71f92999e969232431ba04678e7437e.tar.xz
libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.zip
Adding upstream version 4:24.2.0.upstream/4%24.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'editeng/qa/lookuptree')
-rw-r--r--editeng/qa/lookuptree/lookuptree_test.cxx146
1 files changed, 146 insertions, 0 deletions
diff --git a/editeng/qa/lookuptree/lookuptree_test.cxx b/editeng/qa/lookuptree/lookuptree_test.cxx
new file mode 100644
index 0000000000..486c871ca0
--- /dev/null
+++ b/editeng/qa/lookuptree/lookuptree_test.cxx
@@ -0,0 +1,146 @@
+/* -*- 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/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include <sal/types.h>
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+#include <cppunit/plugin/TestPlugIn.h>
+#include <editeng/Trie.hxx>
+
+namespace {
+
+class LookupTreeTest : public CppUnit::TestFixture
+{
+public:
+ void testTrie();
+ void testTrieGetAllEntries();
+
+ CPPUNIT_TEST_SUITE(LookupTreeTest);
+ CPPUNIT_TEST(testTrie);
+ CPPUNIT_TEST(testTrieGetAllEntries);
+ CPPUNIT_TEST_SUITE_END();
+};
+
+CPPUNIT_TEST_SUITE_REGISTRATION(LookupTreeTest);
+
+void LookupTreeTest::testTrie()
+{
+ editeng::Trie trie;
+ std::vector<OUString> suggestions;
+
+ trie.findSuggestions( u"", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(0), suggestions.size() );
+
+ trie.insert( u"" );
+ trie.findSuggestions( u"", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(0), suggestions.size() );
+
+ trie.findSuggestions( u"a", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(0), suggestions.size() );
+
+ trie.insert( u"abc" );
+ trie.insert( u"abcdefghijklmnopqrstuvwxyz" );
+ trie.findSuggestions( u"a", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(2), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("abc"), suggestions[0] );
+ CPPUNIT_ASSERT_EQUAL( OUString("abcdefghijklmnopqrstuvwxyz"), suggestions[1] );
+ suggestions.clear();
+
+ trie.findSuggestions( u"abc", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(1), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("abcdefghijklmnopqrstuvwxyz"), suggestions[0] );
+ suggestions.clear();
+
+ trie.findSuggestions( u"abe", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(0), suggestions.size() );
+ suggestions.clear();
+
+ trie.insert( u"abe" );
+ trie.findSuggestions( u"", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(3), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("abc"), suggestions[0] );
+ CPPUNIT_ASSERT_EQUAL( OUString("abcdefghijklmnopqrstuvwxyz"), suggestions[1] );
+ CPPUNIT_ASSERT_EQUAL( OUString("abe"), suggestions[2] );
+ suggestions.clear();
+
+ trie.insert( u"H31l0" );
+ trie.findSuggestions( u"H", suggestions);
+
+ CPPUNIT_ASSERT_EQUAL( size_t(1), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("H31l0"), suggestions[0] );
+ suggestions.clear();
+
+ trie.insert( u"H1" );
+ trie.findSuggestions( u"H", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(2), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("H31l0"), suggestions[0] );
+ CPPUNIT_ASSERT_EQUAL( OUString("H1"), suggestions[1] );
+ suggestions.clear();
+
+ trie.findSuggestions( u"H3", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(1), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("H31l0"), suggestions[0] );
+ suggestions.clear();
+
+ trie.insert( OStringToOUString( "H\xC3\xA4llo", RTL_TEXTENCODING_UTF8 ) );
+ trie.findSuggestions( u"H", suggestions );
+ CPPUNIT_ASSERT_EQUAL( size_t(3), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("H31l0"), suggestions[0] );
+ CPPUNIT_ASSERT_EQUAL( OUString("H1"), suggestions[1] );
+ CPPUNIT_ASSERT_EQUAL( OStringToOUString( "H\xC3\xA4llo", RTL_TEXTENCODING_UTF8 ), suggestions[2] );
+ suggestions.clear();
+
+ trie.findSuggestions( u"H3", suggestions );
+ CPPUNIT_ASSERT_EQUAL( size_t(1), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OUString("H31l0"), suggestions[0] );
+ suggestions.clear();
+
+ trie.findSuggestions( OStringToOUString("H\xC3\xA4", RTL_TEXTENCODING_UTF8), suggestions );
+ CPPUNIT_ASSERT_EQUAL( size_t(1), suggestions.size() );
+ CPPUNIT_ASSERT_EQUAL( OStringToOUString("H\xC3\xA4llo", RTL_TEXTENCODING_UTF8), suggestions[0] );
+ suggestions.clear();
+
+ trie.findSuggestions( u"", suggestions);
+ CPPUNIT_ASSERT_EQUAL( size_t(6), suggestions.size() );
+ suggestions.clear();
+}
+
+void LookupTreeTest::testTrieGetAllEntries()
+{
+ editeng::Trie trie;
+
+ CPPUNIT_ASSERT_EQUAL( size_t(0), trie.size() );
+
+ trie.insert(u"A");
+ CPPUNIT_ASSERT_EQUAL( size_t(1), trie.size() );
+
+ trie.insert(u"B");
+ trie.insert(u"C");
+ CPPUNIT_ASSERT_EQUAL( size_t(3), trie.size() );
+
+ trie.insert(u"AA");
+ trie.insert(u"AAA");
+ CPPUNIT_ASSERT_EQUAL( size_t(5), trie.size() );
+}
+
+} // namespace end
+
+CPPUNIT_PLUGIN_IMPLEMENT();
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */