summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/oustringbuffer/test_oustringbuffer_utf32.cxx
blob: 53f7382857612f1c0da67f2176ee69fde7000869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* -*- 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/TestAssert.h>
#include <cppunit/extensions/HelperMacros.h>
#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>
#include <rtl/ustring.h>
#include <rtl/ustring.hxx>

namespace test { namespace oustringbuffer {

class Utf32: public CppUnit::TestFixture {
private:
    void appendUtf32();

    void insertUtf32();

    CPPUNIT_TEST_SUITE(Utf32);
    CPPUNIT_TEST(appendUtf32);
    CPPUNIT_TEST(insertUtf32);
    CPPUNIT_TEST_SUITE_END();
};

} }

CPPUNIT_TEST_SUITE_REGISTRATION(test::oustringbuffer::Utf32);

namespace {

void appendString(OStringBuffer & buffer, OUString const & string) {
    buffer.append('"');
    for (int i = 0; i < string.getLength(); ++i) {
        buffer.append("\\u");
        sal_Unicode c = string[i];
        if (c < 0x1000) {
            buffer.append('0');
            if (c < 0x100) {
                buffer.append('0');
                if (c < 0x10) {
                    buffer.append('0');
                }
            }
        }
        buffer.append(
            static_cast< sal_Int32 >(c), static_cast< sal_Int16 >(16));
    }
    buffer.append('"');
}

void createMessage(
    OStringBuffer & message, OUString const & string1,
    OUString const & string2)
{
    message.setLength(0);
    appendString(message, string1);
    message.append(" vs. ");
    appendString(message, string2);
}

}

void test::oustringbuffer::Utf32::appendUtf32() {
    int const str1Len = 3;
    sal_Unicode const str1[str1Len] = { 'a', 'b', 'c' };
    int const str2Len = 4;
    sal_Unicode const str2[str2Len] = { 'a', 'b', 'c', 'd' };
    int const str3Len = 6;
    sal_Unicode const str3[str3Len] = { 'a', 'b', 'c', 'd', 0xD800, 0xDC00 };
    OStringBuffer message;
    OUStringBuffer buf1(OUString(str1, str1Len));
    buf1.appendUtf32('d');
    OUString res1(buf1.makeStringAndClear());
    createMessage(message, res1, OUString(str2, str2Len));
    CPPUNIT_ASSERT_EQUAL_MESSAGE(
        message.getStr(), OUString(str2, str2Len), res1);
    OUStringBuffer buf2(OUString(str2, str2Len));
    buf2.appendUtf32(0x10000);
    OUString res2(buf2.makeStringAndClear());
    createMessage(message, res2, OUString(str3, str3Len));
    CPPUNIT_ASSERT_EQUAL_MESSAGE(
        message.getStr(), OUString(str3, str3Len), res2);
}

void test::oustringbuffer::Utf32::insertUtf32() {
    int const str1Len = 3;
    sal_Unicode const str1[str1Len] = { 'a', 'b', 'c' };
    int const str2Len = 4;
    sal_Unicode const str2[str2Len] = { 'a', 'b', 'd', 'c' };
    int const str3Len = 6;
    sal_Unicode const str3[str3Len] = { 'a', 'b', 0xDBFF, 0xDFFF, 'd', 'c' };
    OStringBuffer message;
    OUStringBuffer buf1(OUString(str1, str1Len));
    buf1.insertUtf32(2, 'd');
    OUString res1(buf1.makeStringAndClear());
    createMessage(message, res1, OUString(str2, str2Len));
    CPPUNIT_ASSERT_EQUAL_MESSAGE(
        message.getStr(), OUString(str2, str2Len), res1);
    OUStringBuffer buf2(OUString(str2, str2Len));
    buf2.insertUtf32(2, 0x10FFFF);
    OUString res2(buf2.makeStringAndClear());
    createMessage(message, res2, OUString(str3, str3Len));
    CPPUNIT_ASSERT_EQUAL_MESSAGE(
        message.getStr(), OUString(str3, str3Len), res2);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */