bump product version to 5.0.4.1
[LibreOffice.git] / sal / qa / rtl / strings / test_oustring_compare.cxx
blob051d9e7a66b4262a018bb58e22e623f5370bebd0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
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"
26 namespace test { namespace oustring {
28 class Compare: public CppUnit::TestFixture
30 private:
31 void equalsIgnoreAsciiCaseAscii();
33 void compareToIgnoreAsciiCase();
35 CPPUNIT_TEST_SUITE(Compare);
36 CPPUNIT_TEST(equalsIgnoreAsciiCaseAscii);
37 CPPUNIT_TEST(compareToIgnoreAsciiCase);
38 CPPUNIT_TEST_SUITE_END();
41 } }
43 CPPUNIT_TEST_SUITE_REGISTRATION(test::oustring::Compare);
45 void test::oustring::Compare::equalsIgnoreAsciiCaseAscii()
47 const char* const abc = "abc";
48 const char* const abcd = "abcd";
49 const char* const empty = "";
50 CPPUNIT_ASSERT(!rtl::OUString().equalsIgnoreAsciiCaseAscii(abc));
51 CPPUNIT_ASSERT(!rtl::OUString().equalsIgnoreAsciiCaseAsciiL(abc,3));
52 CPPUNIT_ASSERT(!rtl::OUString("abc").
53 equalsIgnoreAsciiCaseAscii(empty));
54 CPPUNIT_ASSERT(!rtl::OUString("abc").
55 equalsIgnoreAsciiCaseAsciiL(empty,0));
57 CPPUNIT_ASSERT(rtl::OUString("abc").
58 equalsIgnoreAsciiCaseAscii(abc));
59 CPPUNIT_ASSERT(!rtl::OUString("abcd").
60 equalsIgnoreAsciiCaseAscii(abc));
61 CPPUNIT_ASSERT(!rtl::OUString("abc").
62 equalsIgnoreAsciiCaseAscii(abcd));
65 void test::oustring::Compare::compareToIgnoreAsciiCase()
67 CPPUNIT_ASSERT_EQUAL(
68 sal_Int32(0),
69 rtl::OUString("abc").compareToIgnoreAsciiCase(rtl::OUString("ABC")));
70 CPPUNIT_ASSERT(
71 rtl::OUString("ABC").compareToIgnoreAsciiCase(rtl::OUString("abcdef"))
72 < 0);
73 CPPUNIT_ASSERT(
74 rtl::OUString("A").compareToIgnoreAsciiCase(rtl::OUString("_")) > 0);
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */