| // Copyright 2020 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/extensions/extension_apitest.h" |
| #include "content/public/test/browser_test.h" |
| #include "extensions/browser/event_router.h" |
| #include "extensions/common/api/test.h" |
| #include "extensions/test/extension_test_message_listener.h" |
| #include "extensions/test/result_catcher.h" |
| #include "net/dns/mock_host_resolver.h" |
| #include "net/test/embedded_test_server/embedded_test_server.h" |
| |
| using extensions::ResultCatcher; |
| |
| namespace extensions { |
| |
| using ContextType = ExtensionApiTest::ContextType; |
| |
| class AlarmsApiTest : public ExtensionApiTest, |
| public testing::WithParamInterface<ContextType> { |
| public: |
| void SetUpOnMainThread() override { |
| ExtensionApiTest::SetUpOnMainThread(); |
| host_resolver()->AddRule("*", "127.0.0.1"); |
| ASSERT_TRUE(StartEmbeddedTestServer()); |
| } |
| |
| static std::unique_ptr<base::ListValue> BuildEventArguments( |
| const bool last_message) { |
| api::test::OnMessage::Info info; |
| info.data = ""; |
| info.last_message = last_message; |
| return api::test::OnMessage::Create(info); |
| } |
| |
| const Extension* LoadAlarmsExtensionIncognito(const char* path) { |
| return LoadExtension( |
| test_data_dir_.AppendASCII("alarms").AppendASCII(path), |
| {.allow_in_incognito = true, |
| .load_as_service_worker = GetParam() == ContextType::kServiceWorker}); |
| } |
| }; |
| |
| INSTANTIATE_TEST_SUITE_P(EventPage, |
| AlarmsApiTest, |
| ::testing::Values(ContextType::kEventPage)); |
| INSTANTIATE_TEST_SUITE_P(ServiceWorker, |
| AlarmsApiTest, |
| ::testing::Values(ContextType::kServiceWorker)); |
| |
| // Tests that an alarm created by an extension with incognito split mode is |
| // only triggered in the browser context it was created in. |
| IN_PROC_BROWSER_TEST_P(AlarmsApiTest, IncognitoSplit) { |
| // We need 2 ResultCatchers because we'll be running the same test in both |
| // regular and incognito mode. |
| Profile* incognito_profile = browser()->profile()->GetPrimaryOTRProfile(); |
| ResultCatcher catcher_incognito; |
| catcher_incognito.RestrictToBrowserContext(incognito_profile); |
| ResultCatcher catcher; |
| catcher.RestrictToBrowserContext(browser()->profile()); |
| EventRouter* event_router = EventRouter::Get(incognito_profile); |
| |
| ExtensionTestMessageListener listener("ready: false", false); |
| |
| ExtensionTestMessageListener listener_incognito("ready: true", false); |
| |
| ASSERT_TRUE(LoadAlarmsExtensionIncognito("split")); |
| |
| EXPECT_TRUE(listener.WaitUntilSatisfied()); |
| EXPECT_TRUE(listener_incognito.WaitUntilSatisfied()); |
| |
| // Open incognito window. |
| OpenURLOffTheRecord(browser()->profile(), GURL("about:blank")); |
| |
| event_router->BroadcastEvent(std::make_unique<Event>( |
| events::FOR_TEST, api::test::OnMessage::kEventName, |
| BuildEventArguments(true))); |
| |
| EXPECT_TRUE(catcher.GetNextResult()); |
| EXPECT_TRUE(catcher_incognito.GetNextResult()); |
| } |
| |
| // Tests that the behavior for an alarm created in incognito context should be |
| // the same if incognito is in spanning mode. |
| IN_PROC_BROWSER_TEST_P(AlarmsApiTest, IncognitoSpanning) { |
| ResultCatcher catcher; |
| catcher.RestrictToBrowserContext(browser()->profile()); |
| |
| ASSERT_TRUE(LoadAlarmsExtensionIncognito("spanning")); |
| |
| // Open incognito window. |
| OpenURLOffTheRecord(browser()->profile(), GURL("about:blank")); |
| |
| EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| } |
| |
| } // namespace extensions |