Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / alert_apitest.cc
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/strings/utf_string_conversions.h"
6 #include "chrome/browser/extensions/extension_apitest.h"
7 #include "chrome/browser/extensions/extension_host.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h"
10 #include "chrome/browser/ui/browser.h"
11 #include "chrome/test/base/ui_test_utils.h"
12 #include "content/public/browser/render_view_host.h"
13 #include "extensions/browser/extension_system.h"
14 #include "extensions/browser/process_manager.h"
15 #include "extensions/common/extension.h"
16
17 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, AlertBasic) {
18   ASSERT_TRUE(RunExtensionTest("alert")) << message_;
19
20   const extensions::Extension* extension = GetSingleLoadedExtension();
21   extensions::ExtensionHost* host =
22       extensions::ExtensionSystem::Get(browser()->profile())->
23           process_manager()->GetBackgroundHostForExtension(extension->id());
24   ASSERT_TRUE(host);
25   host->render_view_host()->ExecuteJavascriptInWebFrame(base::string16(),
26       base::ASCIIToUTF16("alert('This should not crash.');"));
27
28   AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog();
29   ASSERT_TRUE(alert);
30   alert->CloseModalDialog();
31 }