Skip to content

Commit

Permalink
TESTS: Add unit tests for CP-1251 encoding functions
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Dec 24, 2016
1 parent 614e7c9 commit 7ec35ea
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
73 changes: 73 additions & 0 deletions tests/common/encoding_cp1251.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/* xoreos - A reimplementation of BioWare's Aurora engine
*
* xoreos is the legal property of its developers, whose names
* can be found in the AUTHORS file distributed with this source
* distribution.
*
* xoreos is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* xoreos is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with xoreos. If not, see <http://www.gnu.org/licenses/>.
*/

/** @file
* Unit tests for Windows codepage 1251 encoding functions.
*/

#include "gtest/gtest.h"

#include "src/common/error.h"
#include "src/common/encoding.h"
#include "src/common/memreadstream.h"
#include "src/common/memwritestream.h"

#include "tests/common/encoding.h"

// The name and enum of the encoding we're testing
#define XOREOS_ENCODINGNAME EncodingCP1251
static const Common::Encoding kEncoding = Common::kEncodingCP1251;

// -- General encoding feature tests, can't be generalized --

GTEST_TEST(XOREOS_ENCODINGNAME, getBytesPerCodepoint) {
testSupport(kEncoding);

EXPECT_EQ(Common::getBytesPerCodepoint(kEncoding), 1);
}

GTEST_TEST(XOREOS_ENCODINGNAME, isValidCodePoint) {
testSupport(kEncoding);

EXPECT_TRUE(Common::isValidCodepoint(kEncoding, 0x20));
EXPECT_FALSE(Common::isValidCodepoint(kEncoding, 0x98));
}

// -- Generalized encoding function tests --

// Example string with terminating 0
static const byte stringData0 [] = { 0xD4, 0xEE, 0xEE, 0xE1, 0xE0, 0xF0, '\0' };
// Example string with terminating 0 and garbage following
static const byte stringData0X [] = { 0xD4, 0xEE, 0xEE, 0xE1, 0xE0, 0xF0, '\0', 'x' };
// Example string without terminating 0 and with garbage following
static const byte stringDataX [] = { 0xD4, 0xEE, 0xEE, 0xE1, 0xE0, 0xF0, 'x' };
// Example string with line end and garbage following
static const byte stringDataLineX[] = { 0xD4, 0xEE, 0xEE, 0xE1, 0xE0, 0xF0, '\r', '\n', 'x' };

// Number of bytes in the example string without terminating 0 and without garbage
static const size_t stringBytes = 6;
// Number of characters in the example string without terminating 0 and without garbage
static const size_t stringChars = 6;

// The example string encoded as UTF-8 (Foobar, transcripted into the Cyrillic alphabet)
static const Common::UString stringUString = Common::UString("\xd0""\xa4""\xd0""\xbe""\xd0""\xbe""\xd0""\xb1""\xd0""\xb0""\xd1""\x80");

// The actual tests live here
#include "tests/common/encoding_tests.h"
5 changes: 5 additions & 0 deletions tests/common/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,8 @@ check_PROGRAMS += tests/common/test_encoding_cp1250
tests_common_test_encoding_cp1250_SOURCES = tests/common/encoding_cp1250.cpp
tests_common_test_encoding_cp1250_LDADD = $(common_LIBS)
tests_common_test_encoding_cp1250_CXXFLAGS = $(test_CXXFLAGS)

check_PROGRAMS += tests/common/test_encoding_cp1251
tests_common_test_encoding_cp1251_SOURCES = tests/common/encoding_cp1251.cpp
tests_common_test_encoding_cp1251_LDADD = $(common_LIBS)
tests_common_test_encoding_cp1251_CXXFLAGS = $(test_CXXFLAGS)

0 comments on commit 7ec35ea

Please sign in to comment.