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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/profiles/guest_profile_creation_logger.h"
#include "base/test/metrics/histogram_tester.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class GuestProfileCreationLoggerTest : public ::testing::Test {
public:
void SetUp() override { ASSERT_TRUE(profile_manager_.SetUp()); }
TestingProfileManager& profile_manager() { return profile_manager_; }
private:
content::BrowserTaskEnvironment task_environment_;
TestingProfileManager profile_manager_{TestingBrowserProcess::GetGlobal()};
};
TEST_F(GuestProfileCreationLoggerTest, SingleParentGuestCreation) {
TestingProfile* guest_parent = profile_manager().CreateGuestProfile();
base::HistogramTester histograms;
// Recording the parent creation. It should be reported on the histogram.
profile::RecordGuestParentCreation(guest_parent);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 1)));
// Recording the first child creation. It should be reported on the histogram.
Profile* guest_child =
guest_parent->GetPrimaryOTRProfile(/*create_if_needed=*/true);
profile::MaybeRecordGuestChildCreation(guest_child);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 1), base::Bucket(1, 1)));
guest_parent->DestroyOffTheRecordProfile(guest_child);
ASSERT_FALSE(guest_parent->HasAnyOffTheRecordProfile());
TestingProfile::Builder off_the_record_builder;
off_the_record_builder.SetGuestSession();
Profile* guest_child_2 = off_the_record_builder.BuildIncognito(guest_parent);
// Recording the second child creation. It should NOT be reported.
profile::MaybeRecordGuestChildCreation(guest_child_2);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 1), base::Bucket(1, 1)));
}
TEST_F(GuestProfileCreationLoggerTest, DualParentGuestCreation) {
Profile* guest_parent = profile_manager().CreateGuestProfile();
base::HistogramTester histograms;
// Recording the parent creation. It should be reported on the histogram.
profile::RecordGuestParentCreation(guest_parent);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 1)));
// Recording the first child creation. It should be reported on the histogram.
Profile* guest_child =
guest_parent->GetPrimaryOTRProfile(/*create_if_needed=*/true);
profile::MaybeRecordGuestChildCreation(guest_child);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 1), base::Bucket(1, 1)));
profile_manager().DeleteGuestProfile();
Profile* guest_parent_2 = profile_manager().CreateGuestProfile();
// Recording the second parent creation. It should be reported.
profile::RecordGuestParentCreation(guest_parent_2);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 2), base::Bucket(1, 1)));
// Recording the second child creation. It should be reported.
Profile* guest_child_2 =
guest_parent_2->GetPrimaryOTRProfile(/*create_if_needed=*/true);
profile::MaybeRecordGuestChildCreation(guest_child_2);
EXPECT_THAT(histograms.GetAllSamples("Profile.Guest.TypeCreated"),
::testing::ElementsAre(base::Bucket(0, 2), base::Bucket(1, 2)));
}
} // namespace
|