OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 5 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
6 #include "core/fpdfapi/fpdf_parser/include/cpdf_indirect_object_holder.h" | 6 #include "core/fpdfapi/fpdf_parser/include/cpdf_indirect_object_holder.h" |
7 #include "core/fpdfdoc/include/cpdf_formfield.h" | 7 #include "core/fpdfdoc/include/cpdf_formfield.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 TEST(cpdf_formfield, FPDF_GetFullName) { | 10 TEST(cpdf_formfield, FPDF_GetFullName) { |
11 CFX_WideString name = FPDF_GetFullName(nullptr); | 11 CFX_WideString name = FPDF_GetFullName(nullptr); |
12 EXPECT_TRUE(name.IsEmpty()); | 12 EXPECT_TRUE(name.IsEmpty()); |
13 | 13 |
14 CPDF_IndirectObjectHolder obj_holder; | 14 CPDF_IndirectObjectHolder obj_holder; |
15 CPDF_Dictionary* root = new CPDF_Dictionary; | 15 CPDF_Dictionary* root = |
| 16 new CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()); |
16 obj_holder.AddIndirectObject(root); | 17 obj_holder.AddIndirectObject(root); |
17 root->SetNameFor("T", "foo"); | 18 root->SetNameFor("T", "foo"); |
18 name = FPDF_GetFullName(root); | 19 name = FPDF_GetFullName(root); |
19 EXPECT_STREQ("foo", name.UTF8Encode().c_str()); | 20 EXPECT_STREQ("foo", name.UTF8Encode().c_str()); |
20 | 21 |
21 CPDF_Dictionary* dict1 = new CPDF_Dictionary; | 22 CPDF_Dictionary* dict1 = |
| 23 new CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()); |
22 root->SetReferenceFor("Parent", &obj_holder, | 24 root->SetReferenceFor("Parent", &obj_holder, |
23 obj_holder.AddIndirectObject(dict1)); | 25 obj_holder.AddIndirectObject(dict1)); |
24 dict1->SetNameFor("T", "bar"); | 26 dict1->SetNameFor("T", "bar"); |
25 name = FPDF_GetFullName(root); | 27 name = FPDF_GetFullName(root); |
26 EXPECT_STREQ("bar.foo", name.UTF8Encode().c_str()); | 28 EXPECT_STREQ("bar.foo", name.UTF8Encode().c_str()); |
27 | 29 |
28 CPDF_Dictionary* dict2 = new CPDF_Dictionary; | 30 CPDF_Dictionary* dict2 = |
| 31 new CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()); |
29 dict1->SetFor("Parent", dict2); | 32 dict1->SetFor("Parent", dict2); |
30 name = FPDF_GetFullName(root); | 33 name = FPDF_GetFullName(root); |
31 EXPECT_STREQ("bar.foo", name.UTF8Encode().c_str()); | 34 EXPECT_STREQ("bar.foo", name.UTF8Encode().c_str()); |
32 | 35 |
33 CPDF_Dictionary* dict3 = new CPDF_Dictionary; | 36 CPDF_Dictionary* dict3 = |
| 37 new CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()); |
34 dict2->SetReferenceFor("Parent", &obj_holder, | 38 dict2->SetReferenceFor("Parent", &obj_holder, |
35 obj_holder.AddIndirectObject(dict3)); | 39 obj_holder.AddIndirectObject(dict3)); |
36 dict3->SetNameFor("T", "qux"); | 40 dict3->SetNameFor("T", "qux"); |
37 name = FPDF_GetFullName(root); | 41 name = FPDF_GetFullName(root); |
38 EXPECT_STREQ("qux.bar.foo", name.UTF8Encode().c_str()); | 42 EXPECT_STREQ("qux.bar.foo", name.UTF8Encode().c_str()); |
39 | 43 |
40 dict3->SetReferenceFor("Parent", &obj_holder, root->GetObjNum()); | 44 dict3->SetReferenceFor("Parent", &obj_holder, root->GetObjNum()); |
41 name = FPDF_GetFullName(root); | 45 name = FPDF_GetFullName(root); |
42 EXPECT_STREQ("qux.bar.foo", name.UTF8Encode().c_str()); | 46 EXPECT_STREQ("qux.bar.foo", name.UTF8Encode().c_str()); |
43 name = FPDF_GetFullName(dict1); | 47 name = FPDF_GetFullName(dict1); |
44 EXPECT_STREQ("foo.qux.bar", name.UTF8Encode().c_str()); | 48 EXPECT_STREQ("foo.qux.bar", name.UTF8Encode().c_str()); |
45 name = FPDF_GetFullName(dict2); | 49 name = FPDF_GetFullName(dict2); |
46 EXPECT_STREQ("bar.foo.qux", name.UTF8Encode().c_str()); | 50 EXPECT_STREQ("bar.foo.qux", name.UTF8Encode().c_str()); |
47 name = FPDF_GetFullName(dict3); | 51 name = FPDF_GetFullName(dict3); |
48 EXPECT_STREQ("bar.foo.qux", name.UTF8Encode().c_str()); | 52 EXPECT_STREQ("bar.foo.qux", name.UTF8Encode().c_str()); |
49 } | 53 } |
OLD | NEW |