mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
63 lines
2.3 KiB
C++
63 lines
2.3 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2024 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#include "helpers/StringHelpers.hpp"
|
|
#include "openrct2/localisation/Language.h"
|
|
#include "openrct2/rct12/CSStringConverter.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
class Localisation : public testing::Test
|
|
{
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// Tests for RCT2StringToUTF8
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
TEST_F(Localisation, RCT2_to_UTF8_UK)
|
|
{
|
|
auto input = "The quick brown fox";
|
|
auto expected = u8"The quick brown fox";
|
|
auto actual = RCT2StringToUTF8(input, RCT2LanguageId::EnglishUK);
|
|
ASSERT_EQ(expected, actual);
|
|
}
|
|
|
|
TEST_F(Localisation, RCT2_to_UTF8_JP)
|
|
{
|
|
auto input = StringFromHex("ff8374ff8340ff8358ff8367ff8375ff8389ff8345ff8393ff8374ff8348ff8362ff834eff8358");
|
|
auto expected = u8"ファストブラウンフォックス";
|
|
auto actual = RCT2StringToUTF8(input, RCT2LanguageId::Japanese);
|
|
ASSERT_EQ(expected, actual);
|
|
}
|
|
|
|
TEST_F(Localisation, RCT2_to_UTF8_ZH_TW)
|
|
{
|
|
auto input = StringFromHex("ffa7d6ffb374ffaabaffb4c4ffa6e2ffaab0ffaf57");
|
|
auto expected = u8"快速的棕色狐狸";
|
|
auto actual = RCT2StringToUTF8(input, RCT2LanguageId::ChineseTraditional);
|
|
ASSERT_EQ(expected, actual);
|
|
}
|
|
|
|
TEST_F(Localisation, RCT2_to_UTF8_PL)
|
|
{
|
|
auto input = StringFromHex("47F372736b6120446ff76b692054e6637a6f7779");
|
|
auto expected = u8"Górska Dołki Tęczowy";
|
|
auto actual = RCT2StringToUTF8(input, RCT2LanguageId::EnglishUK);
|
|
ASSERT_EQ(expected, actual);
|
|
}
|
|
|
|
TEST_F(Localisation, RCT2_to_UTF8_ZH_TW_PREMATURE_END)
|
|
{
|
|
// This string can be found in BATFL.DAT, the last double byte character is missing its second byte.
|
|
auto input = StringFromHex("ffa470ffabacffa8aeffbdf8ffa662ffc54bffb944ffa457ffaeb6ffb0caffb76effc2");
|
|
auto expected = u8"小型車輛在鐵道上振動搖";
|
|
auto actual = RCT2StringToUTF8(input, RCT2LanguageId::ChineseTraditional);
|
|
ASSERT_EQ(expected, actual);
|
|
}
|