Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / sal / qa / rtl / crc32 / rtl_crc32.cxx
blob3ac869cc4e3ab4ce1d6c306092f2867f3e59df74
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()
38 void tearDown()
43 // insert your test code here.
44 void rtl_crc32_001()
46 // this is demonstration code
47 // CPPUNIT_ASSERT_MESSAGE("a message", 1 == 1);
49 sal_uInt32 nCRC = 0;
51 char buf[] = {0};
52 int num = 0;
54 nCRC = rtl_crc32(nCRC, buf, num);
56 CPPUNIT_ASSERT_MESSAGE("empty crc buffer", nCRC == 0);
59 void rtl_crc32_002()
61 sal_uInt32 nCRC = 0;
63 char buf[] = {0,0};
64 int num = sizeof(buf);
66 nCRC = rtl_crc32(nCRC, buf, num);
68 CPPUNIT_ASSERT_MESSAGE("buffer contain 2 empty bytes, crc is zero", nCRC != 0);
71 void rtl_crc32_002_1()
73 sal_uInt32 nCRC = 0;
75 char buf[] = {0,0,0};
76 int num = sizeof(buf);
78 nCRC = rtl_crc32(nCRC, buf, num);
80 CPPUNIT_ASSERT_MESSAGE("buffer contain 3 empty bytes, crc is zero", nCRC != 0);
83 /**
84 * crc32 check:
85 * Build checksum on two buffers with same size but different content,
86 * the result (crc32 checksum) must differ
89 void rtl_crc32_003()
91 sal_uInt32 nCRC1 = 0;
92 char buf1[] = {2};
93 int num1 = sizeof(buf1);
95 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
97 sal_uInt32 nCRC2 = 0;
98 char buf2[] = {3};
99 int num2 = sizeof(buf2);
101 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
103 CPPUNIT_ASSERT_MESSAGE("checksum should differ for buf1 and buf2", nCRC1 != nCRC2);
106 /** check if the crc32 only use as much values, as given
109 void rtl_crc32_003_1()
111 sal_uInt32 nCRC1 = 0;
112 char buf1[] = {2,1};
113 int num1 = sizeof(buf1) - 1;
115 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
117 sal_uInt32 nCRC2 = 0;
118 char buf2[] = {2,2};
119 int num2 = sizeof(buf2) - 1;
121 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
123 CPPUNIT_ASSERT_MESSAGE("checksum leave it's bounds", nCRC1 == nCRC2);
126 /** check if the crc32 differ at same content in reverse order
129 void rtl_crc32_003_2()
131 sal_uInt32 nCRC1 = 0;
132 char buf1[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
133 int num1 = sizeof(buf1);
135 nCRC1 = rtl_crc32(nCRC1, buf1, num1);
137 sal_uInt32 nCRC2 = 0;
138 char buf2[] = {20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0};
139 int num2 = sizeof(buf2);
141 nCRC2 = rtl_crc32(nCRC2, buf2, num2);
143 CPPUNIT_ASSERT_MESSAGE("checksum should differ", nCRC1 != nCRC2);
148 // Change the following lines only, if you add, remove or rename
149 // member functions of the current class,
150 // because these macros are need by auto register mechanism.
152 CPPUNIT_TEST_SUITE(test);
153 CPPUNIT_TEST(rtl_crc32_001);
154 CPPUNIT_TEST(rtl_crc32_002);
155 CPPUNIT_TEST(rtl_crc32_002_1);
156 CPPUNIT_TEST(rtl_crc32_003);
157 CPPUNIT_TEST(rtl_crc32_003_1);
158 CPPUNIT_TEST(rtl_crc32_003_2);
159 CPPUNIT_TEST_SUITE_END();
160 }; // class test
162 // -----------------------------------------------------------------------------
163 CPPUNIT_TEST_SUITE_REGISTRATION(rtl_CRC32::test);
164 } // namespace rtl_CRC32
167 // -----------------------------------------------------------------------------
169 // this macro creates an empty function, which will called by the RegisterAllFunctions()
170 // to let the user the possibility to also register some functions by hand.
171 CPPUNIT_PLUGIN_IMPLEMENT();
173 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */