summaryrefslogtreecommitdiff
path: root/test/verify_glyf.cc
blob: abfe1ab8aa310f8f28da6538765e5edc9d75a4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * 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 "gtest/gtest.h"
#include "sfntly/font.h"
#include "sfntly/table/truetype/glyph_table.h"
#include "test/serialization_test.h"

namespace sfntly {

// We spot check only glyph id 33.
const int32_t GLYPH33_OFFSET = 0xAC8;
const int32_t GLYPH33_LENGTH = 40;
const int32_t GLYPH33_XMIN = 92;
const int32_t GLYPH33_YMIN = 20;
const int32_t GLYPH33_XMAX = 797;
const int32_t GLYPH33_YMAX = 1235;

// TODO(arthurhsu): Tuffy does not have composite glyphs.  Need better testing.
static bool VerifyGLYF(Table* table) {
  GlyphTablePtr glyf_table = down_cast<GlyphTable*>(table);
  if (glyf_table == NULL) {
    return false;
  }

  GlyphPtr glyf;
  glyf.Attach(glyf_table->GetGlyph(GLYPH33_OFFSET, GLYPH33_LENGTH));
  if (glyf == NULL) {
    return false;
  }

  EXPECT_EQ(glyf->XMin(), GLYPH33_XMIN);
  EXPECT_EQ(glyf->YMin(), GLYPH33_YMIN);
  EXPECT_EQ(glyf->XMax(), GLYPH33_XMAX);
  EXPECT_EQ(glyf->YMax(), GLYPH33_YMAX);

  return true;
}

bool VerifyGLYF(Table* original, Table* target) {
  EXPECT_TRUE(VerifyGLYF(original));
  EXPECT_TRUE(VerifyGLYF(target));
  return true;
}

}  // namespace sfntly