mirror of
https://gitee.com/openharmony/accessibility
synced 2024-11-23 06:50:30 +00:00
无障碍DT用例补充
Signed-off-by: taojuncun <taojuncun@huawei.com>
This commit is contained in:
parent
283d028eb5
commit
e6e9a04259
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef MOCK_ACCESSIBILITY_ELEMENT_OPERATOR_IMPL_H
|
||||
#define MOCK_ACCESSIBILITY_ELEMENT_OPERATOR_IMPL_H
|
||||
|
||||
#include <gmock/gmock.h>
|
||||
#include "accessibility_element_operator.h"
|
||||
|
||||
namespace OHOS {
|
||||
namespace Accessibility {
|
||||
class MockAccessibilityElementOperator : public AccessibilityElementOperator {
|
||||
public:
|
||||
MockAccessibilityElementOperator() = default;
|
||||
virtual ~MockAccessibilityElementOperator() = default;
|
||||
MOCK_METHOD4(SearchElementInfoByAccessibilityId, void(const int64_t elementId,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback, const int32_t mode));
|
||||
MOCK_METHOD4(SearchElementInfosByText, void(const int64_t elementId, const std::string& text,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD4(FindFocusedElementInfo, void(const int64_t elementId, const int32_t focusType,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD4(FocusMoveSearch, void(const int64_t elementId, const int32_t direction,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD5(ExecuteAction, void(const int64_t elementId, const int32_t action,
|
||||
const std::map<std::string, std::string> &actionArguments,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD3(GetCursorPosition, void(const int64_t elementId,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback &callback));
|
||||
MOCK_METHOD0(OutsideTouch, void());
|
||||
MOCK_METHOD0(ClearFocus, void());
|
||||
MOCK_METHOD3(SetChildTreeIdAndWinId, void(const int64_t elementId, const int32_t treeId,
|
||||
const int32_t childWindowId));
|
||||
MOCK_METHOD1(SetBelongTreeId, void(const int32_t treeId));
|
||||
MOCK_METHOD1(SetParentWindowId, void(const int32_t parentWindowId));
|
||||
};
|
||||
} // namespace Accessibility
|
||||
} // namespace OHOS
|
||||
#endif // MOCK_ACCESSIBILITY_ELEMENT_OPERATOR_H
|
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef MOCK_ACCESSIBILITY_SYSTEM_ABILITY_CLIENT_IMPL_H
|
||||
#define MOCK_ACCESSIBILITY_SYSTEM_ABILITY_CLIENT_IMPL_H
|
||||
|
||||
#include <gmock/gmock.h>
|
||||
#include "accessibility_element_operator.h"
|
||||
|
||||
namespace OHOS {
|
||||
namespace Accessibility {
|
||||
class MockAccessibilitySystemAbilityClientImpl : public AccessibilitySystemAbilityClientImpl {
|
||||
public:
|
||||
MockAccessibilitySystemAbilityClientImpl() = default;
|
||||
virtual ~MockAccessibilitySystemAbilityClientImpl() = default;
|
||||
MOCK_METHOD4(SearchElementInfoByAccessibilityId, void(const int64_t elementId,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback, const int32_t mode));
|
||||
MOCK_METHOD4(SearchElementInfosByText, void(const int64_t elementId, const std::string& text,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD4(FindFocusedElementInfo, void(const int64_t elementId, const int32_t focusType,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD4(FocusMoveSearch, void(const int64_t elementId, const int32_t direction,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD5(ExecuteAction, void(const int64_t elementId, const int32_t action,
|
||||
const std::map<std::string, std::string> &actionArguments,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback& callback));
|
||||
MOCK_METHOD3(GetCursorPosition, void(const int64_t elementId,
|
||||
const int32_t requestId, AccessibilityElementOperatorCallback &callback));
|
||||
MOCK_METHOD0(OutsideTouch, void());
|
||||
MOCK_METHOD0(ClearFocus, void());
|
||||
MOCK_METHOD3(SetChildTreeIdAndWinId, void(const int64_t elementId, const int32_t treeId,
|
||||
const int32_t childWindowId));
|
||||
MOCK_METHOD1(SetBelongTreeId, void(const int32_t treeId));
|
||||
MOCK_METHOD1(SetParentWindowId, void(const int32_t parentWindowId));
|
||||
};
|
||||
} // namespace Accessibility
|
||||
} // namespace OHOS
|
||||
#endif // MOCK_ACCESSIBILITY_SYSTEM_ABILITY_CLIENT_IMPL_H
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user