mirror of
https://gitee.com/openharmony/accessibility
synced 2024-11-23 15:01:17 +00:00
e53f722d44
Signed-off-by: 吴敏杰 <wuminjie2@h-partners.com>
283 lines
7.2 KiB
C++
283 lines
7.2 KiB
C++
/*
|
|
* Copyright (c) 2021 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 "accessibility_common_helper.h"
|
|
#include "accessibility_mt_helper.h"
|
|
#include "system_ability.h"
|
|
|
|
namespace OHOS {
|
|
SystemAbility::SystemAbility(bool runOnCreate)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SystemAbility";
|
|
isRunning_ = false;
|
|
isRunOnCreate_ = runOnCreate;
|
|
isDistributed_ = false;
|
|
dumpLevel_ = 0;
|
|
capability_ = u"";
|
|
}
|
|
|
|
SystemAbility::SystemAbility(int32_t systemAbilityId, bool runOnCreate) : SystemAbility(runOnCreate)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SystemAbility";
|
|
saId_ = systemAbilityId;
|
|
}
|
|
|
|
SystemAbility::~SystemAbility()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility ~SystemAbility";
|
|
}
|
|
|
|
bool SystemAbility::MakeAndRegisterAbility(SystemAbility* systemAbility)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility MakeAndRegisterAbility";
|
|
(void)systemAbility;
|
|
Accessibility::AccessibilityCommonHelper::GetInstance().SetIsServicePublished(false);
|
|
return true;
|
|
}
|
|
|
|
bool SystemAbility::AddSystemAbilityListener(int32_t systemAbilityId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility AddSystemAbilityListener";
|
|
OnAddSystemAbility(systemAbilityId, "");
|
|
return true;
|
|
}
|
|
|
|
bool SystemAbility::RemoveSystemAbilityListener(int32_t systemAbilityId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility RemoveSystemAbilityListener";
|
|
(void)systemAbilityId;
|
|
return true;
|
|
}
|
|
|
|
bool SystemAbility::Publish(sptr<IRemoteObject> systemAbility)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility Publish";
|
|
(void)systemAbility;
|
|
systemAbility.ForceSetRefPtr(nullptr);
|
|
Accessibility::AccessibilityCommonHelper::GetInstance().SetIsServicePublished(true);
|
|
return true;
|
|
}
|
|
|
|
void SystemAbility::StopAbility(int32_t systemAbilityId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility StopAbility";
|
|
return;
|
|
}
|
|
|
|
void SystemAbility::Start()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility Start";
|
|
OnStart();
|
|
isRunning_ = true;
|
|
}
|
|
|
|
void SystemAbility::Stop()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility Stop";
|
|
if (!isRunning_) {
|
|
return;
|
|
}
|
|
|
|
OnStop();
|
|
isRunning_ = false;
|
|
}
|
|
|
|
void SystemAbility::SADump()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SADump";
|
|
OnDump();
|
|
}
|
|
|
|
int32_t SystemAbility::GetSystemAbilitId() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetSystemAbilitId";
|
|
return saId_;
|
|
}
|
|
|
|
void SystemAbility::SetLibPath(const std::string& libPath)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetLibPath";
|
|
libPath_ = libPath;
|
|
}
|
|
|
|
const std::string& SystemAbility::GetLibPath() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetLibPath";
|
|
return libPath_;
|
|
}
|
|
|
|
void SystemAbility::SetDependSa(const std::vector<int32_t>& dependSa)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetDependSa";
|
|
dependSa_ = dependSa;
|
|
}
|
|
|
|
const std::vector<int32_t>& SystemAbility::GetDependSa() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetDependSa";
|
|
return dependSa_;
|
|
}
|
|
|
|
void SystemAbility::SetRunOnCreate(bool isRunOnCreate)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetRunOnCreate";
|
|
isRunOnCreate_ = isRunOnCreate;
|
|
}
|
|
|
|
bool SystemAbility::IsRunOnCreate() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility IsRunOnCreate";
|
|
return isRunOnCreate_;
|
|
}
|
|
|
|
void SystemAbility::SetDistributed(bool isDistributed)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetDistributed";
|
|
isDistributed_ = isDistributed;
|
|
}
|
|
|
|
bool SystemAbility::GetDistributed() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetDistributed";
|
|
return isDistributed_;
|
|
}
|
|
|
|
bool SystemAbility::GetRunningStatus() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetRunningStatus";
|
|
return isRunning_;
|
|
}
|
|
|
|
void SystemAbility::SetDumpLevel(uint32_t dumpLevel)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetDumpLevel";
|
|
dumpLevel_ = dumpLevel;
|
|
}
|
|
|
|
uint32_t SystemAbility::GetDumpLevel() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetDumpLevel";
|
|
return dumpLevel_;
|
|
}
|
|
|
|
void SystemAbility::SetDependTimeout(int32_t dependTimeout)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetDependTimeout";
|
|
(void)dependTimeout;
|
|
}
|
|
|
|
int32_t SystemAbility::GetDependTimeout() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetDependTimeout";
|
|
return dependTimeout_;
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnDump()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnDump";
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnStart()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnStart";
|
|
}
|
|
|
|
int32_t SystemAbility::OnExtension(const std::string& extension, MessageParcel& data, MessageParcel& reply)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnExtension";
|
|
return 0;
|
|
}
|
|
|
|
void SystemAbility::OnStart(const SystemAbilityOnDemandReason& startReason)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnStart";
|
|
}
|
|
|
|
int32_t SystemAbility::OnIdle(const SystemAbilityOnDemandReason& idleReason)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnIdle";
|
|
return 0;
|
|
}
|
|
|
|
void SystemAbility::OnActive(const SystemAbilityOnDemandReason& activeReason)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnActive";
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnStop()
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnStop";
|
|
}
|
|
|
|
void SystemAbility::OnStop(const SystemAbilityOnDemandReason& stopReason)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnStop";
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnAddSystemAbility(int32_t systemAbilityId, const std::string& deviceId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnAddSystemAbility";
|
|
(void)systemAbilityId;
|
|
(void)deviceId;
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnRemoveSystemAbility(int32_t systemAbilityId, const std::string& deviceId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnRemoveSystemAbility";
|
|
(void)systemAbilityId;
|
|
(void)deviceId;
|
|
}
|
|
|
|
sptr<IRemoteObject> SystemAbility::GetSystemAbility(int32_t systemAbilityId)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetSystemAbility";
|
|
(void)systemAbilityId;
|
|
return nullptr;
|
|
}
|
|
|
|
void SystemAbility::SetCapability(const std::u16string& capability)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetCapability";
|
|
capability_ = capability;
|
|
}
|
|
|
|
const std::u16string& SystemAbility::GetCapability() const
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility GetCapability";
|
|
return capability_;
|
|
}
|
|
|
|
void SystemAbility::SetPermission(const std::u16string& permission)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility SetPermission";
|
|
permission_ = permission;
|
|
}
|
|
|
|
// The details should be implemented by subclass
|
|
void SystemAbility::OnDeviceLevelChanged(int32_t type, int32_t level, std::string& action)
|
|
{
|
|
GTEST_LOG_(INFO) << "MOCK SystemAbility OnDeviceLevelChanged";
|
|
(void)type;
|
|
(void)level;
|
|
(void)action;
|
|
}
|
|
}
|