blob: 6a4e56ffc0c05edcb53a067105e9cdeadaa9b6cc [file] [log] [blame]
// Copyright (c) 2012 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 "build/build_config.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "content/public/test/browser_test.h"
#include "extensions/test/result_catcher.h"
namespace extensions {
// Fails flakily on Mac. https://crbug.com/1216102
#if defined(OS_MAC)
#define MAYBE_WindowOpenFocus DISABLED_WindowOpenFocus
#else
#define MAYBE_WindowOpenFocus WindowOpenFocus
#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_WindowOpenFocus) {
ASSERT_TRUE(RunExtensionTest("window_open/focus")) << message_;
}
// The test uses the chrome.browserAction.openPopup API, which requires that the
// window can automatically be activated.
// Fails flakily on Linux. https://crbug.com/477691.
#if defined(OS_LINUX)
#define MAYBE_WindowOpen DISABLED_WindowOpen
#else
#define MAYBE_WindowOpen WindowOpen
#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_WindowOpen) {
extensions::ResultCatcher catcher;
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("spanning"),
{.allow_in_incognito = true}));
EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
}
} // namespace extensions