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