summaryrefslogtreecommitdiffstats
path: root/tests/unit/parse_install_logs_test.cpp
blob: 8061f3be19150535f84fa6bf06e64a51ca3c7eb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright (C) 2018 The Android Open Source Project
 *
 * 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 <map>
#include <string>
#include <vector>

#include <android-base/file.h>
#include <android-base/strings.h>
#include <android-base/test_utils.h>
#include <gtest/gtest.h>

#include "otautil/parse_install_logs.h"

TEST(ParseInstallLogsTest, EmptyFile) {
  TemporaryFile last_install;

  auto metrics = ParseLastInstall(last_install.path);
  ASSERT_TRUE(metrics.empty());
}

TEST(ParseInstallLogsTest, SideloadSmoke) {
  TemporaryFile last_install;
  ASSERT_TRUE(android::base::WriteStringToFile("/cache/recovery/ota.zip\n0\n", last_install.path));
  auto metrics = ParseLastInstall(last_install.path);
  ASSERT_EQ(metrics.end(), metrics.find("ota_sideload"));

  ASSERT_TRUE(android::base::WriteStringToFile("/sideload/package.zip\n0\n", last_install.path));
  metrics = ParseLastInstall(last_install.path);
  ASSERT_NE(metrics.end(), metrics.find("ota_sideload"));
}

TEST(ParseInstallLogsTest, ParseRecoveryUpdateMetrics) {
  std::vector<std::string> lines = {
    "/sideload/package.zip",
    "0",
    "time_total: 300",
    "uncrypt_time: 40",
    "source_build: 4973410",
    "bytes_written_system: " + std::to_string(1200 * 1024 * 1024),
    "bytes_stashed_system: " + std::to_string(300 * 1024 * 1024),
    "bytes_written_vendor: " + std::to_string(40 * 1024 * 1024),
    "bytes_stashed_vendor: " + std::to_string(50 * 1024 * 1024),
    "temperature_start: 37000",
    "temperature_end: 38000",
    "temperature_max: 39000",
    "error: 22",
    "cause: 55",
  };

  auto metrics = ParseRecoveryUpdateMetrics(lines);

  std::map<std::string, int64_t> expected_result = {
    { "ota_time_total", 300 },         { "ota_uncrypt_time", 40 },
    { "ota_source_version", 4973410 }, { "ota_written_in_MiBs", 1240 },
    { "ota_stashed_in_MiBs", 350 },    { "ota_temperature_start", 37000 },
    { "ota_temperature_end", 38000 },  { "ota_temperature_max", 39000 },
    { "ota_non_ab_error_code", 22 },   { "ota_non_ab_cause_code", 55 },
  };

  ASSERT_EQ(expected_result, metrics);
}