summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorarthurhsu@google.com <arthurhsu@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-08-11 01:59:20 +0000
committerarthurhsu@google.com <arthurhsu@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-08-11 01:59:20 +0000
commitdeec0e7851d8f029cf3718bcb61633e8a262c275 (patch)
treede98e79ecd1dde0d267f4e7c5e39bc8110564e94 /test
parent3daf7a5c855b0640e2dd3904abe378e76a43829d (diff)
downloadsrc-deec0e7851d8f029cf3718bcb61633e8a262c275.tar.gz
Port serialization test.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@44 672e30a5-4c29-85ac-ac6d-611c735e0a51
Diffstat (limited to 'test')
-rwxr-xr-xtest/serialization_test.cc82
1 files changed, 82 insertions, 0 deletions
diff --git a/test/serialization_test.cc b/test/serialization_test.cc
new file mode 100755
index 0000000..0923659
--- /dev/null
+++ b/test/serialization_test.cc
@@ -0,0 +1,82 @@
+/*
+ * Copyright 2011 Google Inc. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <set>
+
+#include "gtest/gtest.h"
+#include "sfntly/font.h"
+#include "sfntly/font_factory.h"
+#include "sfntly/data/memory_byte_array.h"
+#include "test/test_data.h"
+#include "test/test_font_utils.h"
+
+namespace sfntly {
+
+bool TestSerialization() {
+ FontFactoryPtr factory1, factory2, factory3;
+ factory1.Attach(FontFactory::GetInstance());
+ FontArray font_array;
+ LoadFont(SAMPLE_TTF_FILE, factory1, &font_array);
+ FontPtr original = font_array[0];
+
+ factory2.Attach(FontFactory::GetInstance());
+ FontBuilderArray font_builder_array;
+ BuilderForFontFile(SAMPLE_TTF_FILE, factory2, &font_builder_array);
+ FontBuilderPtr font_builder = font_builder_array[0];
+
+ FontPtr intermediate;
+ intermediate.Attach(font_builder->Build());
+ MemoryOutputStream os;
+ factory2->SerializeFont(intermediate, &os);
+
+ factory3.Attach(FontFactory::GetInstance());
+ FontArray new_font_array;
+ ByteArrayPtr ba = new MemoryByteArray(os.Get(), os.Size());
+ factory3->LoadFonts(ba, &new_font_array);
+ FontPtr serialized = new_font_array[0];
+
+ // Check number of tables
+ EXPECT_EQ(original->num_tables(), serialized->num_tables());
+
+ // Check if same set of tables
+ TableMap* original_tables = original->Tables();
+ TableMap* serialized_tables = serialized->Tables();
+ EXPECT_EQ(original_tables->size(), serialized_tables->size());
+ TableMap::iterator not_found = serialized_tables->end();
+ for (TableMap::iterator b = original_tables->begin(),
+ e = original_tables->end(); b != e; ++b) {
+ EXPECT_TRUE((serialized_tables->find(b->first) != not_found));
+ }
+
+ // TODO(arthurhsu): check cmap equivalence
+ // Check checksum equivalence
+ for (size_t i = 0; i < SAMPLE_TTF_KNOWN_TAGS; ++i) {
+ TablePtr original_table = original->GetTable(TTF_KNOWN_TAGS[i]);
+ TablePtr serialized_table = serialized->GetTable(TTF_KNOWN_TAGS[i]);
+ EXPECT_EQ(original_table->CalculatedChecksum(),
+ serialized_table->CalculatedChecksum());
+ EXPECT_EQ(((original_table->Length() + 3) & ~3),
+ ((serialized_table->Length() + 3) & ~3));
+ }
+
+ return true;
+}
+
+} // namespace sfntly
+
+TEST(Serialization, All) {
+ ASSERT_TRUE(sfntly::TestSerialization());
+}