File: glic_net_log_browsertest.cc

package info (click to toggle)
chromium 140.0.7339.185-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,193,740 kB
  • sloc: cpp: 35,093,945; ansic: 7,161,670; javascript: 4,199,694; python: 1,441,797; asm: 949,904; xml: 747,515; pascal: 187,748; perl: 88,691; sh: 88,248; objc: 79,953; sql: 52,714; cs: 44,599; fortran: 24,137; makefile: 22,114; tcl: 15,277; php: 13,980; yacc: 9,000; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (126 lines) | stat: -rw-r--r-- 4,858 bytes parent folder | download | duplicates (6)
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
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <string>

#include "base/test/scoped_feature_list.h"
#include "chrome/browser/glic/glic_pref_names.h"
#include "chrome/browser/glic/public/glic_keyed_service.h"
#include "chrome/browser/glic/public/glic_keyed_service_factory.h"
#include "chrome/browser/glic/test_support/glic_test_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/test/browser_test.h"
#include "net/log/net_log_entry.h"
#include "net/log/net_log_event_type.h"
#include "net/log/test_net_log.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace glic {

namespace {

const char kTestGlicURL[] = "about:blank?main-page";
const char kTestGlicFreURL[] = "about:blank?fre-page";

}  // namespace

class GlicNetLogBrowserTest : public InProcessBrowserTest {
 public:
  GlicNetLogBrowserTest() {
    scoped_feature_list_.InitWithFeatures(
        /*enabled_features=*/{features::kGlic, features::kTabstripComboButton,
                              features::kGlicRollout},
        /*disabled_features=*/{});
  }

  void SetUpCommandLine(base::CommandLine* command_line) override {
    // Load blank page in glic guest view
    command_line->AppendSwitchASCII(::switches::kGlicGuestURL, kTestGlicURL);
    command_line->AppendSwitchASCII(::switches::kGlicFreURL, kTestGlicFreURL);
  }

  net::RecordingNetLogObserver& net_log_observer() { return net_log_observer_; }

 private:
  base::test::ScopedFeatureList scoped_feature_list_;
  net::RecordingNetLogObserver net_log_observer_;
};

// Tests that opening the UI logs a request to the Glic FRE.
IN_PROC_BROWSER_TEST_F(GlicNetLogBrowserTest, LogGlicFreRequestOnOpenUI) {
  Profile* profile = browser()->profile();

  SigninWithPrimaryAccount(profile);
  SetModelExecutionCapability(profile, true);
  ASSERT_TRUE(GlicEnabling::IsEnabledForProfile(profile));

  auto* glic_service =
      GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile());
  glic_service->OpenFreDialogInNewTab(
      browser(), mojom::InvocationSource::kTopChromeButton);

  std::vector<net::NetLogEntry> entries = net_log_observer().GetEntries();
  auto it = std::ranges::find_if(entries, [&](const auto& entry) {
    if (entry.source.type != net::NetLogSourceType::URL_REQUEST ||
        entry.type != net::NetLogEventType::REQUEST_ALIVE) {
      return false;
    }
    std::optional<int> traffic_annotation =
        entry.params.FindInt("traffic_annotation");
    return traffic_annotation.has_value() &&
           traffic_annotation.value() ==
               COMPUTE_NETWORK_TRAFFIC_ANNOTATION_ID_HASH("glic_fre_web_ui");
  });

  ASSERT_NE(it, entries.end())
      << "NetLog did not contain URL_REQUEST_START_JOB for Glic FRE WeUI";
  EXPECT_EQ(true, it->params.FindBool("dummy_request"));
  const std::string* url = it->params.FindString("url");
  ASSERT_TRUE(url);
  EXPECT_THAT(*url, testing::StartsWith(kTestGlicFreURL));
}

// Tests that opening the UI logs a request to the Glic main page.
IN_PROC_BROWSER_TEST_F(GlicNetLogBrowserTest, LogGlicRequestOnOpenUI) {
  Profile* profile = browser()->profile();

  SigninWithPrimaryAccount(profile);
  SetModelExecutionCapability(profile, true);
  ASSERT_TRUE(GlicEnabling::IsEnabledForProfile(profile));
  ASSERT_FALSE(GlicEnabling::IsReadyForProfile(profile));
  SetFRECompletion(profile, prefs::FreStatus::kCompleted);
  ASSERT_TRUE(GlicEnabling::IsReadyForProfile(profile));

  auto* glic_service =
      GlicKeyedServiceFactory::GetGlicKeyedService(browser()->profile());
  glic_service->ToggleUI(nullptr, false, mojom::InvocationSource::kOsHotkey);

  std::vector<net::NetLogEntry> entries = net_log_observer().GetEntries();
  auto it = std::ranges::find_if(entries, [&](const auto& entry) {
    if (entry.source.type != net::NetLogSourceType::URL_REQUEST ||
        entry.type != net::NetLogEventType::REQUEST_ALIVE) {
      return false;
    }
    std::optional<int> traffic_annotation =
        entry.params.FindInt("traffic_annotation");
    return traffic_annotation.has_value() &&
           traffic_annotation.value() ==
               COMPUTE_NETWORK_TRAFFIC_ANNOTATION_ID_HASH("glic_web_ui");
  });

  ASSERT_NE(it, entries.end())
      << "NetLog did not contain URL_REQUEST_START_JOB for Glic WebUI";
  EXPECT_EQ(true, it->params.FindBool("dummy_request"));
  const std::string* url = it->params.FindString("url");
  ASSERT_TRUE(url);
  EXPECT_THAT(*url, testing::StartsWith(kTestGlicURL));
}

}  // namespace glic