OLD | NEW |
| (Empty) |
1 // Copyright 2015 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "core/fpdfapi/fpdf_font/font_int.h" | |
6 #include "testing/gtest/include/gtest/gtest.h" | |
7 | |
8 TEST(fpdf_font, StringToCode) { | |
9 EXPECT_EQ(0u, CPDF_ToUnicodeMap::StringToCode("")); | |
10 EXPECT_EQ(194u, CPDF_ToUnicodeMap::StringToCode("<c2")); | |
11 EXPECT_EQ(162u, CPDF_ToUnicodeMap::StringToCode("<A2")); | |
12 EXPECT_EQ(2802u, CPDF_ToUnicodeMap::StringToCode("<Af2")); | |
13 EXPECT_EQ(12u, CPDF_ToUnicodeMap::StringToCode("12")); | |
14 EXPECT_EQ(128u, CPDF_ToUnicodeMap::StringToCode("128")); | |
15 } | |
16 | |
17 TEST(fpdf_font, StringToWideString) { | |
18 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString("")); | |
19 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString("1234")); | |
20 | |
21 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString("<c2")); | |
22 | |
23 CFX_WideString res = L"\xc2ab"; | |
24 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab")); | |
25 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abab")); | |
26 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab 1234")); | |
27 | |
28 res += L"\xfaab"; | |
29 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abFaAb")); | |
30 } | |
OLD | NEW |