Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Unified Diff: LayoutTests/http/tests/push_messaging/register_success.html

Issue 783983003: Push API: move PushManager from Navigator to ServiceWorkerRegistration [switchover 6/6] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/push_messaging/register_success.html
diff --git a/LayoutTests/http/tests/push_messaging/register_success.html b/LayoutTests/http/tests/push_messaging/register_success.html
new file mode 100644
index 0000000000000000000000000000000000000000..13db7e0822ce9bc7b86ae012fff148bb83b2e07d
--- /dev/null
+++ b/LayoutTests/http/tests/push_messaging/register_success.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>register() succeeds when permission is granted and resolves with a valid registration</title>
+<link rel="manifest" href="resources/push_manifest.json">
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="../serviceworker/resources/test-helpers.js"></script>
+</head>
+<body>
+<script>
+async_test(function(test) {
+ var workerUrl = 'resources/empty_worker.js';
+ var workerScope = 'resources/scope/' + location.pathname;
+ var swRegistration;
+ service_worker_unregister_and_register(test, workerUrl, workerScope)
+ .then(function(serviceWorkerRegistration) {
+ swRegistration = serviceWorkerRegistration;
+ return wait_for_state(test, swRegistration.installing, 'activated');
+ })
+ .then(function() {
+ // If running manually, grant permission when prompted.
+ if (self.testRunner)
+ testRunner.setPushMessagingPermission(location.origin, true);
+ return swRegistration.pushManager.register();
+ })
+ .then(function(pushRegistration) {
+ assert_own_property(pushRegistration, 'pushRegistrationId');
+ assert_equals(typeof pushRegistration.pushRegistrationId, 'string');
+
+ assert_own_property(pushRegistration, 'pushEndpoint');
+ assert_equals(typeof pushRegistration.pushEndpoint, 'string');
+ try {
+ var endpointUrl = new URL(pushRegistration.pushEndpoint);
+ } catch(e) {
+ assert_unreached('Constructing a URL from the endpoint should not throw.');
+ }
+
+ return service_worker_unregister_and_done(test, workerScope);
+ })
+ .catch(unreached_rejection(test));
+}, 'register() succeeds when permission is granted and resolves with a valid registration');
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698