bump product version to 5.0.4.1
[LibreOffice.git] / sal / qa / rtl / crc32 / rtl_crc32.cxx
blobad7dff456b9ff1cc0ec74ca1f06c9ed479d66fcf
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 <cppunit/plugin/TestPlugIn.h>
25 #include <rtl/crc.h>
27 namespace rtl_CRC32
30 class test : public CppUnit::TestFixture
32 public:
33 // initialise your test code values here.
34 void setUp() SAL_OVERRIDE
38 void tearDown() SAL_OVERRIDE
42 // insert your test code here.
43 void rtl_crc32_001()
45 // this is demonstration code
46 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
48 sal_uInt32 nCRC = 0;
50 char buf[] = {0};
51 int num = 0;
53 nCRC = rtl_crc32(nCRC, buf, num);
55 CPPUNIT_ASSERT_MESSAGE("empty crc buffer", nCRC == 0);
58 void rtl_crc32_002()
60 sal_uInt32 nCRC = 0;
62 char buf[] = {0,0};
63 int num = sizeof(buf);
65 nCRC = rtl_crc32(nCRC, buf, num);
67 CPPUNIT_ASSERT_MESSAGE("buffer contain 2 empty bytes, crc is zero", nCRC != 0);
70 void rtl_crc32_002_1()
72 sal_uInt32 nCRC = 0;
74 char buf[] = {0,0,0};
75 int num = sizeof(buf);
77 nCRC = rtl_crc32(nCRC, buf, num);
79 CPPUNIT_ASSERT_MESSAGE("buffer contain 3 empty bytes, crc is zero", nCRC != 0);
82 /**
83 * crc32 check:
84 * Build checksum on two buffers with same size but different content,
85 * the result (crc32 checksum) must differ
88 void rtl_crc32_003()
90 sal_uInt32 nCRC1 = 0;
91 char buf1[] = {2};
92 int num1 = sizeof(buf1);
94 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
96 sal_uInt32 nCRC2 = 0;
97 char buf2[] = {3};
98 int num2 = sizeof(buf2);
100 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
102 CPPUNIT_ASSERT_MESSAGE("checksum should differ for buf1 and buf2", nCRC1 != nCRC2);
105 /** check if the crc32 only use as much values, as given
108 void rtl_crc32_003_1()
110 sal_uInt32 nCRC1 = 0;
111 char buf1[] = {2,1};
112 int num1 = sizeof(buf1) - 1;
114 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
116 sal_uInt32 nCRC2 = 0;
117 char buf2[] = {2,2};
118 int num2 = sizeof(buf2) - 1;
120 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
122 CPPUNIT_ASSERT_MESSAGE("checksum leave it's bounds", nCRC1 == nCRC2);
125 /** check if the crc32 differ at same content in reverse order
128 void rtl_crc32_003_2()
130 sal_uInt32 nCRC1 = 0;
131 char buf1[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
132 int num1 = sizeof(buf1);
134 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
136 sal_uInt32 nCRC2 = 0;
137 char buf2[] = {20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0};
138 int num2 = sizeof(buf2);
140 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
142 CPPUNIT_ASSERT_MESSAGE("checksum should differ", nCRC1 != nCRC2);
145 // Change the following lines only, if you add, remove or rename
146 // member functions of the current class,
147 // because these macros are need by auto register mechanism.
149 CPPUNIT_TEST_SUITE(test);
150 CPPUNIT_TEST(rtl_crc32_001);
151 CPPUNIT_TEST(rtl_crc32_002);
152 CPPUNIT_TEST(rtl_crc32_002_1);
153 CPPUNIT_TEST(rtl_crc32_003);
154 CPPUNIT_TEST(rtl_crc32_003_1);
155 CPPUNIT_TEST(rtl_crc32_003_2);
156 CPPUNIT_TEST_SUITE_END();
157 }; // class test
159 CPPUNIT_TEST_SUITE_REGISTRATION(rtl_CRC32::test);
160 } // namespace rtl_CRC32
162 // this macro creates an empty function, which will called by the RegisterAllFunctions()
163 // to let the user the possibility to also register some functions by hand.
164 CPPUNIT_PLUGIN_IMPLEMENT();
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */