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> |