• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2025 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "disallowed_notification_plugin_test.h"
17 
18 #include "edm_ipc_interface_code.h"
19 #include "utils.h"
20 
21 using namespace testing::ext;
22 
23 namespace OHOS {
24 namespace EDM {
25 namespace TEST {
SetUpTestSuite(void)26 void DisallowedNotificationPluginTest::SetUpTestSuite(void) {}
TearDownTestSuite(void)27 void DisallowedNotificationPluginTest::TearDownTestSuite(void) {}
28 
29 /**
30  * @tc.name: TestDisallowedNotificationPlugin001
31  * @tc.desc: Test DisallowedNotificationPlugin::OnSetPolicy function.
32  * @tc.type: FUNC
33  */
34 HWTEST_F(DisallowedNotificationPluginTest, TestDisallowedNotificationPlugin001, TestSize.Level1)
35 {
36     MessageParcel data;
37     MessageParcel reply;
38     data.WriteBool(true);
39     std::shared_ptr<IPlugin> plugin = DisallowedNotificationPlugin::GetPlugin();
40     std::uint32_t funcCode =
41         POLICY_FUNC_CODE((std::uint32_t)FuncOperateType::SET, EdmInterfaceCode::DISALLOWED_NOTIFICATION);
42     HandlePolicyData handlePolicyData{"", "", false};
43     ErrCode ret = plugin->OnHandlePolicy(funcCode, data, reply, handlePolicyData, DEFAULT_USER_ID);
44     ASSERT_TRUE(ret == ERR_OK);
45     ASSERT_TRUE(handlePolicyData.policyData == "true");
46     ASSERT_TRUE(handlePolicyData.isChanged);
47 }
48 } // namespace TEST
49 } // namespace EDM
50 } // namespace OHOS