Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / serviceworker / chromium / fetch-script-onerror.html
blob1dcbe2a52b0420f64e1a8bf750c7ac7c425ac03c
1 <!DOCTYPE html>
2 <title>Service Worker: Check script error sanitization</title>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="../../resources/get-host-info.js"></script>
6 <script src="../resources/test-helpers.js"></script>
7 <script>
8 var message_callback;
9 var host_info = get_host_info();
11 window.addEventListener('message', function(evt) {
12 message_callback(evt.data);
13 });
15 function get_script_error(frame, url) {
16 return new Promise(function(resolve) {
17 message_callback = resolve;
18 frame.contentWindow.postMessage({url: url}, host_info['HTTP_ORIGIN']);
19 });
22 function check_script_error(frame, url, should_be_sanitized) {
23 if (should_be_sanitized) {
24 return get_script_error(frame, url)
25 .then(function(data) {
26 assert_equals(data.filename, '');
27 assert_equals(data.colno, 0);
28 assert_equals(data.lineno, 0);
29 assert_equals(data.message, 'Script error.');
30 });
31 } else {
32 return get_script_error(frame, url)
33 .then(function(data) {
34 assert_equals(data.filename, url);
35 assert_equals(data.colno, 1);
36 assert_equals(data.lineno, 1);
37 assert_equals(data.message,
38 'Uncaught ReferenceError: UndefinedReference is not defined');
39 });
43 async_test(function(t) {
44 var SCOPE = 'resources/fetch-script-onerror-iframe.html';
45 var WORKER_SCRIPT = 'resources/fetch-script-onerror-worker.js';
46 var TARGET_PATH =
47 '/serviceworker/chromium/resources/fetch-script-onerror.php';
48 var SCRIPT_URL = host_info['HTTP_ORIGIN'] + TARGET_PATH;
49 var REMOTE_SCRIPT_URL = host_info['HTTP_REMOTE_ORIGIN'] + TARGET_PATH;
50 var frame;
51 service_worker_unregister_and_register(t, WORKER_SCRIPT, SCOPE)
52 .then(function(registration) {
53 return wait_for_state(t, registration.installing, 'activated');
55 .then(function() { return with_iframe(SCOPE); })
56 .then(function(f) {
57 frame = f;
58 return check_script_error(frame, SCRIPT_URL, false);
60 .then(function() {
61 return check_script_error(frame, REMOTE_SCRIPT_URL, true);
63 .then(function() {
64 return check_script_error(
65 frame,
66 host_info['HTTP_ORIGIN'] + '/dummy?mode=cors&url=' +
67 encodeURIComponent(REMOTE_SCRIPT_URL),
68 false);
70 .then(function() {
71 return check_script_error(
72 frame,
73 host_info['HTTP_ORIGIN'] + '/dummy?mode=no-cors&url=' +
74 encodeURIComponent(REMOTE_SCRIPT_URL),
75 true);
77 .then(function() {
78 return check_script_error(
79 frame,
80 host_info['HTTP_REMOTE_ORIGIN'] + '/dummy?mode=cors&url=' +
81 encodeURIComponent(REMOTE_SCRIPT_URL),
82 false);
84 .then(function() {
85 return check_script_error(
86 frame,
87 host_info['HTTP_REMOTE_ORIGIN'] + '/dummy?mode=no-cors&url=' +
88 encodeURIComponent(REMOTE_SCRIPT_URL),
89 true);
91 .then(function() {
92 frame.remove();
93 service_worker_unregister_and_done(t, SCOPE);
95 .catch(unreached_rejection(t));
96 }, 'Check script error sanitization');
97 </script>