/* * 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 #include #include "ability_command.h" #include "ability_manager_client.h" #include "ability_manager_interface.h" #include "bundle_command.h" #include "tool_system_test.h" using namespace testing::ext; using namespace OHOS; using namespace OHOS::AAFwk; using namespace OHOS::AppExecFwk; namespace { const std::string STRING_DEVICE_NAME = "device"; const std::string STRING_PAGE_ABILITY_BUNDLE_PATH = "/data/test/resource/aa/pageAbilityBundleForStart.hap"; const std::string STRING_PAGE_ABILITY_BUNDLE_NAME = "com.ohos.tools.pageAbilityBundleForStart"; const std::string STRING_PAGE_ABILITY_BUNDLE_NAME_INVALID = STRING_PAGE_ABILITY_BUNDLE_NAME + ".invalid"; const std::string STRING_PAGE_ABILITY_NAME = "com.ohos.tools.pageAbilityForStart.MainAbility"; const std::string STRING_PAGE_ABILITY_NAME_INVALID = STRING_PAGE_ABILITY_NAME + ".Invalid"; const std::string STRING_SERVICE_ABILITY_BUNDLE_PATH = "/data/test/resource/aa/serviceAbilityBundleForStart.hap"; const std::string STRING_SERVICE_ABILITY_BUNDLE_NAME = "com.ohos.tools.serviceAbilityBundleForStart"; const std::string STRING_SERVICE_ABILITY_BUNDLE_NAME_INVALID = STRING_SERVICE_ABILITY_BUNDLE_NAME + ".invalid"; const std::string STRING_SERVICE_ABILITY_NAME = "MainAbility"; const std::string STRING_SERVICE_ABILITY_NAME_INVALID = STRING_SERVICE_ABILITY_NAME + ".Invalid"; } // namespace class AaCommandStartSystemTest : public ::testing::Test { public: static void SetUpTestCase(); static void TearDownTestCase(); void SetUp() override; void TearDown() override; }; void AaCommandStartSystemTest::SetUpTestCase() {} void AaCommandStartSystemTest::TearDownTestCase() {} void AaCommandStartSystemTest::SetUp() { // reset optind to 0 optind = 0; } void AaCommandStartSystemTest::TearDown() {} /** * @tc.number: Aa_Command_Start_SystemTest_0100 * @tc.name: ExecCommand * @tc.desc: Verify the "aa start -d -a -b " command. */ HWTEST_F(AaCommandStartSystemTest, Aa_Command_Start_SystemTest_0100, Function | MediumTest | Level1) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_PAGE_ABILITY_BUNDLE_NAME); // install the bundle ToolSystemTest::InstallBundle(STRING_PAGE_ABILITY_BUNDLE_PATH, true); // start the page ability std::string command = "aa start -d " + STRING_DEVICE_NAME + " -a " + STRING_PAGE_ABILITY_NAME + " -b " + STRING_PAGE_ABILITY_BUNDLE_NAME; std::string commandResult = ToolSystemTest::ExecuteCommand(command); EXPECT_EQ(commandResult, STRING_START_ABILITY_OK + "\n"); // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_PAGE_ABILITY_BUNDLE_NAME); } /** * @tc.number: Aa_Command_Start_SystemTest_0200 * @tc.name: ExecCommand * @tc.desc: Verify the "aa start -d -a -b " command. */ HWTEST_F(AaCommandStartSystemTest, Aa_Command_Start_SystemTest_0200, Function | MediumTest | Level1) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_SERVICE_ABILITY_BUNDLE_NAME); // install the bundle ToolSystemTest::InstallBundle(STRING_SERVICE_ABILITY_BUNDLE_PATH, true); // start the service ability std::string command = "aa start -d " + STRING_DEVICE_NAME + " -a " + STRING_SERVICE_ABILITY_NAME + " -b " + STRING_SERVICE_ABILITY_BUNDLE_NAME; std::string commandResult = ToolSystemTest::ExecuteCommand(command); EXPECT_EQ(commandResult, STRING_START_ABILITY_OK + "\n"); // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_SERVICE_ABILITY_BUNDLE_NAME); } /** * @tc.number: Aa_Command_Start_SystemTest_0300 * @tc.name: ExecCommand * @tc.desc: Verify the "aa start -d -a -b " command. */ HWTEST_F(AaCommandStartSystemTest, Aa_Command_Start_SystemTest_0300, Function | MediumTest | Level1) { // start the invalid page ability std::string command = "aa start -d " + STRING_DEVICE_NAME + " -a " + STRING_PAGE_ABILITY_NAME_INVALID + " -b " + STRING_PAGE_ABILITY_BUNDLE_NAME_INVALID; std::string commandResult = ToolSystemTest::ExecuteCommand(command); EXPECT_EQ(commandResult, STRING_START_ABILITY_NG + "\n"); } /** * @tc.number: Aa_Command_Start_SystemTest_0400 * @tc.name: ExecCommand * @tc.desc: Verify the "aa start -d -a -b " command. */ HWTEST_F(AaCommandStartSystemTest, Aa_Command_Start_SystemTest_0400, Function | MediumTest | Level1) { // start the invalid service ability std::string command = "aa start -d " + STRING_DEVICE_NAME + " -a " + STRING_SERVICE_ABILITY_NAME_INVALID + " -b " + STRING_SERVICE_ABILITY_BUNDLE_NAME_INVALID; std::string commandResult = ToolSystemTest::ExecuteCommand(command); EXPECT_EQ(commandResult, STRING_START_ABILITY_NG + "\n"); }