* Copyright (c) 2024 Huawei Device Co., Ltd.
* 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 "modifier_test_base.h"
#include "modifiers_test_utils.h"
#include "core/interfaces/native/utility/reverse_converter.h"
#include "arkoala_api_generated.h"
using namespace testing;
using namespace testing::ext;
namespace OHOS::Ace::NG {
namespace {
const auto ATTRIBUTE_COMMANDS_NAME = "commands";
const auto ATTRIBUTE_COMMANDS_DEFAULT_VALUE = std::nullopt;
const auto ATTRIBUTE_COMMANDS_INVALID_VALUE = "";
const auto PATH_CMD = "M150 0 L300 300 L0 300 Z";
const auto ATTRIBUTE_WIDTH_NAME = "width";
const auto ATTRIBUTE_WIDTH_DEFAULT_VALUE = "0.00vp";
const auto ATTRIBUTE_HEIGHT_NAME = "height";
const auto ATTRIBUTE_HEIGHT_DEFAULT_VALUE = "0.00vp";
}
class PathModifierTest : public ModifierTestBase<GENERATED_ArkUIPathModifier,
&GENERATED_ArkUINodeModifiers::getPathModifier, GENERATED_ARKUI_PATH> {
};
* @tc.name: setPathOptionsTestDefaultValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setPathOptionsTestDefaultValues, TestSize.Level1)
{
std::unique_ptr<JsonValue> jsonValue = GetJsonValue(node_);
std::optional<std::string> resultStr;
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_WIDTH_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_WIDTH_DEFAULT_VALUE));
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_HEIGHT_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_HEIGHT_DEFAULT_VALUE));
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_COMMANDS_DEFAULT_VALUE));
}
* @tc.name: setPathOptionsTestSizeValidValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setPathOptionsTestSizeValidValues, TestSize.Level1)
{
using OneTestStep = std::pair<Opt_Length, std::string>;
static const std::vector<OneTestStep> testPlan = {
{ Converter::ArkValue<Opt_Length>(1.), "1.00vp" },
{ Converter::ArkValue<Opt_Length>(0.), "0.00vp" },
{ Converter::ArkValue<Opt_Length>(2.45), "2.45vp" },
{ Converter::ArkValue<Opt_Length>("5px"), "5.00px" },
{ Converter::ArkValue<Opt_Length>("22.35px"), "22.35px" },
{ Converter::ArkValue<Opt_Length>("7vp"), "7.00vp" },
{ Converter::ArkValue<Opt_Length>("1.65vp"), "1.65vp" },
{ Converter::ArkValue<Opt_Length>("65fp"), "65.00fp" },
{ Converter::ArkValue<Opt_Length>("4.3fp"), "4.30fp" },
{ Converter::ArkValue<Opt_Length>("11lpx"), "11.00lpx" },
{ Converter::ArkValue<Opt_Length>("0.5lpx"), "0.50lpx" },
{ Converter::ArkValue<Opt_Length>("3"), "3.00vp" },
{ Converter::ArkValue<Opt_Length>("10.65"), "10.65vp" },
{ Converter::ArkValue<Opt_Length>("23%"), "23.00%" },
};
std::unique_ptr<JsonValue> jsonValue;
std::optional<std::string> resultStr;
Opt_PathOptions realInputValue = Converter::ArkValue<Opt_PathOptions>(Ark_PathOptions{});
Ark_PathOptions& inputValueOptions = realInputValue.value;
for (const auto &[arkValue, expected]: testPlan) {
inputValueOptions.width = arkValue;
inputValueOptions.height = arkValue;
modifier_->setPathOptions(node_, &realInputValue);
jsonValue = GetJsonValue(node_);
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_WIDTH_NAME);
EXPECT_THAT(resultStr, Eq(expected));
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_HEIGHT_NAME);
EXPECT_THAT(resultStr, Eq(expected));
}
}
* @tc.name: setPathOptionsTestSizeInvalidValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setPathOptionsTestSizeInvalidValues, TestSize.Level1)
{
using OneTestStep = std::pair<Opt_Length, std::string>;
static const std::vector<OneTestStep> testPlan = {
{ Converter::ArkValue<Opt_Length>(-1.), "0.00vp" },
{ Converter::ArkValue<Opt_Length>("invalid value"), "0.00vp" },
{ Converter::ArkValue<Opt_Length>(-3.56), "0.00vp" },
{ Converter::ArkValue<Opt_Length>("-8px"), "0.00px" },
{ Converter::ArkValue<Opt_Length>("-21vp"), "0.00vp" },
{ Converter::ArkValue<Opt_Length>("-15.6px"), "0.00px" },
{ Converter::ArkValue<Opt_Length>("-8.6vp"), "0.00vp" },
{ Converter::ArkValue<Opt_Length>("-32fp"), "0.00fp" },
{ Converter::ArkValue<Opt_Length>("-22lpx"), "0.00lpx" },
{ Converter::ArkValue<Opt_Length>("-9.99fp"), "0.00fp" },
{ Converter::ArkValue<Opt_Length>("-1.23lpx"), "0.00lpx" },
{ Converter::ArkValue<Opt_Length>("-6"), "0.00vp" },
{ Converter::ArkValue<Opt_Length>("-16.2"), "0.00vp" },
};
std::unique_ptr<JsonValue> jsonValue;
std::optional<std::string> resultStr;
Opt_PathOptions realInputValue = Converter::ArkValue<Opt_PathOptions>(Ark_PathOptions{});
Ark_PathOptions& inputValueOptions = realInputValue.value;
for (auto &[arkValue, expected]: testPlan) {
inputValueOptions.width = arkValue;
inputValueOptions.height = arkValue;
modifier_->setPathOptions(node_, &realInputValue);
jsonValue = GetJsonValue(node_);
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_WIDTH_NAME);
EXPECT_THAT(resultStr, Eq(expected));
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_HEIGHT_NAME);
EXPECT_THAT(resultStr, Eq(expected));
}
}
* @tc.name: setPathOptionsTestCmdValid
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setPathOptionsTestCmdValid, TestSize.Level1)
{
std::optional<std::string> resultStr;
Opt_PathOptions realInputValue = Converter::ArkValue<Opt_PathOptions>(Ark_PathOptions{});
Ark_PathOptions& inputValueOptions = realInputValue.value;
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>("abc"));
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq("abc"));
}
* @tc.name: setPathOptionsTestCmdInvalid
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setPathOptionsTestCmdInvalid, TestSize.Level1)
{
std::optional<std::string> resultStr;
Opt_PathOptions realInputValue = Converter::ArkValue<Opt_PathOptions>(Ark_PathOptions{});
Ark_PathOptions& inputValueOptions = realInputValue.value;
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>();
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueOptions.commands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(""));
modifier_->setPathOptions(node_, &realInputValue);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_COMMANDS_INVALID_VALUE));
}
* @tc.name: setCommandsTestDefaultValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setCommandsTestDefaultValues, TestSize.Level1)
{
std::unique_ptr<JsonValue> jsonValue = GetJsonValue(node_);
std::optional<std::string> resultStr;
resultStr = GetAttrValue<std::string>(jsonValue, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_COMMANDS_DEFAULT_VALUE));
}
* @tc.name: setCommandsTestValidValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setCommandsTestValidValues, TestSize.Level1)
{
Opt_ResourceStr inputValueCommands;
std::optional<std::string> resultStr;
inputValueCommands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setCommands(node_, &inputValueCommands);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueCommands = Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>("abc"));
modifier_->setCommands(node_, &inputValueCommands);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq("abc"));
}
* @tc.name: setCommandsTestInvalidValues
* @tc.desc:
* @tc.type: FUNC
*/
HWTEST_F(PathModifierTest, setCommandsTestInvalidValues, TestSize.Level1)
{
Opt_ResourceStr inputValueCommands;
std::optional<std::string> resultStr;
inputValueCommands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setCommands(node_, &inputValueCommands);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
modifier_->setCommands(node_, nullptr);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(ATTRIBUTE_COMMANDS_INVALID_VALUE));
inputValueCommands =
Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(PATH_CMD));
modifier_->setCommands(node_, &inputValueCommands);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(PATH_CMD));
inputValueCommands = Converter::ArkValue<Opt_ResourceStr>(Converter::ArkUnion<Ark_ResourceStr, Ark_String>(""));
modifier_->setCommands(node_, &inputValueCommands);
resultStr = GetAttrValue<std::string>(node_, ATTRIBUTE_COMMANDS_NAME);
EXPECT_THAT(resultStr, Eq(""));
}
}