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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/metrics/metrics_service.h"
#include <stdint.h>
#include <algorithm>
#include <memory>
#include <string>
#include "base/containers/contains.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_snapshot_manager.h"
#include "base/metrics/metrics_hashes.h"
#include "base/metrics/statistics_recorder.h"
#include "base/metrics/user_metrics.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/threading/platform_thread.h"
#include "build/build_config.h"
#include "components/metrics/clean_exit_beacon.h"
#include "components/metrics/client_info.h"
#include "components/metrics/cloned_install_detector.h"
#include "components/metrics/environment_recorder.h"
#include "components/metrics/log_decoder.h"
#include "components/metrics/metrics_features.h"
#include "components/metrics/metrics_log.h"
#include "components/metrics/metrics_pref_names.h"
#include "components/metrics/metrics_scheduler.h"
#include "components/metrics/metrics_state_manager.h"
#include "components/metrics/metrics_upload_scheduler.h"
#include "components/metrics/stability_metrics_helper.h"
#include "components/metrics/test/test_enabled_state_provider.h"
#include "components/metrics/test/test_metrics_provider.h"
#include "components/metrics/test/test_metrics_service_client.h"
#include "components/metrics/unsent_log_store_metrics_impl.h"
#include "components/prefs/testing_pref_service.h"
#include "components/variations/active_field_trials.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/metrics_proto/chrome_user_metrics_extension.pb.h"
#include "third_party/metrics_proto/system_profile.pb.h"
#include "third_party/zlib/google/compression_utils.h"
namespace metrics {
namespace {
const char kTestPrefName[] = "TestPref";
class TestUnsentLogStore : public UnsentLogStore {
public:
explicit TestUnsentLogStore(PrefService* service)
: UnsentLogStore(std::make_unique<UnsentLogStoreMetricsImpl>(),
service,
kTestPrefName,
nullptr,
// Set to 3 so logs are not dropped in the test.
UnsentLogStore::UnsentLogStoreLimits{
.min_log_count = 3,
},
/*signing_key=*/std::string(),
/*logs_event_manager=*/nullptr) {}
~TestUnsentLogStore() override = default;
TestUnsentLogStore(const TestUnsentLogStore&) = delete;
TestUnsentLogStore& operator=(const TestUnsentLogStore&) = delete;
static void RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterListPref(kTestPrefName);
}
};
// Returns true if |id| is present in |proto|'s collection of FieldTrials.
bool IsFieldTrialPresent(const SystemProfileProto& proto,
const std::string& trial_name,
const std::string& group_name) {
const variations::ActiveGroupId id =
variations::MakeActiveGroupId(trial_name, group_name);
for (const auto& trial : proto.field_trial()) {
if (trial.name_id() == id.name && trial.group_id() == id.group)
return true;
}
return false;
}
class TestMetricsService : public MetricsService {
public:
TestMetricsService(MetricsStateManager* state_manager,
MetricsServiceClient* client,
PrefService* local_state)
: MetricsService(state_manager, client, local_state) {}
TestMetricsService(const TestMetricsService&) = delete;
TestMetricsService& operator=(const TestMetricsService&) = delete;
~TestMetricsService() override = default;
using MetricsService::INIT_TASK_DONE;
using MetricsService::INIT_TASK_SCHEDULED;
using MetricsService::RecordCurrentEnvironmentHelper;
using MetricsService::SENDING_LOGS;
using MetricsService::state;
// MetricsService:
void SetPersistentSystemProfile(const std::string& serialized_proto,
bool complete) override {
persistent_system_profile_provided_ = true;
persistent_system_profile_complete_ = complete;
}
bool persistent_system_profile_provided() const {
return persistent_system_profile_provided_;
}
bool persistent_system_profile_complete() const {
return persistent_system_profile_complete_;
}
private:
bool persistent_system_profile_provided_ = false;
bool persistent_system_profile_complete_ = false;
};
class TestMetricsLog : public MetricsLog {
public:
TestMetricsLog(const std::string& client_id,
int session_id,
MetricsServiceClient* client)
: MetricsLog(client_id, session_id, MetricsLog::ONGOING_LOG, client) {}
TestMetricsLog(const TestMetricsLog&) = delete;
TestMetricsLog& operator=(const TestMetricsLog&) = delete;
~TestMetricsLog() override = default;
};
const char kOnDidCreateMetricsLogHistogramName[] = "Test.OnDidCreateMetricsLog";
class TestMetricsProviderForOnDidCreateMetricsLog : public TestMetricsProvider {
public:
TestMetricsProviderForOnDidCreateMetricsLog() = default;
~TestMetricsProviderForOnDidCreateMetricsLog() override = default;
void OnDidCreateMetricsLog() override {
base::UmaHistogramBoolean(kOnDidCreateMetricsLogHistogramName, true);
}
};
const char kProvideHistogramsHistogramName[] = "Test.ProvideHistograms";
class TestMetricsProviderForProvideHistograms : public TestMetricsProvider {
public:
TestMetricsProviderForProvideHistograms() = default;
~TestMetricsProviderForProvideHistograms() override = default;
bool ProvideHistograms() override {
base::UmaHistogramBoolean(kProvideHistogramsHistogramName, true);
return true;
}
void ProvideCurrentSessionData(
ChromeUserMetricsExtension* uma_proto) override {
MetricsProvider::ProvideCurrentSessionData(uma_proto);
}
};
class TestMetricsProviderForProvideHistogramsEarlyReturn
: public TestMetricsProviderForProvideHistograms {
public:
TestMetricsProviderForProvideHistogramsEarlyReturn() = default;
~TestMetricsProviderForProvideHistogramsEarlyReturn() override = default;
void OnDidCreateMetricsLog() override {}
};
class TestIndependentMetricsProvider : public MetricsProvider {
public:
TestIndependentMetricsProvider() = default;
~TestIndependentMetricsProvider() override = default;
// MetricsProvider:
bool HasIndependentMetrics() override {
// Only return true the first time this is called (i.e., we only have one
// independent log to provide).
if (!has_independent_metrics_called_) {
has_independent_metrics_called_ = true;
return true;
}
return false;
}
void ProvideIndependentMetrics(
base::OnceClosure serialize_log_callback,
base::OnceCallback<void(bool)> done_callback,
ChromeUserMetricsExtension* uma_proto,
base::HistogramSnapshotManager* snapshot_manager) override {
provide_independent_metrics_called_ = true;
uma_proto->set_client_id(123);
std::move(done_callback).Run(true);
}
bool has_independent_metrics_called() const {
return has_independent_metrics_called_;
}
bool provide_independent_metrics_called() const {
return provide_independent_metrics_called_;
}
private:
bool has_independent_metrics_called_ = false;
bool provide_independent_metrics_called_ = false;
};
class MetricsServiceTest : public testing::Test {
public:
MetricsServiceTest()
: enabled_state_provider_(new TestEnabledStateProvider(false, false)) {
base::SetRecordActionTaskRunner(
task_environment_.GetMainThreadTaskRunner());
MetricsService::RegisterPrefs(testing_local_state_.registry());
}
MetricsServiceTest(const MetricsServiceTest&) = delete;
MetricsServiceTest& operator=(const MetricsServiceTest&) = delete;
~MetricsServiceTest() override = default;
void SetUp() override { ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); }
MetricsStateManager* GetMetricsStateManager(
const base::FilePath& user_data_dir = base::FilePath(),
StartupVisibility startup_visibility = StartupVisibility::kUnknown) {
// Lazy-initialize the metrics_state_manager so that it correctly reads the
// stability state from prefs after tests have a chance to initialize it.
if (!metrics_state_manager_) {
metrics_state_manager_ = MetricsStateManager::Create(
GetLocalState(), enabled_state_provider_.get(), std::wstring(),
user_data_dir, startup_visibility);
metrics_state_manager_->InstantiateFieldTrialList();
}
return metrics_state_manager_.get();
}
std::unique_ptr<TestUnsentLogStore> InitializeTestLogStoreAndGet() {
TestUnsentLogStore::RegisterPrefs(testing_local_state_.registry());
return std::make_unique<TestUnsentLogStore>(GetLocalState());
}
PrefService* GetLocalState() { return &testing_local_state_; }
// Sets metrics reporting as enabled for testing.
void EnableMetricsReporting() { SetMetricsReporting(true); }
// Sets metrics reporting for testing.
void SetMetricsReporting(bool enabled) {
enabled_state_provider_->set_consent(enabled);
enabled_state_provider_->set_enabled(enabled);
}
// Finds a histogram with the specified |name_hash| in |histograms|.
const base::HistogramBase* FindHistogram(
const base::StatisticsRecorder::Histograms& histograms,
uint64_t name_hash) {
for (const base::HistogramBase* histogram : histograms) {
if (name_hash == base::HashMetricName(histogram->histogram_name()))
return histogram;
}
return nullptr;
}
// Checks whether |uma_log| contains any histograms that are not flagged
// with kUmaStabilityHistogramFlag. Stability logs should only contain such
// histograms.
void CheckForNonStabilityHistograms(
const ChromeUserMetricsExtension& uma_log) {
const int kStabilityFlags = base::HistogramBase::kUmaStabilityHistogramFlag;
const base::StatisticsRecorder::Histograms histograms =
base::StatisticsRecorder::GetHistograms();
for (int i = 0; i < uma_log.histogram_event_size(); ++i) {
const uint64_t hash = uma_log.histogram_event(i).name_hash();
const base::HistogramBase* histogram = FindHistogram(histograms, hash);
EXPECT_TRUE(histogram) << hash;
EXPECT_TRUE(histogram->HasFlags(kStabilityFlags)) << hash;
}
}
// Returns the number of samples logged to the specified histogram or 0 if
// the histogram was not found.
int GetHistogramSampleCount(const ChromeUserMetricsExtension& uma_log,
base::StringPiece histogram_name) {
const auto histogram_name_hash = base::HashMetricName(histogram_name);
int samples = 0;
for (int i = 0; i < uma_log.histogram_event_size(); ++i) {
const auto& histogram = uma_log.histogram_event(i);
if (histogram.name_hash() == histogram_name_hash) {
for (int j = 0; j < histogram.bucket_size(); ++j) {
const auto& bucket = histogram.bucket(j);
// Per proto comments, count field not being set means 1 sample.
samples += (!bucket.has_count() ? 1 : bucket.count());
}
}
}
return samples;
}
// Returns the sampled count of the |kOnDidCreateMetricsLogHistogramName|
// histogram in the currently staged log in |test_log_store|.
int GetSampleCountOfOnDidCreateLogHistogram(MetricsLogStore* test_log_store) {
ChromeUserMetricsExtension log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &log));
return GetHistogramSampleCount(log, kOnDidCreateMetricsLogHistogramName);
}
int GetNumberOfUserActions(MetricsLogStore* test_log_store) {
ChromeUserMetricsExtension log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &log));
return log.user_action_event_size();
}
const base::FilePath user_data_dir_path() { return temp_dir_.GetPath(); }
protected:
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
base::test::ScopedFeatureList feature_list_;
private:
std::unique_ptr<TestEnabledStateProvider> enabled_state_provider_;
TestingPrefServiceSimple testing_local_state_;
std::unique_ptr<MetricsStateManager> metrics_state_manager_;
base::ScopedTempDir temp_dir_;
};
class MetricsServiceTestWithFeatures
: public MetricsServiceTest,
public ::testing::WithParamInterface<std::tuple<bool>> {
public:
MetricsServiceTestWithFeatures() = default;
~MetricsServiceTestWithFeatures() override = default;
bool ShouldSnapshotInBg() { return std::get<0>(GetParam()); }
void SetUp() override {
MetricsServiceTest::SetUp();
std::vector<base::test::FeatureRefAndParams> enabled_features;
std::vector<base::test::FeatureRef> disabled_features;
if (ShouldSnapshotInBg()) {
enabled_features.emplace_back(features::kMetricsServiceDeltaSnapshotInBg,
base::FieldTrialParams());
} else {
disabled_features.emplace_back(
features::kMetricsServiceDeltaSnapshotInBg);
}
feature_list_.InitWithFeaturesAndParameters(enabled_features,
disabled_features);
}
private:
base::test::ScopedFeatureList feature_list_;
};
struct StartupVisibilityTestParams {
metrics::StartupVisibility startup_visibility;
bool expected_beacon_value;
};
class MetricsServiceTestWithStartupVisibility
: public MetricsServiceTest,
public ::testing::WithParamInterface<
std::tuple<StartupVisibilityTestParams, bool>> {
public:
MetricsServiceTestWithStartupVisibility() = default;
~MetricsServiceTestWithStartupVisibility() override = default;
bool ShouldSnapshotInBg() { return std::get<1>(GetParam()); }
void SetUp() override {
MetricsServiceTest::SetUp();
std::vector<base::test::FeatureRefAndParams> enabled_features;
std::vector<base::test::FeatureRef> disabled_features;
if (ShouldSnapshotInBg()) {
enabled_features.emplace_back(features::kMetricsServiceDeltaSnapshotInBg,
base::FieldTrialParams());
} else {
disabled_features.emplace_back(
features::kMetricsServiceDeltaSnapshotInBg);
}
feature_list_.InitWithFeaturesAndParameters(enabled_features,
disabled_features);
}
private:
base::test::ScopedFeatureList feature_list_;
};
class ExperimentTestMetricsProvider : public TestMetricsProvider {
public:
explicit ExperimentTestMetricsProvider(
base::FieldTrial* profile_metrics_trial,
base::FieldTrial* session_data_trial)
: profile_metrics_trial_(profile_metrics_trial),
session_data_trial_(session_data_trial) {}
~ExperimentTestMetricsProvider() override = default;
void ProvideSystemProfileMetrics(
SystemProfileProto* system_profile_proto) override {
TestMetricsProvider::ProvideSystemProfileMetrics(system_profile_proto);
profile_metrics_trial_->Activate();
}
void ProvideCurrentSessionData(
ChromeUserMetricsExtension* uma_proto) override {
TestMetricsProvider::ProvideCurrentSessionData(uma_proto);
session_data_trial_->Activate();
}
private:
raw_ptr<base::FieldTrial> profile_metrics_trial_;
raw_ptr<base::FieldTrial> session_data_trial_;
};
bool HistogramExists(base::StringPiece name) {
return base::StatisticsRecorder::FindHistogram(name) != nullptr;
}
base::HistogramBase::Count GetHistogramDeltaTotalCount(base::StringPiece name) {
return base::StatisticsRecorder::FindHistogram(name)
->SnapshotDelta()
->TotalCount();
}
} // namespace
INSTANTIATE_TEST_SUITE_P(All,
MetricsServiceTestWithFeatures,
::testing::Combine(::testing::Bool()));
TEST_P(MetricsServiceTestWithFeatures, RecordId) {
EnableMetricsReporting();
GetMetricsStateManager(user_data_dir_path())->ForceClientIdCreation();
// Set an initial value for the record-ids, to make them predictable.
GetLocalState()->SetInteger(prefs::kMetricsLogRecordId, 1000);
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(user_data_dir_path()),
&client, GetLocalState());
auto log1 = service.CreateLogForTesting(MetricsLog::ONGOING_LOG);
auto log2 = service.CreateLogForTesting(MetricsLog::INITIAL_STABILITY_LOG);
auto log3 = service.CreateLogForTesting(MetricsLog::INDEPENDENT_LOG);
EXPECT_EQ(1001, log1->uma_proto()->record_id());
EXPECT_EQ(1002, log2->uma_proto()->record_id());
EXPECT_EQ(1003, log3->uma_proto()->record_id());
}
TEST_P(MetricsServiceTestWithFeatures, InitialStabilityLogAfterCleanShutDown) {
base::HistogramTester histogram_tester;
EnableMetricsReporting();
// Write a beacon file indicating that Chrome exited cleanly. Note that the
// crash streak value is arbitrary.
const base::FilePath beacon_file_path =
user_data_dir_path().Append(kCleanExitBeaconFilename);
ASSERT_TRUE(base::WriteFile(
beacon_file_path, CleanExitBeacon::CreateBeaconFileContentsForTesting(
/*exited_cleanly=*/true, /*crash_streak=*/1)));
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(user_data_dir_path()),
&client, GetLocalState());
TestMetricsProvider* test_provider = new TestMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// No initial stability log should be generated.
EXPECT_FALSE(service.has_unsent_logs());
// Ensure that HasPreviousSessionData() is always called on providers,
// for consistency, even if other conditions already indicate their presence.
EXPECT_TRUE(test_provider->has_initial_stability_metrics_called());
// The test provider should not have been called upon to provide initial
// stability nor regular stability metrics.
EXPECT_FALSE(test_provider->provide_initial_stability_metrics_called());
EXPECT_FALSE(test_provider->provide_stability_metrics_called());
// As there wasn't an unclean shutdown, no browser crash samples should have
// been emitted.
histogram_tester.ExpectBucketCount("Stability.Counts2",
StabilityEventType::kBrowserCrash, 0);
}
TEST_P(MetricsServiceTestWithFeatures, InitialStabilityLogAtProviderRequest) {
base::HistogramTester histogram_tester;
EnableMetricsReporting();
// Save an existing system profile to prefs, to correspond to what would be
// saved from a previous session.
TestMetricsServiceClient client;
TestMetricsLog log("0a94430b-18e5-43c8-a657-580f7e855ce1", 1, &client);
DelegatingProvider delegating_provider;
TestMetricsService::RecordCurrentEnvironmentHelper(&log, GetLocalState(),
&delegating_provider);
// Record stability build time and version from previous session, so that
// stability metrics (including exited cleanly flag) won't be cleared.
EnvironmentRecorder(GetLocalState())
.SetBuildtimeAndVersion(MetricsLog::GetBuildTime(),
client.GetVersionString());
// Write a beacon file indicating that Chrome exited cleanly. Note that the
// crash streak value is arbitrary.
const base::FilePath beacon_file_path =
user_data_dir_path().Append(kCleanExitBeaconFilename);
ASSERT_TRUE(base::WriteFile(
beacon_file_path, CleanExitBeacon::CreateBeaconFileContentsForTesting(
/*exited_cleanly=*/true, /*crash_streak=*/1)));
TestMetricsService service(GetMetricsStateManager(user_data_dir_path()),
&client, GetLocalState());
// Add a metrics provider that requests a stability log.
TestMetricsProvider* test_provider = new TestMetricsProvider();
test_provider->set_has_initial_stability_metrics(true);
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// The initial stability log should be generated and persisted in unsent logs.
MetricsLogStore* test_log_store = service.LogStoreForTest();
EXPECT_TRUE(test_log_store->has_unsent_logs());
EXPECT_FALSE(test_log_store->has_staged_log());
// Ensure that HasPreviousSessionData() is always called on providers,
// for consistency, even if other conditions already indicate their presence.
EXPECT_TRUE(test_provider->has_initial_stability_metrics_called());
// The test provider should have been called upon to provide initial
// stability and regular stability metrics.
EXPECT_TRUE(test_provider->provide_initial_stability_metrics_called());
EXPECT_TRUE(test_provider->provide_stability_metrics_called());
// Stage the log and retrieve it.
test_log_store->StageNextLog();
EXPECT_TRUE(test_log_store->has_staged_log());
ChromeUserMetricsExtension uma_log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &uma_log));
EXPECT_TRUE(uma_log.has_client_id());
EXPECT_TRUE(uma_log.has_session_id());
EXPECT_TRUE(uma_log.has_system_profile());
EXPECT_EQ(0, uma_log.user_action_event_size());
EXPECT_EQ(0, uma_log.omnibox_event_size());
CheckForNonStabilityHistograms(uma_log);
EXPECT_EQ(
1, GetHistogramSampleCount(uma_log, "UMA.InitialStabilityRecordBeacon"));
// As there wasn't an unclean shutdown, no browser crash samples should have
// been emitted.
histogram_tester.ExpectBucketCount("Stability.Counts2",
StabilityEventType::kBrowserCrash, 0);
}
TEST_P(MetricsServiceTestWithFeatures, IndependentLogAtProviderRequest) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Create a a provider that will have one independent log to provide.
auto* test_provider = new TestIndependentMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
// Verify that the independent log provider has not yet been called, and emit
// a histogram. This histogram should not be put into the independent log.
EXPECT_FALSE(test_provider->has_independent_metrics_called());
EXPECT_FALSE(test_provider->provide_independent_metrics_called());
const std::string test_histogram = "Test.Histogram";
base::UmaHistogramBoolean(test_histogram, true);
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time by another |initialization_delay|, which is when
// metrics providers are called to provide independent logs.
task_environment_.FastForwardBy(initialization_delay);
EXPECT_TRUE(test_provider->has_independent_metrics_called());
EXPECT_TRUE(test_provider->provide_independent_metrics_called());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| twice, we only need to fast forward by
// N - 2 * |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
2 * initialization_delay);
EXPECT_EQ(TestMetricsService::SENDING_LOGS, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
// The currently staged log should be the independent log created by the
// independent log provider. The log should have a client id of 123. It should
// also not contain |test_histogram|.
ASSERT_TRUE(test_log_store->has_staged_log());
ChromeUserMetricsExtension uma_log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &uma_log));
EXPECT_EQ(uma_log.client_id(), 123UL);
EXPECT_EQ(GetHistogramSampleCount(uma_log, test_histogram), 0);
// Discard the staged log and stage the next one. It should be the first
// ongoing log.
test_log_store->DiscardStagedLog();
ASSERT_TRUE(test_log_store->has_unsent_logs());
test_log_store->StageNextLog();
ASSERT_TRUE(test_log_store->has_staged_log());
// Verify that the first ongoing log contains |test_histogram| (it should not
// have been put into the independent log).
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &uma_log));
EXPECT_EQ(GetHistogramSampleCount(uma_log, test_histogram), 1);
}
TEST_P(MetricsServiceTestWithFeatures, OnDidCreateMetricsLogAtShutdown) {
base::HistogramTester histogram_tester;
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Create a provider that will log to |kOnDidCreateMetricsLogHistogramName|
// in OnDidCreateMetricsLog().
auto* test_provider = new TestMetricsProviderForOnDidCreateMetricsLog();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
// OnDidCreateMetricsLog() is called once when the first ongoing log is
// created.
histogram_tester.ExpectBucketCount(kOnDidCreateMetricsLogHistogramName, true,
1);
service.Stop();
// OnDidCreateMetricsLog() will be called during shutdown to emit histograms.
histogram_tester.ExpectBucketCount(kOnDidCreateMetricsLogHistogramName, true,
2);
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting(
kOnDidCreateMetricsLogHistogramName);
}
TEST_P(MetricsServiceTestWithFeatures, ProvideHistograms) {
base::HistogramTester histogram_tester;
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Create a provider that will log to |kProvideHistogramsHistogramName|
// in ProvideHistograms().
auto* test_provider = new TestMetricsProviderForProvideHistograms();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
// ProvideHistograms() is called in OnDidCreateMetricsLog().
histogram_tester.ExpectBucketCount(kProvideHistogramsHistogramName, true, 1);
service.StageCurrentLogForTest();
histogram_tester.ExpectBucketCount(kProvideHistogramsHistogramName, true, 2);
service.Stop();
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting(
kProvideHistogramsHistogramName);
}
TEST_P(MetricsServiceTestWithFeatures, ProvideHistogramsEarlyReturn) {
base::HistogramTester histogram_tester;
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Create a provider that will log to |kOnDidCreateMetricsLogHistogramName|
// in OnDidCreateMetricsLog().
auto* test_provider =
new TestMetricsProviderForProvideHistogramsEarlyReturn();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
// Make sure no histogram is emitted when having an early return.
histogram_tester.ExpectBucketCount(kProvideHistogramsHistogramName, true, 0);
service.StageCurrentLogForTest();
// ProvideHistograms() should be called in ProvideCurrentSessionData() if
// histograms haven't been emitted.
histogram_tester.ExpectBucketCount(kProvideHistogramsHistogramName, true, 1);
// Try another log to make sure emission status is reset between logs.
service.LogStoreForTest()->DiscardStagedLog();
service.StageCurrentLogForTest();
histogram_tester.ExpectBucketCount(kProvideHistogramsHistogramName, true, 2);
service.Stop();
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting(
kProvideHistogramsHistogramName);
}
INSTANTIATE_TEST_SUITE_P(
All,
MetricsServiceTestWithStartupVisibility,
::testing::Combine(
::testing::Values(
StartupVisibilityTestParams{
.startup_visibility = StartupVisibility::kUnknown,
.expected_beacon_value = true},
StartupVisibilityTestParams{
.startup_visibility = StartupVisibility::kBackground,
.expected_beacon_value = true},
StartupVisibilityTestParams{
.startup_visibility = StartupVisibility::kForeground,
.expected_beacon_value = false}),
::testing::Bool()));
TEST_P(MetricsServiceTestWithStartupVisibility, InitialStabilityLogAfterCrash) {
base::HistogramTester histogram_tester;
PrefService* local_state = GetLocalState();
EnableMetricsReporting();
// Write a beacon file indicating that Chrome exited uncleanly. Note that the
// crash streak value is arbitrary.
const base::FilePath beacon_file_path =
user_data_dir_path().Append(kCleanExitBeaconFilename);
ASSERT_TRUE(base::WriteFile(
beacon_file_path, CleanExitBeacon::CreateBeaconFileContentsForTesting(
/*exited_cleanly=*/false, /*crash_streak=*/1)));
// Set up prefs to simulate restarting after a crash.
// Save an existing system profile to prefs, to correspond to what would be
// saved from a previous session.
TestMetricsServiceClient client;
const std::string kCrashedVersion = "4.0.321.0-64-devel";
client.set_version_string(kCrashedVersion);
TestMetricsLog log("0a94430b-18e5-43c8-a657-580f7e855ce1", 1, &client);
DelegatingProvider delegating_provider;
TestMetricsService::RecordCurrentEnvironmentHelper(&log, local_state,
&delegating_provider);
// Record stability build time and version from previous session, so that
// stability metrics (including exited cleanly flag) won't be cleared.
EnvironmentRecorder(local_state)
.SetBuildtimeAndVersion(MetricsLog::GetBuildTime(),
client.GetVersionString());
const std::string kCurrentVersion = "5.0.322.0-64-devel";
client.set_version_string(kCurrentVersion);
StartupVisibilityTestParams params = std::get<0>(GetParam());
TestMetricsService service(
GetMetricsStateManager(user_data_dir_path(), params.startup_visibility),
&client, local_state);
// Add a provider.
TestMetricsProvider* test_provider = new TestMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Verify that Chrome is (or is not) watching for crashes by checking the
// beacon value.
std::string beacon_file_contents;
ASSERT_TRUE(base::ReadFileToString(beacon_file_path, &beacon_file_contents));
std::string partial_expected_contents;
#if BUILDFLAG(IS_ANDROID)
// Whether Chrome is watching for crashes after
// InitializeMetricsRecordingState() depends on the type of Android Chrome
// session. See the comments in MetricsService::InitializeMetricsState() for
// more details.
const std::string beacon_value =
params.expected_beacon_value ? "true" : "false";
partial_expected_contents = "exited_cleanly\":" + beacon_value;
#else
partial_expected_contents = "exited_cleanly\":false";
#endif // BUILDFLAG(IS_ANDROID)
EXPECT_TRUE(base::Contains(beacon_file_contents, partial_expected_contents));
// The initial stability log should be generated and persisted in unsent logs.
MetricsLogStore* test_log_store = service.LogStoreForTest();
EXPECT_TRUE(test_log_store->has_unsent_logs());
EXPECT_FALSE(test_log_store->has_staged_log());
// Ensure that HasPreviousSessionData() is always called on providers,
// for consistency, even if other conditions already indicate their presence.
EXPECT_TRUE(test_provider->has_initial_stability_metrics_called());
// The test provider should have been called upon to provide initial
// stability and regular stability metrics.
EXPECT_TRUE(test_provider->provide_initial_stability_metrics_called());
EXPECT_TRUE(test_provider->provide_stability_metrics_called());
// The test provider should have been called when the initial stability log
// was closed.
EXPECT_TRUE(test_provider->record_initial_histogram_snapshots_called());
// Stage the log and retrieve it.
test_log_store->StageNextLog();
EXPECT_TRUE(test_log_store->has_staged_log());
ChromeUserMetricsExtension uma_log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &uma_log));
EXPECT_TRUE(uma_log.has_client_id());
EXPECT_TRUE(uma_log.has_session_id());
EXPECT_TRUE(uma_log.has_system_profile());
EXPECT_EQ(0, uma_log.user_action_event_size());
EXPECT_EQ(0, uma_log.omnibox_event_size());
CheckForNonStabilityHistograms(uma_log);
EXPECT_EQ(
1, GetHistogramSampleCount(uma_log, "UMA.InitialStabilityRecordBeacon"));
// Verify that the histograms emitted by the test provider made it into the
// log.
EXPECT_EQ(GetHistogramSampleCount(uma_log, "TestMetricsProvider.Initial"), 1);
EXPECT_EQ(GetHistogramSampleCount(uma_log, "TestMetricsProvider.Regular"), 1);
EXPECT_EQ(kCrashedVersion, uma_log.system_profile().app_version());
EXPECT_EQ(kCurrentVersion,
uma_log.system_profile().log_written_by_app_version());
histogram_tester.ExpectBucketCount("Stability.Counts2",
StabilityEventType::kBrowserCrash, 1);
}
TEST_P(MetricsServiceTestWithFeatures,
InitialLogsHaveOnDidCreateMetricsLogHistograms) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Create a provider that will log to |kOnDidCreateMetricsLogHistogramName|
// in OnDidCreateMetricsLog()
auto* test_provider = new TestMetricsProviderForOnDidCreateMetricsLog();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log. Also verify that the test provider
// was called when closing the log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
EXPECT_TRUE(test_provider->record_histogram_snapshots_called());
MetricsLogStore* test_log_store = service.LogStoreForTest();
// Stage the next log, which should be the first ongoing log.
// Check that it has one sample in |kOnDidCreateMetricsLogHistogramName|.
test_log_store->StageNextLog();
EXPECT_EQ(1, GetSampleCountOfOnDidCreateLogHistogram(test_log_store));
// Discard the staged log and close and stage the next log, which is the
// second "ongoing log".
// Check that it has one sample in |kOnDidCreateMetricsLogHistogramName|.
// Also verify that the test provider was called when closing the new log.
test_provider->set_record_histogram_snapshots_called(false);
test_log_store->DiscardStagedLog();
service.StageCurrentLogForTest();
EXPECT_EQ(1, GetSampleCountOfOnDidCreateLogHistogram(test_log_store));
EXPECT_TRUE(test_provider->record_histogram_snapshots_called());
// Check one more log for good measure.
test_provider->set_record_histogram_snapshots_called(false);
test_log_store->DiscardStagedLog();
service.StageCurrentLogForTest();
EXPECT_EQ(1, GetSampleCountOfOnDidCreateLogHistogram(test_log_store));
EXPECT_TRUE(test_provider->record_histogram_snapshots_called());
service.Stop();
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting(
kOnDidCreateMetricsLogHistogramName);
}
TEST_P(MetricsServiceTestWithFeatures, MarkCurrentHistogramsAsReported) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Emit to histogram |Test.Before.Histogram|.
ASSERT_FALSE(HistogramExists("Test.Before.Histogram"));
base::UmaHistogramBoolean("Test.Before.Histogram", true);
ASSERT_TRUE(HistogramExists("Test.Before.Histogram"));
// Mark histogram data that has been collected until now (in particular, the
// |Test.Before.Histogram| sample) as reported.
service.MarkCurrentHistogramsAsReported();
// Emit to histogram |Test.After.Histogram|.
ASSERT_FALSE(HistogramExists("Test.After.Histogram"));
base::UmaHistogramBoolean("Test.After.Histogram", true);
ASSERT_TRUE(HistogramExists("Test.After.Histogram"));
// Verify that the |Test.Before.Histogram| sample was marked as reported, and
// is not included in the next snapshot.
EXPECT_EQ(0, GetHistogramDeltaTotalCount("Test.Before.Histogram"));
// Verify that the |Test.After.Histogram| sample was not marked as reported,
// and is included in the next snapshot.
EXPECT_EQ(1, GetHistogramDeltaTotalCount("Test.After.Histogram"));
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting("Test.Before.Histogram");
base::StatisticsRecorder::ForgetHistogramForTesting("Test.After.Histogram");
}
TEST_P(MetricsServiceTestWithFeatures, LogHasUserActions) {
// This test verifies that user actions are properly captured in UMA logs.
// In particular, it checks that the first log has actions, a behavior that
// was buggy in the past, plus additional checks for subsequent logs with
// different numbers of actions.
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Start() will create an initial log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
base::RecordAction(base::UserMetricsAction("TestAction"));
base::RecordAction(base::UserMetricsAction("TestAction"));
base::RecordAction(base::UserMetricsAction("DifferentAction"));
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
// Stage the next log, which should be the initial metrics log.
test_log_store->StageNextLog();
EXPECT_EQ(3, GetNumberOfUserActions(test_log_store));
// Log another action.
base::RecordAction(base::UserMetricsAction("TestAction"));
test_log_store->DiscardStagedLog();
service.StageCurrentLogForTest();
EXPECT_EQ(1, GetNumberOfUserActions(test_log_store));
// Check a log with no actions.
test_log_store->DiscardStagedLog();
service.StageCurrentLogForTest();
EXPECT_EQ(0, GetNumberOfUserActions(test_log_store));
// And another one with a couple.
base::RecordAction(base::UserMetricsAction("TestAction"));
base::RecordAction(base::UserMetricsAction("TestAction"));
test_log_store->DiscardStagedLog();
service.StageCurrentLogForTest();
EXPECT_EQ(2, GetNumberOfUserActions(test_log_store));
}
TEST_P(MetricsServiceTestWithFeatures, FirstLogCreatedBeforeUnsentLogsSent) {
// This test checks that we will create and serialize the first ongoing log
// before starting to send unsent logs from the past session. The latter is
// simulated by injecting some fake ongoing logs into the MetricsLogStore.
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
// Set up the log store with an existing fake log entry. The string content
// is never deserialized to proto, so we're just passing some dummy content.
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(0u, test_log_store->ongoing_log_count());
test_log_store->StoreLog("blah_blah", MetricsLog::ONGOING_LOG, LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
// Note: |initial_log_count()| refers to initial stability logs, so the above
// log is counted an ongoing log (per its type).
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(1u, test_log_store->ongoing_log_count());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
// When the init task is complete, the first ongoing log should be created
// and added to the ongoing logs.
EXPECT_EQ(0u, test_log_store->initial_log_count());
EXPECT_EQ(2u, test_log_store->ongoing_log_count());
}
TEST_P(MetricsServiceTestWithFeatures,
MetricsProviderOnRecordingDisabledCalledOnInitialStop) {
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
TestMetricsProvider* test_provider = new TestMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
service.Stop();
EXPECT_TRUE(test_provider->on_recording_disabled_called());
}
TEST_P(MetricsServiceTestWithFeatures, MetricsProvidersInitialized) {
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
TestMetricsProvider* test_provider = new TestMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
EXPECT_TRUE(test_provider->init_called());
}
// Verify that FieldTrials activated by a MetricsProvider are reported by the
// FieldTrialsProvider.
TEST_P(MetricsServiceTestWithFeatures, ActiveFieldTrialsReported) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
// Set up FieldTrials.
const std::string trial_name1 = "CoffeeExperiment";
const std::string group_name1 = "Free";
base::FieldTrial* trial1 =
base::FieldTrialList::CreateFieldTrial(trial_name1, group_name1);
const std::string trial_name2 = "DonutExperiment";
const std::string group_name2 = "MapleBacon";
base::FieldTrial* trial2 =
base::FieldTrialList::CreateFieldTrial(trial_name2, group_name2);
service.RegisterMetricsProvider(
std::make_unique<ExperimentTestMetricsProvider>(trial1, trial2));
service.InitializeMetricsRecordingState();
service.Start();
service.StageCurrentLogForTest();
MetricsLogStore* test_log_store = service.LogStoreForTest();
ChromeUserMetricsExtension uma_log;
EXPECT_TRUE(DecodeLogDataToProto(test_log_store->staged_log(), &uma_log));
// Verify that the reported FieldTrial IDs are for the trial set up by this
// test.
EXPECT_TRUE(
IsFieldTrialPresent(uma_log.system_profile(), trial_name1, group_name1));
EXPECT_TRUE(
IsFieldTrialPresent(uma_log.system_profile(), trial_name2, group_name2));
}
TEST_P(MetricsServiceTestWithFeatures,
SystemProfileDataProvidedOnEnableRecording) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
TestMetricsProvider* test_provider = new TestMetricsProvider();
service.RegisterMetricsProvider(
std::unique_ptr<MetricsProvider>(test_provider));
service.InitializeMetricsRecordingState();
// ProvideSystemProfileMetrics() shouldn't be called initially.
EXPECT_FALSE(test_provider->provide_system_profile_metrics_called());
EXPECT_FALSE(service.persistent_system_profile_provided());
service.Start();
// Start should call ProvideSystemProfileMetrics().
EXPECT_TRUE(test_provider->provide_system_profile_metrics_called());
EXPECT_TRUE(service.persistent_system_profile_provided());
EXPECT_FALSE(service.persistent_system_profile_complete());
}
// Verify that the two separate MetricsSchedulers (MetricsRotationScheduler and
// MetricsUploadScheduler) function together properly.
TEST_P(MetricsServiceTestWithFeatures, SplitRotation) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log. The independent-metrics upload job
// will be started and always be a task. This should also mark the rotation
// scheduler as idle, so that the next time we attempt to create a log, we
// return early (and don't create a log).
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
MetricsLogStore* log_store = service.LogStoreForTest();
EXPECT_FALSE(log_store->has_unsent_logs());
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
EXPECT_TRUE(log_store->has_unsent_logs());
EXPECT_EQ(1U, log_store->ongoing_log_count());
// There should be three (delayed) tasks: one for querying independent logs
// from metrics providers, one for uploading the unsent log, and one for
// creating the next log.
EXPECT_EQ(3U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the upload loop starts uploading logs.
base::TimeDelta unsent_log_interval =
MetricsUploadScheduler::GetUnsentLogsInterval();
task_environment_.FastForwardBy(unsent_log_interval);
EXPECT_TRUE(client.uploader()->is_uploading());
// There should be two (delayed) tasks: one for querying independent logs from
// metrics providers, and one for creating the next log. I.e., the task to
// upload a log should be running, and should not be in the task queue
// anymore. The uploading of this log will only be completed later on in order
// to simulate an edge case here.
EXPECT_EQ(2U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the task to create another log is run. This
// time, however, it should return early due to being idle (i.e., not create a
// log), and it should not post another task to create another log. I.e.,
// there should only be one (delayed) task: one for querying independent logs
// from metrics providers.
// Note: The log is only created after |rotation_scheduler_interval| seconds,
// and since we already fast forwarded by |unsent_log_interval| once, we only
// need to fast forward by
// |rotation_scheduler_interval| - |unsent_log_interval|.
base::TimeDelta rotation_scheduler_interval = client.GetUploadInterval();
task_environment_.FastForwardBy(rotation_scheduler_interval -
unsent_log_interval);
EXPECT_EQ(1U, log_store->ongoing_log_count());
EXPECT_EQ(1U, task_environment_.GetPendingMainThreadTaskCount());
// Simulate completing the upload. Since there is no other log to be uploaded,
// no task should be re-posted. I.e., there should only be one (delayed)
// task: one for querying independent logs from metrics providers.
client.uploader()->CompleteUpload(200);
EXPECT_FALSE(client.uploader()->is_uploading());
EXPECT_FALSE(log_store->has_unsent_logs());
EXPECT_EQ(1U, task_environment_.GetPendingMainThreadTaskCount());
// Simulate interacting with the browser, which should 1) set the rotation
// scheduler to not idle, 2) queue a task to upload the next log (if there is
// one), and 3) queue a task to create the next log. I.e., there should be
// three (delayed) tasks: one for querying independent logs from metrics
// providers, one for uploading an unsent log, and one for creating the next
// log.
service.OnApplicationNotIdle();
EXPECT_EQ(3U, task_environment_.GetPendingMainThreadTaskCount());
// We now simulate a more common scenario.
// Fast forward the time so that the task to upload a log runs. Since there
// should be no logs, it should return early, and not re-post a task. I.e.,
// there should be two tasks: one for querying independent logs from metrics
// providers, and one for creating the next log.
task_environment_.FastForwardBy(unsent_log_interval);
EXPECT_FALSE(client.uploader()->is_uploading());
EXPECT_FALSE(log_store->has_unsent_logs());
EXPECT_EQ(2U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the next log is created. It should re-post
// a task to create a new log, and should also re-start the upload scheduler.
// I.e., there should be three (delayed) tasks: one for querying independent
// logs from metrics providers, one for uploading an unsent log, and one for
// creating the next log.
// Note: The log is only created after |rotation_scheduler_interval| seconds,
// and since we already fast forwarded by |unsent_log_interval| once, we only
// need to fast forward by
// |rotation_scheduler_interval| - |unsent_log_interval|.
task_environment_.FastForwardBy(rotation_scheduler_interval -
unsent_log_interval);
EXPECT_TRUE(log_store->has_unsent_logs());
EXPECT_EQ(3U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the task to upload a log runs.
task_environment_.FastForwardBy(unsent_log_interval);
EXPECT_TRUE(client.uploader()->is_uploading());
// There should be two (delayed) tasks: one for querying independent logs from
// metrics providers, and one for creating the next log. I.e., the task to
// upload a log should be running, and should not be in the task queue
// anymore.
EXPECT_EQ(2U, task_environment_.GetPendingMainThreadTaskCount());
// Simulate completing the upload. However, before doing so, add a dummy log
// in order to test that when the upload task completes, if it detects another
// log, it will re-post a task to upload the next log. I.e., after uploading
// the log, there should be three (delayed) tasks: one for querying
// independent logs from metrics providers, one for uploading an unsent log,
// and one for creating the next log.
log_store->StoreLog("dummy log", MetricsLog::LogType::ONGOING_LOG,
LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
EXPECT_EQ(2U, log_store->ongoing_log_count());
client.uploader()->CompleteUpload(200);
EXPECT_FALSE(client.uploader()->is_uploading());
EXPECT_EQ(1U, log_store->ongoing_log_count());
EXPECT_EQ(3U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the task to upload a log runs.
task_environment_.FastForwardBy(unsent_log_interval);
EXPECT_TRUE(client.uploader()->is_uploading());
// There should be two (delayed) tasks: one for querying independent logs from
// metrics providers, and one for creating the next log. I.e., the task to
// upload a log should be running, and should not be in the task queue
// anymore.
EXPECT_EQ(2U, task_environment_.GetPendingMainThreadTaskCount());
// Simulate completing the upload. Since there is no other log to be uploaded,
// no task should be posted. I.e., there should only be two (delayed) tasks:
// one for querying independent logs from metrics providers, and one.
client.uploader()->CompleteUpload(200);
EXPECT_FALSE(client.uploader()->is_uploading());
EXPECT_FALSE(log_store->has_unsent_logs());
EXPECT_EQ(2U, task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the task to create another log is run. It
// should return early due to being idle (i.e., not create a log), and it
// should not post another task to create another log. I.e., there should only
// be one (delayed) task: one for querying independent logs from metrics
// providers.
// Note: The log is only created after |rotation_scheduler_interval| seconds,
// and since we already fast forwarded by |unsent_log_interval| twice, we only
// need to fast forward by
// |rotation_scheduler_interval| - 2 * |unsent_log_interval|.
task_environment_.FastForwardBy(rotation_scheduler_interval -
2 * unsent_log_interval);
EXPECT_FALSE(log_store->has_unsent_logs());
EXPECT_EQ(1U, task_environment_.GetPendingMainThreadTaskCount());
}
TEST_P(MetricsServiceTestWithFeatures, LastLiveTimestamp) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
base::Time initial_last_live_time =
GetLocalState()->GetTime(prefs::kStabilityBrowserLastLiveTimeStamp);
service.InitializeMetricsRecordingState();
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log. Also verify that the test provider
// was called when closing the log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
size_t num_pending_tasks = task_environment_.GetPendingMainThreadTaskCount();
service.StartUpdatingLastLiveTimestamp();
// Starting the update sequence should not write anything, but should
// set up for a later write.
EXPECT_EQ(
initial_last_live_time,
GetLocalState()->GetTime(prefs::kStabilityBrowserLastLiveTimeStamp));
EXPECT_EQ(num_pending_tasks + 1,
task_environment_.GetPendingMainThreadTaskCount());
// Fast forward the time so that the task to update the "last alive timestamp"
// runs.
task_environment_.FastForwardBy(service.GetUpdateLastAliveTimestampDelay());
// Verify that the time has updated in local state.
base::Time updated_last_live_time =
GetLocalState()->GetTime(prefs::kStabilityBrowserLastLiveTimeStamp);
EXPECT_LT(initial_last_live_time, updated_last_live_time);
// Double check that an update was scheduled again.
task_environment_.FastForwardBy(service.GetUpdateLastAliveTimestampDelay());
EXPECT_LT(
updated_last_live_time,
GetLocalState()->GetTime(prefs::kStabilityBrowserLastLiveTimeStamp));
}
TEST_P(MetricsServiceTestWithFeatures, EnablementObserverNotification) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
absl::optional<bool> enabled;
auto observer = [&enabled](bool notification) { enabled = notification; };
auto subscription =
service.AddEnablementObserver(base::BindLambdaForTesting(observer));
service.Start();
ASSERT_TRUE(enabled.has_value());
EXPECT_TRUE(enabled.value());
enabled.reset();
service.Stop();
ASSERT_TRUE(enabled.has_value());
EXPECT_FALSE(enabled.value());
}
// Verifies that when a cloned install is detected, logs are purged.
TEST_P(MetricsServiceTestWithFeatures, PurgeLogsOnClonedInstallDetected) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Store various logs.
MetricsLogStore* test_log_store = service.LogStoreForTest();
test_log_store->StoreLog("dummy log data", MetricsLog::ONGOING_LOG,
LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
test_log_store->StageNextLog();
test_log_store->StoreLog("more dummy log data", MetricsLog::ONGOING_LOG,
LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
test_log_store->StoreLog("dummy stability log",
MetricsLog::INITIAL_STABILITY_LOG, LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
test_log_store->SetAlternateOngoingLogStore(InitializeTestLogStoreAndGet());
test_log_store->StoreLog("dummy log for alternate ongoing log store",
MetricsLog::ONGOING_LOG, LogMetadata(),
MetricsLogsEventManager::CreateReason::kUnknown);
EXPECT_TRUE(test_log_store->has_staged_log());
EXPECT_TRUE(test_log_store->has_unsent_logs());
ClonedInstallDetector* cloned_install_detector =
GetMetricsStateManager()->cloned_install_detector_for_testing();
static constexpr char kTestRawId[] = "test";
// Hashed machine id for |kTestRawId|.
static constexpr int kTestHashedId = 2216819;
// Save a machine id that will not cause a clone to be detected.
GetLocalState()->SetInteger(prefs::kMetricsMachineId, kTestHashedId);
cloned_install_detector->SaveMachineId(GetLocalState(), kTestRawId);
// Verify that the logs are still present.
EXPECT_TRUE(test_log_store->has_staged_log());
EXPECT_TRUE(test_log_store->has_unsent_logs());
// Save a machine id that will cause a clone to be detected.
GetLocalState()->SetInteger(prefs::kMetricsMachineId, kTestHashedId + 1);
cloned_install_detector->SaveMachineId(GetLocalState(), kTestRawId);
// Verify that the logs were purged.
EXPECT_FALSE(test_log_store->has_staged_log());
EXPECT_FALSE(test_log_store->has_unsent_logs());
}
#if BUILDFLAG(IS_CHROMEOS_LACROS)
// ResetClientId is only enabled on certain targets.
TEST_P(MetricsServiceTestWithFeatures, SetClientIdToExternalId) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
const std::string client_id = "d92ad666-a420-4c73-8718-94311ae2ff5f";
EXPECT_NE(service.GetClientId(), client_id);
service.SetExternalClientId(client_id);
// Reset will cause the client id to be regenerated. If an external client id
// is provided, it should defer to using that id instead of creating its own.
service.ResetClientId();
EXPECT_EQ(service.GetClientId(), client_id);
}
#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
#if BUILDFLAG(IS_CHROMEOS_ASH)
TEST_P(MetricsServiceTestWithFeatures,
OngoingLogNotFlushedBeforeInitialLogWhenUserLogStoreSet) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
std::unique_ptr<TestUnsentLogStore> alternate_ongoing_log_store =
InitializeTestLogStoreAndGet();
TestUnsentLogStore* alternate_ongoing_log_store_ptr =
alternate_ongoing_log_store.get();
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(0u, test_log_store->ongoing_log_count());
service.SetUserLogStore(std::move(alternate_ongoing_log_store));
// Initial logs should not have been collected so the ongoing log being
// recorded should not be flushed when a user log store is mounted.
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(0u, test_log_store->ongoing_log_count());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
// When the init task is complete, the first ongoing log should be created
// in the alternate ongoing log store.
EXPECT_EQ(0u, test_log_store->initial_log_count());
EXPECT_EQ(0u, test_log_store->ongoing_log_count());
EXPECT_EQ(1u, alternate_ongoing_log_store_ptr->size());
}
TEST_P(MetricsServiceTestWithFeatures,
OngoingLogFlushedAfterInitialLogWhenUserLogStoreSet) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
std::unique_ptr<TestUnsentLogStore> alternate_ongoing_log_store =
InitializeTestLogStoreAndGet();
// Init state.
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(0u, test_log_store->ongoing_log_count());
// Fast forward the time by |initialization_delay|, which is when the pending
// init tasks will run.
base::TimeDelta initialization_delay = service.GetInitializationDelay();
task_environment_.FastForwardBy(initialization_delay);
EXPECT_EQ(TestMetricsService::INIT_TASK_DONE, service.state());
// Fast forward the time until the MetricsRotationScheduler first runs, which
// should complete the first ongoing log.
// Note: The first log is only created after N = GetInitialIntervalSeconds()
// seconds since the start, and since we already fast forwarded by
// |initialization_delay| once, we only need to fast forward by
// N - |initialization_delay|.
task_environment_.FastForwardBy(
base::Seconds(MetricsScheduler::GetInitialIntervalSeconds()) -
initialization_delay);
ASSERT_EQ(TestMetricsService::SENDING_LOGS, service.state());
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(1u, test_log_store->ongoing_log_count());
// User log store set post-init.
service.SetUserLogStore(std::move(alternate_ongoing_log_store));
// Another log should have been flushed from setting the user log store.
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(2u, test_log_store->ongoing_log_count());
}
TEST_P(MetricsServiceTestWithFeatures,
OngoingLogDiscardedAfterEarlyUnsetUserLogStore) {
EnableMetricsReporting();
TestMetricsServiceClient client;
TestMetricsService service(GetMetricsStateManager(), &client,
GetLocalState());
service.InitializeMetricsRecordingState();
// Start() will create the first ongoing log.
service.Start();
ASSERT_EQ(TestMetricsService::INIT_TASK_SCHEDULED, service.state());
MetricsLogStore* test_log_store = service.LogStoreForTest();
std::unique_ptr<TestUnsentLogStore> alternate_ongoing_log_store =
InitializeTestLogStoreAndGet();
ASSERT_EQ(0u, test_log_store->initial_log_count());
ASSERT_EQ(0u, test_log_store->ongoing_log_count());
service.SetUserLogStore(std::move(alternate_ongoing_log_store));
// Unset the user log store before we started sending logs.
base::UmaHistogramBoolean("Test.Before.Histogram", true);
service.UnsetUserLogStore();
base::UmaHistogramBoolean("Test.After.Histogram", true);
// Verify that the current log was discarded.
EXPECT_FALSE(service.GetCurrentLogForTest());
// Verify that histograms from before unsetting the user log store were
// flushed.
EXPECT_EQ(0, GetHistogramDeltaTotalCount("Test.Before.Histogram"));
EXPECT_EQ(1, GetHistogramDeltaTotalCount("Test.After.Histogram"));
// Clean up histograms.
base::StatisticsRecorder::ForgetHistogramForTesting("Test.Before.Histogram");
base::StatisticsRecorder::ForgetHistogramForTesting("Test.After.Histogram");
}
#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
} // namespace metrics
|