aboutsummaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_textparser_unittest.cpp
blob: 298362e978099fa039f9bf6be1b26f543fc14ae1 (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
// Copyright 2016 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "xfa/fxfa/cxfa_textparser.h"

#include "fxjs/gc/heap.h"
#include "testing/fxgc_unittest.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "v8/include/cppgc/heap.h"

class CXFA_TestTextParser final : public CXFA_TextParser {
 public:
  CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;

 private:
  CXFA_TestTextParser() = default;

  // Add test cases as friends to access protected member functions.
  FRIEND_TEST(CXFATextParserTest, TagValidate);
};

class CXFATextParserTest : public FXGCUnitTest {};

TEST_F(CXFATextParserTest, TagValidate) {
  auto* parser = cppgc::MakeGarbageCollected<CXFA_TestTextParser>(
      heap()->GetAllocationHandle());
  EXPECT_TRUE(parser->TagValidate(L"br"));
  EXPECT_TRUE(parser->TagValidate(L"Br"));
  EXPECT_TRUE(parser->TagValidate(L"BR"));
  EXPECT_TRUE(parser->TagValidate(L"a"));
  EXPECT_TRUE(parser->TagValidate(L"b"));
  EXPECT_TRUE(parser->TagValidate(L"i"));
  EXPECT_TRUE(parser->TagValidate(L"p"));
  EXPECT_TRUE(parser->TagValidate(L"li"));
  EXPECT_TRUE(parser->TagValidate(L"ol"));
  EXPECT_TRUE(parser->TagValidate(L"ul"));
  EXPECT_TRUE(parser->TagValidate(L"sub"));
  EXPECT_TRUE(parser->TagValidate(L"sup"));
  EXPECT_TRUE(parser->TagValidate(L"span"));
  EXPECT_TRUE(parser->TagValidate(L"body"));
  EXPECT_TRUE(parser->TagValidate(L"html"));

  EXPECT_FALSE(parser->TagValidate(L""));
  EXPECT_FALSE(parser->TagValidate(L"tml"));
  EXPECT_FALSE(parser->TagValidate(L"xhtml"));
  EXPECT_FALSE(parser->TagValidate(L"htmlx"));
}