xref: /aoo41x/main/sal/qa/rtl/crc32/rtl_crc32.cxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir 
29*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
30*cdf0e10cSrcweir #include "precompiled_sal.hxx"
31*cdf0e10cSrcweir // autogenerated file with codegen.pl
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir #include <testshl/simpleheader.hxx>
34*cdf0e10cSrcweir #include <rtl/crc.h>
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir namespace rtl_CRC32
37*cdf0e10cSrcweir {
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir class test : public CppUnit::TestFixture
40*cdf0e10cSrcweir {
41*cdf0e10cSrcweir public:
42*cdf0e10cSrcweir     // initialise your test code values here.
43*cdf0e10cSrcweir     void setUp()
44*cdf0e10cSrcweir     {
45*cdf0e10cSrcweir     }
46*cdf0e10cSrcweir 
47*cdf0e10cSrcweir     void tearDown()
48*cdf0e10cSrcweir     {
49*cdf0e10cSrcweir     }
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 
52*cdf0e10cSrcweir     // insert your test code here.
53*cdf0e10cSrcweir     void rtl_crc32_001()
54*cdf0e10cSrcweir     {
55*cdf0e10cSrcweir         // this is demonstration code
56*cdf0e10cSrcweir         // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir         sal_uInt32 nCRC = 0;
59*cdf0e10cSrcweir 
60*cdf0e10cSrcweir         char buf[] = {0};
61*cdf0e10cSrcweir         int num = 0;
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir         nCRC = rtl_crc32(nCRC, buf, num);
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("empty crc buffer", nCRC == 0);
66*cdf0e10cSrcweir     }
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir     void rtl_crc32_002()
69*cdf0e10cSrcweir     {
70*cdf0e10cSrcweir         sal_uInt32 nCRC = 0;
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir         char buf[] = {0,0};
73*cdf0e10cSrcweir         int num = sizeof(buf);
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir         nCRC = rtl_crc32(nCRC, buf, num);
76*cdf0e10cSrcweir 
77*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("buffer contain 2 empty bytes, crc is zero", nCRC != 0);
78*cdf0e10cSrcweir     }
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir     void rtl_crc32_002_1()
81*cdf0e10cSrcweir     {
82*cdf0e10cSrcweir         sal_uInt32 nCRC = 0;
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir         char buf[] = {0,0,0};
85*cdf0e10cSrcweir         int num = sizeof(buf);
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir         nCRC = rtl_crc32(nCRC, buf, num);
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("buffer contain 3 empty bytes, crc is zero", nCRC != 0);
90*cdf0e10cSrcweir     }
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir     /**
93*cdf0e10cSrcweir      * crc32 check:
94*cdf0e10cSrcweir      * Build checksum on two buffers with same size but different content,
95*cdf0e10cSrcweir      * the result (crc32 checksum) must differ
96*cdf0e10cSrcweir      */
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir     void rtl_crc32_003()
99*cdf0e10cSrcweir     {
100*cdf0e10cSrcweir         sal_uInt32 nCRC1 = 0;
101*cdf0e10cSrcweir         char buf1[] = {2};
102*cdf0e10cSrcweir         int num1 = sizeof(buf1);
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir         nCRC1 = rtl_crc32(nCRC1, buf1, num1);
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir         sal_uInt32 nCRC2 = 0;
107*cdf0e10cSrcweir         char buf2[] = {3};
108*cdf0e10cSrcweir         int num2 = sizeof(buf2);
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir         nCRC2 = rtl_crc32(nCRC2, buf2, num2);
111*cdf0e10cSrcweir 
112*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("checksum should differ for buf1 and buf2", nCRC1 != nCRC2);
113*cdf0e10cSrcweir     }
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir     /** check if the crc32 only use as much values, as given
116*cdf0e10cSrcweir      *
117*cdf0e10cSrcweir      */
118*cdf0e10cSrcweir     void rtl_crc32_003_1()
119*cdf0e10cSrcweir     {
120*cdf0e10cSrcweir         sal_uInt32 nCRC1 = 0;
121*cdf0e10cSrcweir         char buf1[] = {2,1};
122*cdf0e10cSrcweir         int num1 = sizeof(buf1) - 1;
123*cdf0e10cSrcweir 
124*cdf0e10cSrcweir         nCRC1 = rtl_crc32(nCRC1, buf1, num1);
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir         sal_uInt32 nCRC2 = 0;
127*cdf0e10cSrcweir         char buf2[] = {2,2};
128*cdf0e10cSrcweir         int num2 = sizeof(buf2) - 1;
129*cdf0e10cSrcweir 
130*cdf0e10cSrcweir         nCRC2 = rtl_crc32(nCRC2, buf2, num2);
131*cdf0e10cSrcweir 
132*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("checksum leave it's bounds", nCRC1 == nCRC2);
133*cdf0e10cSrcweir     }
134*cdf0e10cSrcweir 
135*cdf0e10cSrcweir     /** check if the crc32 differ at same content in reverse order
136*cdf0e10cSrcweir      *
137*cdf0e10cSrcweir      */
138*cdf0e10cSrcweir     void rtl_crc32_003_2()
139*cdf0e10cSrcweir     {
140*cdf0e10cSrcweir         sal_uInt32 nCRC1 = 0;
141*cdf0e10cSrcweir         char buf1[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
142*cdf0e10cSrcweir         int num1 = sizeof(buf1);
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir         nCRC1 = rtl_crc32(nCRC1, buf1, num1);
145*cdf0e10cSrcweir 
146*cdf0e10cSrcweir         sal_uInt32 nCRC2 = 0;
147*cdf0e10cSrcweir         char buf2[] = {20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0};
148*cdf0e10cSrcweir         int num2 = sizeof(buf2);
149*cdf0e10cSrcweir 
150*cdf0e10cSrcweir         nCRC2 = rtl_crc32(nCRC2, buf2, num2);
151*cdf0e10cSrcweir 
152*cdf0e10cSrcweir         CPPUNIT_ASSERT_MESSAGE("checksum should differ", nCRC1 != nCRC2);
153*cdf0e10cSrcweir     }
154*cdf0e10cSrcweir 
155*cdf0e10cSrcweir 
156*cdf0e10cSrcweir 
157*cdf0e10cSrcweir     // Change the following lines only, if you add, remove or rename
158*cdf0e10cSrcweir     // member functions of the current class,
159*cdf0e10cSrcweir     // because these macros are need by auto register mechanism.
160*cdf0e10cSrcweir 
161*cdf0e10cSrcweir     CPPUNIT_TEST_SUITE(test);
162*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_001);
163*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_002);
164*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_002_1);
165*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_003);
166*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_003_1);
167*cdf0e10cSrcweir     CPPUNIT_TEST(rtl_crc32_003_2);
168*cdf0e10cSrcweir     CPPUNIT_TEST_SUITE_END();
169*cdf0e10cSrcweir }; // class test
170*cdf0e10cSrcweir 
171*cdf0e10cSrcweir // -----------------------------------------------------------------------------
172*cdf0e10cSrcweir CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(rtl_CRC32::test, "rtl_crc32");
173*cdf0e10cSrcweir } // namespace rtl_CRC32
174*cdf0e10cSrcweir 
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir // -----------------------------------------------------------------------------
177*cdf0e10cSrcweir 
178*cdf0e10cSrcweir // this macro creates an empty function, which will called by the RegisterAllFunctions()
179*cdf0e10cSrcweir // to let the user the possibility to also register some functions by hand.
180*cdf0e10cSrcweir NOADDITIONAL;
181*cdf0e10cSrcweir 
182