blob: 4faaa0335e8fbdaf6dd6b25b4d0dda72fe973c2d (
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
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
|
// Copyright 2014 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 "extensions/browser/api/test/test_api.h"
#include <string>
#include "base/command_line.h"
#include "base/memory/singleton.h"
#include "content/public/browser/notification_service.h"
#include "content/public/common/content_switches.h"
#include "extensions/browser/extension_function_dispatcher.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/notification_types.h"
#include "extensions/common/api/test.h"
namespace {
// If you see this error in your test, you need to set the config state
// to be returned by chrome.test.getConfig(). Do this by calling
// TestGetConfigFunction::set_test_config_state(Value* state)
// in test set up.
const char kNoTestConfigDataError[] = "Test configuration was not set.";
const char kNotTestProcessError[] =
"The chrome.test namespace is only available in tests.";
} // namespace
namespace extensions {
namespace Log = core_api::test::Log;
namespace NotifyFail = core_api::test::NotifyFail;
namespace PassMessage = core_api::test::PassMessage;
namespace WaitForRoundTrip = core_api::test::WaitForRoundTrip;
TestExtensionFunction::~TestExtensionFunction() {}
bool TestExtensionFunction::RunSync() {
if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kTestType)) {
error_ = kNotTestProcessError;
return false;
}
return RunSafe();
}
TestNotifyPassFunction::~TestNotifyPassFunction() {}
bool TestNotifyPassFunction::RunSafe() {
content::NotificationService::current()->Notify(
extensions::NOTIFICATION_EXTENSION_TEST_PASSED,
content::Source<content::BrowserContext>(dispatcher()->browser_context()),
content::NotificationService::NoDetails());
return true;
}
TestNotifyFailFunction::~TestNotifyFailFunction() {}
bool TestNotifyFailFunction::RunSafe() {
scoped_ptr<NotifyFail::Params> params(NotifyFail::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params.get());
content::NotificationService::current()->Notify(
extensions::NOTIFICATION_EXTENSION_TEST_FAILED,
content::Source<content::BrowserContext>(dispatcher()->browser_context()),
content::Details<std::string>(¶ms->message));
return true;
}
TestLogFunction::~TestLogFunction() {}
bool TestLogFunction::RunSafe() {
scoped_ptr<Log::Params> params(Log::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params.get());
VLOG(1) << params->message;
return true;
}
bool TestSendMessageFunction::RunAsync() {
scoped_ptr<PassMessage::Params> params(PassMessage::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params.get());
content::NotificationService::current()->Notify(
extensions::NOTIFICATION_EXTENSION_TEST_MESSAGE,
content::Source<TestSendMessageFunction>(this),
content::Details<std::string>(¶ms->message));
return true;
}
TestSendMessageFunction::~TestSendMessageFunction() {}
void TestSendMessageFunction::Reply(const std::string& message) {
SetResult(new base::StringValue(message));
SendResponse(true);
}
void TestSendMessageFunction::ReplyWithError(const std::string& error) {
error_ = error;
SendResponse(false);
}
// static
void TestGetConfigFunction::set_test_config_state(
base::DictionaryValue* value) {
TestConfigState* test_config_state = TestConfigState::GetInstance();
test_config_state->set_config_state(value);
}
TestGetConfigFunction::TestConfigState::TestConfigState()
: config_state_(NULL) {}
// static
TestGetConfigFunction::TestConfigState*
TestGetConfigFunction::TestConfigState::GetInstance() {
return Singleton<TestConfigState>::get();
}
TestGetConfigFunction::~TestGetConfigFunction() {}
bool TestGetConfigFunction::RunSafe() {
TestConfigState* test_config_state = TestConfigState::GetInstance();
if (!test_config_state->config_state()) {
error_ = kNoTestConfigDataError;
return false;
}
SetResult(test_config_state->config_state()->DeepCopy());
return true;
}
TestWaitForRoundTripFunction::~TestWaitForRoundTripFunction() {}
bool TestWaitForRoundTripFunction::RunSafe() {
scoped_ptr<WaitForRoundTrip::Params> params(
WaitForRoundTrip::Params::Create(*args_));
SetResult(new base::StringValue(params->message));
return true;
}
} // namespace extensions
|