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
|
/* -*- 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 <sal/config.h>
#include <cppunit/TestAssert.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <rtl/string.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
namespace {
template< typename T > class Test: public CppUnit::TestFixture {
private:
CPPUNIT_TEST_SUITE(Test);
CPPUNIT_TEST(testToInt32Overflow);
CPPUNIT_TEST(testToUInt32Overflow);
CPPUNIT_TEST(testToInt64Overflow);
CPPUNIT_TEST(testToUInt64Overflow);
CPPUNIT_TEST_SUITE_END();
void testToInt32Overflow() {
CPPUNIT_ASSERT_EQUAL(sal_Int32(0), T("-2147483649").toInt32());
CPPUNIT_ASSERT_EQUAL(SAL_MIN_INT32, T("-2147483648").toInt32());
CPPUNIT_ASSERT_EQUAL(SAL_MIN_INT32 + 1, T("-2147483647").toInt32());
CPPUNIT_ASSERT_EQUAL(SAL_MAX_INT32 - 1, T("2147483646").toInt32());
CPPUNIT_ASSERT_EQUAL(SAL_MAX_INT32, T("2147483647").toInt32());
CPPUNIT_ASSERT_EQUAL(sal_Int32(0), T("2147483648").toInt32());
}
void testToUInt32Overflow() {
CPPUNIT_ASSERT_EQUAL(SAL_MAX_UINT32 - 1, T("4294967294").toUInt32());
CPPUNIT_ASSERT_EQUAL(SAL_MAX_UINT32, T("4294967295").toUInt32());
CPPUNIT_ASSERT_EQUAL(sal_uInt32(0), T("4294967296").toUInt32());
}
void testToInt64Overflow() {
CPPUNIT_ASSERT_EQUAL(sal_Int64(0), T("-9223372036854775809").toInt64());
CPPUNIT_ASSERT_EQUAL(
SAL_MIN_INT64, T("-9223372036854775808").toInt64());
CPPUNIT_ASSERT_EQUAL(
SAL_MIN_INT64 + 1, T("-9223372036854775807").toInt64());
CPPUNIT_ASSERT_EQUAL(
SAL_MAX_INT64 - 1, T("9223372036854775806").toInt64());
CPPUNIT_ASSERT_EQUAL(SAL_MAX_INT64, T("9223372036854775807").toInt64());
CPPUNIT_ASSERT_EQUAL(sal_Int64(0), T("9223372036854775808").toInt64());
}
void testToUInt64Overflow() {
CPPUNIT_ASSERT_EQUAL(
SAL_MAX_UINT64 - 1, T("18446744073709551614").toUInt64());
CPPUNIT_ASSERT_EQUAL(
SAL_MAX_UINT64, T("18446744073709551615").toUInt64());
CPPUNIT_ASSERT_EQUAL(
sal_uInt64(0), T("18446744073709551616").toUInt64());
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(Test< OString >);
CPPUNIT_TEST_SUITE_REGISTRATION(Test< OUString >);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|