blob: 3348e82e8cf2116091ad0a5cd188f672c65bd4f9 [file] [log] [blame]
// Copyright 2018 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "xfa/fxfa/parser/xfa_basic_data.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(XFABasicDataTest, GetAttributeByName) {
EXPECT_EQ(XFA_Attribute::Unknown, XFA_GetAttributeByName(L""));
EXPECT_EQ(XFA_Attribute::Unknown, XFA_GetAttributeByName(L"nonesuch"));
EXPECT_EQ(XFA_Attribute::H, XFA_GetAttributeByName(L"h"));
EXPECT_EQ(XFA_Attribute::Short, XFA_GetAttributeByName(L"short"));
EXPECT_EQ(XFA_Attribute::DecipherOnly,
XFA_GetAttributeByName(L"decipherOnly"));
}
TEST(XFABasicDataTest, GetAttributeValueByName) {
EXPECT_FALSE(XFA_GetAttributeValueByName(L"").has_value());
EXPECT_FALSE(XFA_GetAttributeValueByName(L"nonesuch").has_value());
Optional<XFA_AttributeValue> result = XFA_GetAttributeValueByName(L"*");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(XFA_AttributeValue::Asterisk, result.value());
result = XFA_GetAttributeValueByName(L"visible");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(XFA_AttributeValue::Visible, result.value());
result = XFA_GetAttributeValueByName(L"lowered");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(XFA_AttributeValue::Lowered, result.value());
}