blob: 332520bfb0a78619809d0a4b0b7ff9fb65a318b5 [file] [log] [blame]
vandebo@chromium.org04c643b2011-08-08 22:33:05 +00001/*
2 * Copyright 2010 The Android Open Source Project
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Hal Canary43fb7a02016-12-30 13:09:03 -05008#include "Test.h"
9
10#ifdef SK_SUPPORT_PDF
11
halcanary530032a2016-08-18 14:22:52 -070012#include "SkBitSet.h"
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000013#include "SkData.h"
halcanary8eccc302016-08-09 13:04:34 -070014#include "SkPDFMakeToUnicodeCmap.h"
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000015#include "SkStream.h"
16
halcanary530032a2016-08-18 14:22:52 -070017static const int kMaximumGlyphCount = SK_MaxU16 + 1;
18
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000019static bool stream_equals(const SkDynamicMemoryWStream& stream, size_t offset,
vandebo@chromium.org9ad35992012-01-03 18:35:39 +000020 const char* buffer, size_t len) {
vandebo@chromium.org9ad35992012-01-03 18:35:39 +000021 if (len != strlen(buffer)) {
22 return false;
23 }
Mike Reed5adaf8b2016-12-15 13:02:33 -050024
25 const size_t streamSize = stream.bytesWritten();
26
27 if (offset + len > streamSize) {
28 return false;
29 }
30
31 SkAutoTMalloc<char> data(streamSize);
32 stream.copyTo(data.get());
33 return memcmp(data.get() + offset, buffer, len) == 0;
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000034}
35
halcanary57f744e2016-09-09 11:41:59 -070036DEF_TEST(SkPDF_ToUnicode, reporter) {
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000037 SkTDArray<SkUnichar> glyphToUnicode;
38 SkTDArray<uint16_t> glyphsInSubset;
halcanary530032a2016-08-18 14:22:52 -070039 SkBitSet subset(kMaximumGlyphCount);
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000040
41 glyphToUnicode.push(0); // 0
42 glyphToUnicode.push(0); // 1
43 glyphToUnicode.push(0); // 2
44 glyphsInSubset.push(3);
45 glyphToUnicode.push(0x20); // 3
46 glyphsInSubset.push(4);
47 glyphToUnicode.push(0x25); // 4
48 glyphsInSubset.push(5);
49 glyphToUnicode.push(0x27); // 5
50 glyphsInSubset.push(6);
51 glyphToUnicode.push(0x28); // 6
52 glyphsInSubset.push(7);
53 glyphToUnicode.push(0x29); // 7
54 glyphsInSubset.push(8);
55 glyphToUnicode.push(0x2F); // 8
56 glyphsInSubset.push(9);
57 glyphToUnicode.push(0x33); // 9
58 glyphToUnicode.push(0); // 10
59 glyphsInSubset.push(11);
60 glyphToUnicode.push(0x35); // 11
61 glyphsInSubset.push(12);
62 glyphToUnicode.push(0x36); // 12
edisonn@google.com26d2e042013-09-18 19:29:08 +000063 glyphsInSubset.push(13);
64 glyphToUnicode.push(0x37); // 13
65 for (uint16_t i = 14; i < 0xFE; ++i) {
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000066 glyphToUnicode.push(0); // Zero from index 0x9 to 0xFD
67 }
68 glyphsInSubset.push(0xFE);
69 glyphToUnicode.push(0x1010);
70 glyphsInSubset.push(0xFF);
71 glyphToUnicode.push(0x1011);
72 glyphsInSubset.push(0x100);
73 glyphToUnicode.push(0x1012);
74 glyphsInSubset.push(0x101);
75 glyphToUnicode.push(0x1013);
76
77 SkDynamicMemoryWStream buffer;
halcanary530032a2016-08-18 14:22:52 -070078 subset.setAll(glyphsInSubset.begin(), glyphsInSubset.count());
halcanary8eccc302016-08-09 13:04:34 -070079 SkPDFAppendCmapSections(glyphToUnicode, &subset, &buffer, true, 0, 0xFFFF);
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000080
81 char expectedResult[] =
82"4 beginbfchar\n\
83<0003> <0020>\n\
84<0004> <0025>\n\
85<0008> <002F>\n\
86<0009> <0033>\n\
87endbfchar\n\
884 beginbfrange\n\
89<0005> <0007> <0027>\n\
edisonn@google.com26d2e042013-09-18 19:29:08 +000090<000B> <000D> <0035>\n\
vandebo@chromium.org04c643b2011-08-08 22:33:05 +000091<00FE> <00FF> <1010>\n\
92<0100> <0101> <1012>\n\
93endbfrange\n";
94
95 REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResult,
Ben Wagner884300d2016-12-16 16:51:41 +000096 buffer.bytesWritten()));
vandebo@chromium.org9ad35992012-01-03 18:35:39 +000097
edisonn@google.com26d2e042013-09-18 19:29:08 +000098 // Remove characters and ranges.
99 buffer.reset();
100
halcanary8eccc302016-08-09 13:04:34 -0700101 SkPDFAppendCmapSections(glyphToUnicode, &subset, &buffer, true, 8, 0x00FF);
edisonn@google.com26d2e042013-09-18 19:29:08 +0000102
103 char expectedResultChop1[] =
104"2 beginbfchar\n\
105<0008> <002F>\n\
106<0009> <0033>\n\
107endbfchar\n\
1082 beginbfrange\n\
109<000B> <000D> <0035>\n\
110<00FE> <00FF> <1010>\n\
111endbfrange\n";
112
113 REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResultChop1,
Ben Wagner884300d2016-12-16 16:51:41 +0000114 buffer.bytesWritten()));
edisonn@google.com26d2e042013-09-18 19:29:08 +0000115
116 // Remove characters from range to downdrade it to one char.
117 buffer.reset();
118
halcanary8eccc302016-08-09 13:04:34 -0700119 SkPDFAppendCmapSections(glyphToUnicode, &subset, &buffer, true, 0x00D, 0x00FE);
edisonn@google.com26d2e042013-09-18 19:29:08 +0000120
121 char expectedResultChop2[] =
122"2 beginbfchar\n\
123<000D> <0037>\n\
124<00FE> <1010>\n\
125endbfchar\n";
126
127 REPORTER_ASSERT(reporter, stream_equals(buffer, 0, expectedResultChop2,
Ben Wagner884300d2016-12-16 16:51:41 +0000128 buffer.bytesWritten()));
edisonn@google.com26d2e042013-09-18 19:29:08 +0000129
commit-bot@chromium.org1236d8e2013-12-11 18:47:11 +0000130 buffer.reset();
131
halcanary8eccc302016-08-09 13:04:34 -0700132 SkPDFAppendCmapSections(glyphToUnicode, nullptr, &buffer, false, 0xFC, 0x110);
commit-bot@chromium.org1236d8e2013-12-11 18:47:11 +0000133
134 char expectedResultSingleBytes[] =
135"2 beginbfchar\n\
halcanary3d01c622016-08-31 12:52:35 -0700136<01> <0000>\n\
137<02> <0000>\n\
commit-bot@chromium.org1236d8e2013-12-11 18:47:11 +0000138endbfchar\n\
1391 beginbfrange\n\
halcanary3d01c622016-08-31 12:52:35 -0700140<03> <06> <1010>\n\
commit-bot@chromium.org1236d8e2013-12-11 18:47:11 +0000141endbfrange\n";
142
143 REPORTER_ASSERT(reporter, stream_equals(buffer, 0,
144 expectedResultSingleBytes,
Ben Wagner884300d2016-12-16 16:51:41 +0000145 buffer.bytesWritten()));
commit-bot@chromium.org1236d8e2013-12-11 18:47:11 +0000146
vandebo@chromium.org9ad35992012-01-03 18:35:39 +0000147 glyphToUnicode.reset();
148 glyphsInSubset.reset();
halcanary530032a2016-08-18 14:22:52 -0700149 SkBitSet subset2(kMaximumGlyphCount);
vandebo@chromium.org9ad35992012-01-03 18:35:39 +0000150
151 // Test mapping:
152 // I n s t a l
153 // Glyph id 2c 51 56 57 44 4f
154 // Unicode 49 6e 73 74 61 6c
bsalomon98806072014-12-12 15:11:17 -0800155 for (SkUnichar i = 0; i < 100; ++i) {
vandebo@chromium.org9ad35992012-01-03 18:35:39 +0000156 glyphToUnicode.push(i + 29);
157 }
158
159 glyphsInSubset.push(0x2C);
160 glyphsInSubset.push(0x44);
161 glyphsInSubset.push(0x4F);
162 glyphsInSubset.push(0x51);
163 glyphsInSubset.push(0x56);
164 glyphsInSubset.push(0x57);
165
166 SkDynamicMemoryWStream buffer2;
halcanary530032a2016-08-18 14:22:52 -0700167 subset2.setAll(glyphsInSubset.begin(), glyphsInSubset.count());
halcanary8eccc302016-08-09 13:04:34 -0700168 SkPDFAppendCmapSections(glyphToUnicode, &subset2, &buffer2, true, 0, 0xffff);
vandebo@chromium.org9ad35992012-01-03 18:35:39 +0000169
170 char expectedResult2[] =
171"4 beginbfchar\n\
172<002C> <0049>\n\
173<0044> <0061>\n\
174<004F> <006C>\n\
175<0051> <006E>\n\
176endbfchar\n\
1771 beginbfrange\n\
178<0056> <0057> <0073>\n\
179endbfrange\n";
180
181 REPORTER_ASSERT(reporter, stream_equals(buffer2, 0, expectedResult2,
Ben Wagner884300d2016-12-16 16:51:41 +0000182 buffer2.bytesWritten()));
vandebo@chromium.org04c643b2011-08-08 22:33:05 +0000183}
Hal Canary43fb7a02016-12-30 13:09:03 -0500184
185#endif