blob: a6cdb198242ac944a6bfa44a262e44a61ce1df62 (
plain)
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
|
// Copyright (c) 2010 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 <string>
#include "chrome/browser/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/extensions/extensions_service.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/notification_details.h"
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/common/notification_type.h"
#include "chrome/test/in_process_browser_test.h"
#include "chrome/test/ui_test_utils.h"
class ExtensionFromWebAppTest
: public InProcessBrowserTest, public NotificationObserver {
protected:
ExtensionFromWebAppTest() : installed_extension_(NULL) {
}
std::string expected_extension_id_;
const Extension* installed_extension_;
private:
// InProcessBrowserTest
virtual void SetUpCommandLine(CommandLine* command_line) {
command_line->AppendSwitch(switches::kEnableCrxlessWebApps);
}
// NotificationObserver
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
if (type == NotificationType::EXTENSION_INSTALLED) {
const Extension* extension = Details<const Extension>(details).ptr();
if (extension->id() == expected_extension_id_) {
installed_extension_ = extension;
MessageLoopForUI::current()->Quit();
}
}
}
};
IN_PROC_BROWSER_TEST_F(ExtensionFromWebAppTest, Basic) {
ASSERT_TRUE(test_server()->Start());
browser()->profile()->GetExtensionsService()->set_show_extensions_prompts(
false);
NotificationRegistrar registrar;
registrar.Add(this, NotificationType::EXTENSION_INSTALLED,
NotificationService::AllSources());
expected_extension_id_ = "fnpgoaochgbdfjndakichfafiocjjpmm";
ui_test_utils::NavigateToURL(
browser(),
test_server()->GetURL(
"files/extensions/convert_web_app/application.html"));
if (!installed_extension_)
ui_test_utils::RunMessageLoop();
EXPECT_TRUE(installed_extension_);
EXPECT_TRUE(installed_extension_->is_hosted_app());
}
|