Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <sal/types.h>
21 : #include <cppunit/TestFixture.h>
22 : #include <cppunit/extensions/HelperMacros.h>
23 : #include "rtl/string.h"
24 : #include "rtl/ustring.hxx"
25 :
26 : namespace test { namespace oustring {
27 :
28 9 : class Compare: public CppUnit::TestFixture
29 : {
30 : private:
31 : void equalsIgnoreAsciiCaseAscii();
32 :
33 : void compareToAscii();
34 :
35 : void compareToIgnoreAsciiCase();
36 :
37 2 : CPPUNIT_TEST_SUITE(Compare);
38 1 : CPPUNIT_TEST(equalsIgnoreAsciiCaseAscii);
39 1 : CPPUNIT_TEST(compareToAscii);
40 1 : CPPUNIT_TEST(compareToIgnoreAsciiCase);
41 2 : CPPUNIT_TEST_SUITE_END();
42 : };
43 :
44 : } }
45 :
46 1 : CPPUNIT_TEST_SUITE_REGISTRATION(test::oustring::Compare);
47 :
48 1 : void test::oustring::Compare::equalsIgnoreAsciiCaseAscii()
49 : {
50 1 : CPPUNIT_ASSERT(!rtl::OUString().equalsIgnoreAsciiCaseAscii("abc"));
51 2 : CPPUNIT_ASSERT(!rtl::OUString().equalsIgnoreAsciiCaseAsciiL(
52 1 : RTL_CONSTASCII_STRINGPARAM("abc")));
53 2 : CPPUNIT_ASSERT(!rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("abc")).
54 1 : equalsIgnoreAsciiCaseAscii(""));
55 2 : CPPUNIT_ASSERT(!rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("abc")).
56 1 : equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("")));
57 :
58 2 : CPPUNIT_ASSERT(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("abc")).
59 1 : equalsIgnoreAsciiCaseAscii("abc"));
60 2 : CPPUNIT_ASSERT(!rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("abcd")).
61 1 : equalsIgnoreAsciiCaseAscii("abc"));
62 2 : CPPUNIT_ASSERT(!rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("abc")).
63 1 : equalsIgnoreAsciiCaseAscii("abcd"));
64 1 : }
65 :
66 1 : void test::oustring::Compare::compareToAscii()
67 : {
68 : // The different overloads of compareToAscii exhibit potentially confusing
69 : // behavior:
70 1 : rtl::OUString abc("abc");
71 1 : CPPUNIT_ASSERT(abc.compareToAscii("a") > 0);
72 2 : CPPUNIT_ASSERT_EQUAL(
73 2 : sal_Int32(0), abc.compareToAscii(RTL_CONSTASCII_STRINGPARAM("a")));
74 1 : }
75 :
76 1 : void test::oustring::Compare::compareToIgnoreAsciiCase()
77 : {
78 2 : CPPUNIT_ASSERT_EQUAL(
79 : sal_Int32(0),
80 1 : rtl::OUString("abc").compareToIgnoreAsciiCase(rtl::OUString("ABC")));
81 2 : CPPUNIT_ASSERT(
82 : rtl::OUString("ABC").compareToIgnoreAsciiCase(rtl::OUString("abcdef"))
83 1 : < 0);
84 2 : CPPUNIT_ASSERT(
85 1 : rtl::OUString("A").compareToIgnoreAsciiCase(rtl::OUString("_")) > 0);
86 4 : }
87 :
88 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|