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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
///////////////////////////////////////////////////////////////////////////////
// Name: tests/longlong/longlong.cpp
// Purpose: wxLongLong unit test
// Author: Vadim Zeitlin, Wlodzimierz ABX Skiba
// Created: 2004-04-01
// Copyright: (c) 2004 Vadim Zeitlin, Wlodzimierz Skiba
///////////////////////////////////////////////////////////////////////////////
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
#include "testprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif // WX_PRECOMP
#include "wx/longlong.h"
#include "wx/timer.h"
#if wxUSE_LONGLONG
// ----------------------------------------------------------------------------
// helpers for testing
// ----------------------------------------------------------------------------
// number of iterations in loops
#define ITEMS 1000
// make a 64 bit number from 4 16 bit ones
#define MAKE_LL(x1, x2, x3, x4) wxLongLong((x1 << 16) | x2, (x3 << 16) | x3)
// get a random 64 bit number
#define RAND_LL() MAKE_LL(rand(), rand(), rand(), rand())
static const long testLongs[] =
{
0,
1,
-1,
LONG_MAX,
LONG_MIN,
0x1234,
-0x1234
};
// ----------------------------------------------------------------------------
// test class
// ----------------------------------------------------------------------------
class LongLongTestCase : public CppUnit::TestCase
{
public:
LongLongTestCase();
private:
CPPUNIT_TEST_SUITE( LongLongTestCase );
CPPUNIT_TEST( Conversion );
CPPUNIT_TEST( Comparison );
CPPUNIT_TEST( Addition );
CPPUNIT_TEST( Multiplication );
CPPUNIT_TEST( Division );
CPPUNIT_TEST( BitOperations );
CPPUNIT_TEST( ToString );
CPPUNIT_TEST( LoHi );
CPPUNIT_TEST( Limits );
CPPUNIT_TEST_SUITE_END();
void Conversion();
void Comparison();
void Addition();
void Multiplication();
void Division();
void BitOperations();
void ToString();
void LoHi();
void Limits();
DECLARE_NO_COPY_CLASS(LongLongTestCase)
};
// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( LongLongTestCase );
// also include in its own registry so that these tests can be run alone
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( LongLongTestCase, "LongLongTestCase" );
LongLongTestCase::LongLongTestCase()
{
srand((unsigned)time(NULL));
}
void LongLongTestCase::Conversion()
{
for ( size_t n = 0; n < ITEMS; n++ )
{
wxLongLong a = RAND_LL();
wxLongLong b(a.GetHi(), a.GetLo());
CPPUNIT_ASSERT( a == b );
#if wxUSE_LONGLONG_WX
wxLongLongWx c(a.GetHi(), a.GetLo());
CPPUNIT_ASSERT( a == c );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative d(a.GetHi(), a.GetLo());
CPPUNIT_ASSERT( a == d );
#endif
}
}
void LongLongTestCase::Comparison()
{
static const long ls[2] =
{
0x1234,
-0x1234,
};
wxLongLong lls[2];
lls[0] = ls[0];
lls[1] = ls[1];
for ( size_t n = 0; n < WXSIZEOF(testLongs); n++ )
{
for ( size_t m = 0; m < WXSIZEOF(lls); m++ )
{
CPPUNIT_ASSERT( (lls[m] < testLongs[n]) == (ls[m] < testLongs[n]) );
CPPUNIT_ASSERT( (lls[m] > testLongs[n]) == (ls[m] > testLongs[n]) );
CPPUNIT_ASSERT( (lls[m] <= testLongs[n]) == (ls[m] <= testLongs[n]) );
CPPUNIT_ASSERT( (lls[m] >= testLongs[n]) == (ls[m] >= testLongs[n]) );
CPPUNIT_ASSERT( (lls[m] != testLongs[n]) == (ls[m] != testLongs[n]) );
CPPUNIT_ASSERT( (lls[m] == testLongs[n]) == (ls[m] == testLongs[n]) );
}
}
}
void LongLongTestCase::Addition()
{
for ( size_t n = 0; n < ITEMS; n++ )
{
wxLongLong a = RAND_LL();
wxLongLong b = RAND_LL();
wxLongLong c = a + b;
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative a1 = a;
wxLongLongNative b1 = b;
wxLongLongNative c1 = a1 + b1;
CPPUNIT_ASSERT( c == c1 );
#endif
#if wxUSE_LONGLONG_WX
wxLongLongWx a2 = a;
wxLongLongWx b2 = b;
wxLongLongWx c2 = a2 + b2;
CPPUNIT_ASSERT( c == c2 );
#endif
}
}
void LongLongTestCase::Multiplication()
{
for ( size_t n = 0; n < ITEMS; n++ )
{
wxLongLong a = RAND_LL();
wxLongLong b = RAND_LL();
wxLongLong c = a*b;
wxLongLong a1(a.GetHi(), a.GetLo());
wxLongLong b1(b.GetHi(), b.GetLo());
wxLongLong c1 = a1*b1;
CPPUNIT_ASSERT( c1 == c );
#if wxUSE_LONGLONG_WX
wxLongLongWx a2(a.GetHi(), a.GetLo());
wxLongLongWx b2(b.GetHi(), b.GetLo());
wxLongLongWx c2 = a2*b2;
CPPUNIT_ASSERT( c2 == c );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative a3(a.GetHi(), a.GetLo());
wxLongLongNative b3(b.GetHi(), b.GetLo());
wxLongLongNative c3 = a3*b3;
CPPUNIT_ASSERT( c3 == c );
#endif
}
}
void LongLongTestCase::Division()
{
for ( size_t n = 0; n < ITEMS; n++ )
{
// get a random wxLongLong (shifting by 12 the MSB ensures that the
// multiplication will not overflow)
wxLongLong a = MAKE_LL((rand() >> 12), rand(), rand(), rand());
// get a random (but non null) long (not wxLongLong for now) divider
long l;
do
{
l = rand();
}
while ( !l );
wxLongLong q = a / l;
wxLongLong r = a % l;
CPPUNIT_ASSERT( a == ( q * l + r ) );
#if wxUSE_LONGLONG_WX
wxLongLongWx a1(a.GetHi(), a.GetLo());
wxLongLongWx q1 = a1 / l;
wxLongLongWx r1 = a1 % l;
CPPUNIT_ASSERT( q == q1 );
CPPUNIT_ASSERT( r == r1 );
CPPUNIT_ASSERT( a1 == ( q1 * l + r1 ) );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative a2(a.GetHi(), a.GetLo());
wxLongLongNative q2 = a2 / l;
wxLongLongNative r2 = a2 % l;
CPPUNIT_ASSERT( q == q2 );
CPPUNIT_ASSERT( r == r2 );
CPPUNIT_ASSERT( a2 == ( q2 * l + r2 ) );
#endif
}
}
void LongLongTestCase::BitOperations()
{
for ( size_t m = 0; m < ITEMS; m++ )
{
wxLongLong a = RAND_LL();
for ( size_t n = 0; n < 33; n++ )
{
wxLongLong b(a.GetHi(), a.GetLo()), c, d = b, e;
d >>= n;
c = b >> n;
CPPUNIT_ASSERT( c == d );
d <<= n;
e = c << n;
CPPUNIT_ASSERT( d == e );
#if wxUSE_LONGLONG_WX
wxLongLongWx b1(a.GetHi(), a.GetLo()), c1, d1 = b1, e1;
d1 >>= n;
c1 = b1 >> n;
CPPUNIT_ASSERT( c1 == d1 );
d1 <<= n;
e1 = c1 << n;
CPPUNIT_ASSERT( d1 == e1 );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative b2(a.GetHi(), a.GetLo()), c2, d2 = b2, e2;
d2 >>= n;
c2 = b2 >> n;
CPPUNIT_ASSERT( c2 == d2 );
d2 <<= n;
e2 = c2 << n;
CPPUNIT_ASSERT( d2 == e2 );
#endif
}
}
}
void LongLongTestCase::ToString()
{
wxString s1, s2;
for ( size_t n = 0; n < WXSIZEOF(testLongs); n++ )
{
wxLongLong a = testLongs[n];
s1 = wxString::Format(wxT("%ld"), testLongs[n]);
s2 = a.ToString();
CPPUNIT_ASSERT( s1 == s2 );
s2 = wxEmptyString;
s2 << a;
CPPUNIT_ASSERT( s1 == s2 );
#if wxUSE_LONGLONG_WX
wxLongLongWx a1 = testLongs[n];
s2 = a1.ToString();
CPPUNIT_ASSERT( s1 == s2 );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative a2 = testLongs[n];
s2 = a2.ToString();
CPPUNIT_ASSERT( s1 == s2 );
#endif
}
wxLongLong a(0x12345678, 0x87654321);
CPPUNIT_ASSERT( a.ToString() == wxT("1311768467139281697") );
a.Negate();
CPPUNIT_ASSERT( a.ToString() == wxT("-1311768467139281697") );
wxLongLong llMin(-2147483647L - 1L, 0);
CPPUNIT_ASSERT( llMin.ToString() == wxT("-9223372036854775808") );
#if wxUSE_LONGLONG_WX
wxLongLongWx a1(a.GetHi(), a.GetLo());
CPPUNIT_ASSERT( a1.ToString() == wxT("-1311768467139281697") );
a1.Negate();
CPPUNIT_ASSERT( a1.ToString() == wxT("1311768467139281697") );
#endif
#if wxUSE_LONGLONG_NATIVE
wxLongLongNative a2(a.GetHi(), a.GetLo());
CPPUNIT_ASSERT( a2.ToString() == wxT("-1311768467139281697") );
a2.Negate();
CPPUNIT_ASSERT( a2.ToString() == wxT("1311768467139281697") );
#endif
}
void LongLongTestCase::LoHi()
{
wxLongLong ll(123, 456);
CPPUNIT_ASSERT_EQUAL( 456u, ll.GetLo() );
CPPUNIT_ASSERT_EQUAL( 123, ll.GetHi() );
wxULongLong ull(987, 654);
CPPUNIT_ASSERT_EQUAL( 654u, ull.GetLo() );
CPPUNIT_ASSERT_EQUAL( 987u, ull.GetHi() );
}
void LongLongTestCase::Limits()
{
// VC6 doesn't specialize numeric_limits<> for __int64 so skip this test
// for it.
#ifndef __VISUALC6__
#if wxUSE_LONGLONG_NATIVE
CPPUNIT_ASSERT( std::numeric_limits<wxLongLong>::is_specialized );
CPPUNIT_ASSERT( std::numeric_limits<wxULongLong>::is_specialized );
wxULongLong maxval = std::numeric_limits<wxULongLong>::max();
CPPUNIT_ASSERT( maxval.ToDouble() > 0 );
#endif // wxUSE_LONGLONG_NATIVE
#endif // !__VISUALC6__
}
#endif // wxUSE_LONGLONG
|