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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "base/strings/stringprintf.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "content/public/test/browser_test.h"
#include "extensions/test/extension_test_message_listener.h"
#include "extensions/test/result_catcher.h"
#include "extensions/test/test_extension_dir.h"
namespace extensions {
namespace {
constexpr char kManifestStub[] =
R"({
"name": "extension",
"version": "0.1",
"manifest_version": %d,
"background": { %s }
})";
constexpr char kPersistentBackground[] = R"("scripts": ["background.js"])";
constexpr char kServiceWorkerBackground[] =
R"("service_worker": "background.js")";
// NOTE(devlin): When running tests using the chrome.tests.runTests API, it's
// not possible to validate the failure message of individual sub-tests using
// the ResultCatcher interface. This is because the test suite always fail with
// an error message like `kExpectedFailureMessage` below without any
// information about the failure of the individual sub-tests. If we expand this
// suite significantly, we should investigate having more information available
// on the C++ side, so that we can assert failures with more specificity.
// TODO(devlin): Investigate using WebContentsConsoleObserver to watch for
// specific errors / patterns.
constexpr char kExpectedFailureMessage[] = "Failed 1 of 1 tests";
} // namespace
using ContextType = extensions::browser_test_util::ContextType;
class TestAPITest : public ExtensionApiTest {
protected:
const Extension* LoadExtensionScriptWithContext(const char* background_script,
ContextType context_type,
int manifest_version);
std::vector<TestExtensionDir> test_dirs_;
};
const Extension* TestAPITest::LoadExtensionScriptWithContext(
const char* background_script,
ContextType context_type,
int manifest_version = 2) {
TestExtensionDir test_dir;
const char* background_value = context_type == ContextType::kServiceWorker
? kServiceWorkerBackground
: kPersistentBackground;
const std::string manifest =
base::StringPrintf(kManifestStub, manifest_version, background_value);
test_dir.WriteManifest(manifest);
test_dir.WriteFile(FILE_PATH_LITERAL("background.js"), background_script);
const Extension* extension = LoadExtension(test_dir.UnpackedPath());
test_dirs_.push_back(std::move(test_dir));
return extension;
}
class TestAPITestWithContextType
: public TestAPITest,
public testing::WithParamInterface<ContextType> {};
#if !BUILDFLAG(IS_ANDROID)
// Android only supports service worker.
INSTANTIATE_TEST_SUITE_P(PersistentBackground,
TestAPITestWithContextType,
::testing::Values(ContextType::kPersistentBackground));
#endif
INSTANTIATE_TEST_SUITE_P(ServiceWorker,
TestAPITestWithContextType,
::testing::Values(ContextType::kServiceWorker));
// TODO(devlin): This test name should be more descriptive.
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, ApiTest) {
ASSERT_TRUE(RunExtensionTest("apitest", {}, {.context_type = GetParam()}))
<< message_;
}
// Verifies that failing an assert in a promise will properly fail and end the
// test.
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, FailedAssertsInPromises) {
ResultCatcher result_catcher;
constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
function failedAssertsInPromises() {
let p = new Promise((resolve, reject) => {
chrome.test.assertEq(1, 2);
resolve();
});
p.then(() => { chrome.test.succeed(); });
}
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Verifies that using await and assert'ing aspects of the results succeeds.
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType,
AsyncAwaitAssertions_Succeed) {
ResultCatcher result_catcher;
constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
async function asyncAssertions() {
let allowed = await new Promise((resolve) => {
chrome.extension.isAllowedIncognitoAccess(resolve);
});
chrome.test.assertFalse(allowed);
chrome.test.succeed();
}
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_TRUE(result_catcher.GetNextResult());
}
// Verifies that using await and having failed assertions properly fails the
// test.
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType,
AsyncAwaitAssertions_Failed) {
ResultCatcher result_catcher;
constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
async function asyncAssertions() {
let allowed = await new Promise((resolve) => {
chrome.extension.isAllowedIncognitoAccess(resolve);
});
chrome.test.assertTrue(allowed);
chrome.test.succeed();
}
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, AsyncExceptions) {
ResultCatcher result_catcher;
constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
async function asyncExceptions() {
throw new Error('test error');
}
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Exercises chrome.test.assertNe() in cases where the check should succeed
// (that is, when the passed values are different).
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, AssertNe_Success) {
ResultCatcher result_catcher;
static constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
function assertNeTestsWithPrimitiveTypes() {
chrome.test.assertNe(1, 2);
chrome.test.assertNe(2, 1);
chrome.test.assertNe(true, false);
chrome.test.assertNe(1.8, 2.4);
chrome.test.assertNe('tolstoy', 'dostoyevsky');
chrome.test.succeed();
},
function assertNeTestsWithObjects() {
chrome.test.assertNe([], [1]);
chrome.test.assertNe({x: 1}, {x: 2});
chrome.test.assertNe({x: 1}, {y: 1});
chrome.test.assertNe({}, []);
chrome.test.assertNe({}, 'Object object');
chrome.test.assertNe({}, '{}');
chrome.test.assertNe({}, null);
chrome.test.assertNe(null, {});
chrome.test.succeed();
},
function assertNeTestsWithErrorMessage() {
chrome.test.assertNe(3, 2, '3 does not equal 2');
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_TRUE(result_catcher.GetNextResult());
}
// Exercises chrome.test.assertNe() in failure cases (i.e., the passed values
// are equal). We can only test one case at a time since otherwise we'd be
// unable to determine which part of the test failed (since "failure" here is
// a successful assertNe() check).
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, AssertNe_Failure_Primitive) {
ResultCatcher result_catcher;
static constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
function assertNeTestsWithPrimitiveTypes() {
chrome.test.assertNe(1, 1);
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Exercises chrome.test.assertNe() in failure cases (i.e., the passed values
// are equal). We can only test one case at a time since otherwise we'd be
// unable to determine which part of the test failed (since "failure" here is
// a successful assertNe() check).
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType, AssertNe_Failure_Object) {
ResultCatcher result_catcher;
static constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
function assertNeTestsWithObjectTypes() {
chrome.test.assertNe({x: 42}, {x: 42});
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Exercises chrome.test.assertNe() in failure cases (i.e., the passed values
// are equal). We can only test one case at a time since otherwise we'd be
// unable to determine which part of the test failed (since "failure" here is
// a successful assertNe() check).
IN_PROC_BROWSER_TEST_P(TestAPITestWithContextType,
AssertNe_Failure_AdditionalErrorMessage) {
ResultCatcher result_catcher;
static constexpr char kBackgroundJs[] =
R"(chrome.test.runTests([
function assertNeTestsWithAdditionalErrorMessage() {
chrome.test.assertNe(2, 2, '2 does equal 2');
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kBackgroundJs, GetParam()));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Verifies that chrome.test.assertPromiseRejects() succeeds using
// promises that reject with the expected message.
IN_PROC_BROWSER_TEST_F(TestAPITest, AssertPromiseRejects_Successful) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(const TEST_ERROR = 'Expected Error';
chrome.test.runTests([
async function successfulAssert_PromiseAlreadyRejected() {
let p = Promise.reject(TEST_ERROR);
await chrome.test.assertPromiseRejects(p, TEST_ERROR);
chrome.test.succeed();
},
async function successfulAssert_PromiseRejectedLater() {
let rejectPromise;
let p = new Promise(
(resolve, reject) => { rejectPromise = reject; });
let assertPromise =
chrome.test.assertPromiseRejects(p, TEST_ERROR);
rejectPromise(TEST_ERROR);
assertPromise.then(() => {
chrome.test.succeed();
}).catch(e => {
chrome.test.fail(e);
});
},
async function successfulAssert_RegExpMatching() {
const regexp = /.*pect.*rror/;
chrome.test.assertTrue(regexp.test(TEST_ERROR));
let p = Promise.reject(TEST_ERROR);
await chrome.test.assertPromiseRejects(p, regexp);
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_TRUE(result_catcher.GetNextResult());
}
// Tests that chrome.test.assertPromiseRejects() properly fails the test when
// the promise is rejected with an improper message.
IN_PROC_BROWSER_TEST_F(TestAPITest, AssertPromiseRejects_WrongErrorMessage) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(chrome.test.runTests([
async function failedAssert_WrongErrorMessage() {
let p = Promise.reject('Wrong Error');
await chrome.test.assertPromiseRejects(p, 'Expected Error');
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Tests that chrome.test.assertPromiseRejects() properly fails the test when
// the promise resolves instead of rejects.
IN_PROC_BROWSER_TEST_F(TestAPITest, AssertPromiseRejects_PromiseResolved) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(chrome.test.runTests([
async function failedAssert_PromiseResolved() {
let p = Promise.resolve(42);
await chrome.test.assertPromiseRejects(p, 'Expected Error');
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Tests that finishing the test without waiting for the result of
// chrome.test.assertPromiseRejects() properly fails the test.
IN_PROC_BROWSER_TEST_F(TestAPITest, AssertPromiseRejects_PromiseIgnored) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(chrome.test.runTests([
async function failedAssert_PromiseIgnored() {
let p = new Promise((resolve, reject) => { });
chrome.test.assertPromiseRejects(p, 'Expected Error');
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_FALSE(result_catcher.GetNextResult());
EXPECT_EQ(kExpectedFailureMessage, result_catcher.message());
}
// Tests that chrome.test.sendMessage() successfully sends a message to the C++
// side and can receive a response back using a promise.
IN_PROC_BROWSER_TEST_F(TestAPITest, SendMessage_WithPromise) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(chrome.test.runTests([
async function sendMessageWithPromise() {
let response = await chrome.test.sendMessage('ping');
chrome.test.assertEq('pong', response);
chrome.test.succeed();
},
]);)";
ExtensionTestMessageListener ping_listener("ping", ReplyBehavior::kWillReply);
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_TRUE(ping_listener.WaitUntilSatisfied());
ping_listener.Reply("pong");
EXPECT_TRUE(result_catcher.GetNextResult());
}
// Tests that calling chrome.test.waitForRountTrip() eventually comes back with
// the same message when using promises. Note: this does not verify that the
// message actually passes through the renderer process, it just tests the
// surface level from the Javascript side.
IN_PROC_BROWSER_TEST_F(TestAPITest, WaitForRoundTrip_WithPromise) {
ResultCatcher result_catcher;
constexpr char kWorkerJs[] =
R"(chrome.test.runTests([
async function waitForRoundTripWithPromise() {
let response = await chrome.test.waitForRoundTrip('arrivederci');
chrome.test.assertEq('arrivederci', response);
chrome.test.succeed();
},
]);)";
ASSERT_TRUE(LoadExtensionScriptWithContext(kWorkerJs,
ContextType::kServiceWorker,
/*manifest_version=*/3));
EXPECT_TRUE(result_catcher.GetNextResult());
}
} // namespace extensions
|