Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp

Issue 1428593005: Add test for StringToCode and StringToWideString. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | pdfium.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 "testing/gtest/include/gtest/gtest.h"
6
7 #include "font_int.h"
8
9 TEST(fpdf_font, StringToCode) {
10 EXPECT_EQ(0, CPDF_ToUnicodeMap::StringToCode(""));
11 EXPECT_EQ(194, CPDF_ToUnicodeMap::StringToCode("<c2"));
12 EXPECT_EQ(162, CPDF_ToUnicodeMap::StringToCode("<A2"));
13 EXPECT_EQ(2802, CPDF_ToUnicodeMap::StringToCode("<Af2"));
14 EXPECT_EQ(12, CPDF_ToUnicodeMap::StringToCode("12"));
15 EXPECT_EQ(128, CPDF_ToUnicodeMap::StringToCode("128"));
16 }
17
18 TEST(fpdf_font, StringToWideString) {
19 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString(""));
20 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString("1234"));
21
22 EXPECT_EQ(L"", CPDF_ToUnicodeMap::StringToWideString("<c2"));
23
24 CFX_WideString res = L"\xc2ab";
25 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab"));
26 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abab"));
27 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab 1234"));
28
29 res += L"\xfaab";
30 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abFaAb"));
31 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | pdfium.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698