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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
// Copyright (c) 2011 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_function_test_utils.h"
#include <string>
#include "base/file_path.h"
#include "base/json/json_reader.h"
#include "base/values.h"
#include "chrome/browser/extensions/extension_function.h"
#include "chrome/browser/extensions/extension_function_dispatcher.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/common/extensions/extension.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class TestFunctionDispatcherDelegate
: public ExtensionFunctionDispatcher::Delegate {
public:
explicit TestFunctionDispatcherDelegate(Browser* browser) :
browser_(browser) {}
virtual ~TestFunctionDispatcherDelegate() {}
private:
virtual Browser* GetBrowser() OVERRIDE {
return browser_;
}
virtual gfx::NativeView GetNativeViewOfHost() OVERRIDE {
return NULL;
}
virtual TabContents* GetAssociatedTabContents() const OVERRIDE {
return NULL;
}
Browser* browser_;
};
} // namespace
namespace extension_function_test_utils {
base::Value* ParseJSON(const std::string& data) {
const bool kAllowTrailingComma = false;
return base::JSONReader::Read(data, kAllowTrailingComma);
}
base::ListValue* ParseList(const std::string& data) {
scoped_ptr<base::Value> result(ParseJSON(data));
if (result.get() && result->IsType(base::Value::TYPE_LIST))
return static_cast<base::ListValue*>(result.release());
else
return NULL;
}
base::DictionaryValue* ParseDictionary(
const std::string& data) {
scoped_ptr<base::Value> result(ParseJSON(data));
if (result.get() && result->IsType(base::Value::TYPE_DICTIONARY))
return static_cast<base::DictionaryValue*>(result.release());
else
return NULL;
}
bool GetBoolean(base::DictionaryValue* val, const std::string& key) {
bool result = false;
if (!val->GetBoolean(key, &result))
ADD_FAILURE() << key << " does not exist or is not a boolean.";
return result;
}
int GetInteger(base::DictionaryValue* val, const std::string& key) {
int result = 0;
if (!val->GetInteger(key, &result))
ADD_FAILURE() << key << " does not exist or is not an integer.";
return result;
}
std::string GetString(base::DictionaryValue* val, const std::string& key) {
std::string result;
if (!val->GetString(key, &result))
ADD_FAILURE() << key << " does not exist or is not a string.";
return result;
}
base::DictionaryValue* ToDictionary(base::Value* val) {
EXPECT_TRUE(val);
EXPECT_EQ(base::Value::TYPE_DICTIONARY, val->GetType());
return static_cast<base::DictionaryValue*>(val);
}
scoped_refptr<Extension> CreateEmptyExtension() {
std::string error;
const FilePath test_extension_path;
scoped_ptr<base::DictionaryValue> test_extension_value(
ParseDictionary("{\"name\": \"Test\", \"version\": \"1.0\"}"));
scoped_refptr<Extension> extension(Extension::Create(
test_extension_path,
Extension::INTERNAL,
*test_extension_value.get(),
Extension::NO_FLAGS,
&error));
EXPECT_TRUE(error.empty()) << "Could not parse test extension " << error;
return extension;
}
std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function,
const std::string& args,
Browser* browser) {
return RunFunctionAndReturnError(function, args, browser, NONE);
}
std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function,
const std::string& args,
Browser* browser,
RunFunctionFlags flags) {
scoped_refptr<ExtensionFunction> function_owner(function);
RunFunction(function, args, browser, flags);
EXPECT_FALSE(function->GetResultValue()) << "Unexpected function result " <<
function->GetResult();
return function->GetError();
}
base::Value* RunFunctionAndReturnResult(UIThreadExtensionFunction* function,
const std::string& args,
Browser* browser) {
return RunFunctionAndReturnResult(function, args, browser, NONE);
}
base::Value* RunFunctionAndReturnResult(UIThreadExtensionFunction* function,
const std::string& args,
Browser* browser,
RunFunctionFlags flags) {
scoped_refptr<ExtensionFunction> function_owner(function);
RunFunction(function, args, browser, flags);
EXPECT_TRUE(function->GetError().empty()) << "Unexpected error: "
<< function->GetError();
EXPECT_TRUE(function->GetResultValue()) << "No result value found";
return function->GetResultValue()->DeepCopy();
}
void RunFunction(UIThreadExtensionFunction* function,
const std::string& args,
Browser* browser,
RunFunctionFlags flags) {
scoped_ptr<base::ListValue> parsed_args(ParseList(args));
ASSERT_TRUE(parsed_args.get()) <<
"Could not parse extension function arguments: " << args;
function->SetArgs(parsed_args.get());
TestFunctionDispatcherDelegate dispatcher_delegate(browser);
ExtensionFunctionDispatcher dispatcher(
browser->profile(), &dispatcher_delegate);
function->set_dispatcher(dispatcher.AsWeakPtr());
function->set_profile(browser->profile());
function->set_include_incognito(flags & INCLUDE_INCOGNITO);
function->Run();
}
} // namespace extension_function_test_utils
|