| // Copyright 2020 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "build/build_config.h" |
| #include "chrome/browser/extensions/extension_apitest.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/ui/browser.h" |
| #include "content/public/test/browser_test.h" |
| #include "extensions/test/result_catcher.h" |
| |
| namespace extensions { |
| |
| namespace { |
| |
| using SearchApiTest = ExtensionApiTest; |
| |
| // Test various scenarios, such as the use of input different parameters. |
| // Disabled due to flakes on Mac testers; see https://crbug.com/394345948. |
| #if BUILDFLAG(IS_MAC) |
| #define MAYBE_Normal DISABLED_Normal |
| #else |
| #define MAYBE_Normal Normal |
| #endif |
| IN_PROC_BROWSER_TEST_F(SearchApiTest, MAYBE_Normal) { |
| ASSERT_TRUE(RunExtensionTest("search/query/normal")) << message_; |
| } |
| |
| // Test incognito browser in extension default spanning mode. |
| // Disabled due to flakes on Ozone testers; see https://crbug.com/1188651. |
| #if BUILDFLAG(IS_OZONE) |
| #define MAYBE_Incognito DISABLED_Incognito |
| #else |
| #define MAYBE_Incognito Incognito |
| #endif |
| IN_PROC_BROWSER_TEST_F(SearchApiTest, MAYBE_Incognito) { |
| ResultCatcher catcher; |
| CreateIncognitoBrowser(browser()->profile()); |
| ASSERT_TRUE(RunExtensionTest("search/query/incognito", {}, |
| {.allow_in_incognito = true})) |
| << message_; |
| } |
| |
| // Test incognito browser in extension split mode. |
| IN_PROC_BROWSER_TEST_F(SearchApiTest, IncognitoSplit) { |
| ResultCatcher catcher; |
| catcher.RestrictToBrowserContext( |
| browser()->profile()->GetPrimaryOTRProfile(/*create_if_needed=*/true)); |
| CreateIncognitoBrowser(browser()->profile()); |
| ASSERT_TRUE(RunExtensionTest("search/query/incognito_split", {}, |
| {.allow_in_incognito = true})) |
| << message_; |
| } |
| |
| } // namespace |
| } // namespace extensions |