blob: 8c6081ae227d5ffe2c7269a930eff4b2047514ed [file] [log] [blame]
Florian Mayere8599d42019-10-14 14:58:15 +01001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Primiano Tuccid6dc0c02020-12-01 16:15:28 +010017#include "test/android_test_utils.h"
Florian Mayere8599d42019-10-14 14:58:15 +010018
19#include <stdlib.h>
20#include <sys/system_properties.h>
21
22#include "perfetto/base/logging.h"
Ryan Savitski9fa72002020-02-19 14:31:20 +000023#include "perfetto/ext/base/file_utils.h"
Florian Mayere8599d42019-10-14 14:58:15 +010024
25namespace perfetto {
26namespace {
27
28// invokes |callback| once the target app is in the desired state
29void PollRunState(bool desired_run_state,
30 base::TestTaskRunner* task_runner,
31 const std::string& name,
32 std::function<void()> callback) {
33 bool app_running = IsAppRunning(name);
34 if (app_running == desired_run_state) {
35 callback();
36 return;
37 }
38 task_runner->PostDelayedTask(
39 [desired_run_state, task_runner, name, callback] {
40 PollRunState(desired_run_state, task_runner, name, std::move(callback));
41 },
42 /*delay_ms=*/5);
43}
44
45} // namespace
46
47bool IsDebuggableBuild() {
48 char buf[PROP_VALUE_MAX + 1] = {};
49 int ret = __system_property_get("ro.debuggable", buf);
50 PERFETTO_CHECK(ret >= 0);
Ryan Savitski9fa72002020-02-19 14:31:20 +000051 return std::string(buf) == "1";
Florian Mayere8599d42019-10-14 14:58:15 +010052}
53
Florian Mayer79c86842020-03-31 11:52:55 +020054bool IsUserBuild() {
55 char buf[PROP_VALUE_MAX + 1] = {};
56 int ret = __system_property_get("ro.build.type", buf);
57 PERFETTO_CHECK(ret >= 0);
58 return std::string(buf) == "user";
59}
60
Florian Mayere8599d42019-10-14 14:58:15 +010061// note: cannot use gtest macros due to return type
62bool IsAppRunning(const std::string& name) {
Ryan Savitski86bd0e92020-02-24 16:42:33 +000063 std::string cmd = "pgrep -f ^" + name + "$";
Florian Mayere8599d42019-10-14 14:58:15 +010064 int retcode = system(cmd.c_str());
65 PERFETTO_CHECK(retcode >= 0);
66 int exit_status = WEXITSTATUS(retcode);
67 if (exit_status == 0)
68 return true;
69 if (exit_status == 1)
70 return false;
71 PERFETTO_FATAL("unexpected exit status from system(pgrep): %d", exit_status);
72}
73
Ryan Savitski9fa72002020-02-19 14:31:20 +000074int PidForProcessName(const std::string& name) {
Ryan Savitski86bd0e92020-02-24 16:42:33 +000075 std::string cmd = "pgrep -f ^" + name + "$";
Ryan Savitski9fa72002020-02-19 14:31:20 +000076 FILE* fp = popen(cmd.c_str(), "re");
77 if (!fp)
78 return -1;
79
80 std::string out;
81 base::ReadFileStream(fp, &out);
82 pclose(fp);
83
84 char* endptr = nullptr;
85 int pid = static_cast<int>(strtol(out.c_str(), &endptr, 10));
86 if (*endptr != '\0' && *endptr != '\n')
87 return -1;
88 return pid;
89}
90
Hector Dearmanec1de7d2020-02-07 16:17:40 +000091void WaitForProcess(const std::string& process,
92 const std::string& checkpoint_name,
93 base::TestTaskRunner* task_runner,
94 uint32_t delay_ms) {
Florian Mayere8599d42019-10-14 14:58:15 +010095 bool desired_run_state = true;
96 const auto checkpoint = task_runner->CreateCheckpoint(checkpoint_name);
97 task_runner->PostDelayedTask(
Hector Dearmanec1de7d2020-02-07 16:17:40 +000098 [desired_run_state, task_runner, process, checkpoint] {
99 PollRunState(desired_run_state, task_runner, process,
Florian Mayere8599d42019-10-14 14:58:15 +0100100 std::move(checkpoint));
101 },
Hector Dearmanec1de7d2020-02-07 16:17:40 +0000102 delay_ms);
103}
104
105void StartAppActivity(const std::string& app_name,
106 const std::string& activity_name,
107 const std::string& checkpoint_name,
108 base::TestTaskRunner* task_runner,
109 uint32_t delay_ms) {
110 std::string start_cmd = "am start " + app_name + "/." + activity_name;
111 int status = system(start_cmd.c_str());
Primiano Tuccid6dc0c02020-12-01 16:15:28 +0100112 PERFETTO_CHECK(status >= 0 && WEXITSTATUS(status) == 0);
Hector Dearmanec1de7d2020-02-07 16:17:40 +0000113 WaitForProcess(app_name, checkpoint_name, task_runner, delay_ms);
Florian Mayere8599d42019-10-14 14:58:15 +0100114}
115
116void StopApp(const std::string& app_name,
117 const std::string& checkpoint_name,
118 base::TestTaskRunner* task_runner) {
119 std::string stop_cmd = "am force-stop " + app_name;
120 int status = system(stop_cmd.c_str());
Primiano Tuccid6dc0c02020-12-01 16:15:28 +0100121 PERFETTO_CHECK(status >= 0 && WEXITSTATUS(status) == 0);
Florian Mayere8599d42019-10-14 14:58:15 +0100122
123 bool desired_run_state = false;
124 auto checkpoint = task_runner->CreateCheckpoint(checkpoint_name);
125 task_runner->PostTask([desired_run_state, task_runner, app_name, checkpoint] {
126 PollRunState(desired_run_state, task_runner, app_name,
127 std::move(checkpoint));
128 });
129}
130
Florian Mayerbdc48df2020-02-20 17:25:03 +0000131void StopApp(const std::string& app_name) {
Florian Mayere8599d42019-10-14 14:58:15 +0100132 std::string stop_cmd = "am force-stop " + app_name;
133 system(stop_cmd.c_str());
134}
135
136} // namespace perfetto