OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 function runTests() { | 5 function runTests() { |
6 var getURL = chrome.extension.getURL; | 6 var getURL = chrome.extension.getURL; |
7 chrome.tabs.create({"url": "about:blank"}, function(tab) { | 7 chrome.tabs.create({"url": "about:blank"}, function(tab) { |
8 var tabId = tab.id; | 8 var tabId = tab.id; |
9 | 9 |
10 chrome.test.runTests([ | 10 chrome.test.runTests([ |
11 // Opens a tab and waits for the user to click on a link in it. | 11 // Opens a tab and waits for the user to click on a link in it. |
12 function userAction() { | 12 function userAction() { |
13 expect([ | 13 expect([ |
14 { label: "a-onBeforeNavigate", | 14 { label: "a-onBeforeNavigate", |
15 event: "onBeforeNavigate", | 15 event: "onBeforeNavigate", |
16 details: { frameId: 0, | 16 details: { frameId: 0, |
| 17 processId: 0, |
17 tabId: 0, | 18 tabId: 0, |
18 timeStamp: 0, | 19 timeStamp: 0, |
19 url: getURL('userAction/a.html') }}, | 20 url: getURL('userAction/a.html') }}, |
20 { label: "a-onCommitted", | 21 { label: "a-onCommitted", |
21 event: "onCommitted", | 22 event: "onCommitted", |
22 details: { frameId: 0, | 23 details: { frameId: 0, |
| 24 processId: 0, |
23 tabId: 0, | 25 tabId: 0, |
24 timeStamp: 0, | 26 timeStamp: 0, |
25 transitionQualifiers: [], | 27 transitionQualifiers: [], |
26 transitionType: "typed", | 28 transitionType: "typed", |
27 url: getURL('userAction/a.html') }}, | 29 url: getURL('userAction/a.html') }}, |
28 { label: "a-onDOMContentLoaded", | 30 { label: "a-onDOMContentLoaded", |
29 event: "onDOMContentLoaded", | 31 event: "onDOMContentLoaded", |
30 details: { frameId: 0, | 32 details: { frameId: 0, |
| 33 processId: 0, |
31 tabId: 0, | 34 tabId: 0, |
32 timeStamp: 0, | 35 timeStamp: 0, |
33 url: getURL('userAction/a.html') }}, | 36 url: getURL('userAction/a.html') }}, |
34 { label: "a-onCompleted", | 37 { label: "a-onCompleted", |
35 event: "onCompleted", | 38 event: "onCompleted", |
36 details: { frameId: 0, | 39 details: { frameId: 0, |
| 40 processId: 0, |
37 tabId: 0, | 41 tabId: 0, |
38 timeStamp: 0, | 42 timeStamp: 0, |
39 url: getURL('userAction/a.html') }}, | 43 url: getURL('userAction/a.html') }}, |
40 { label: "b-onCreatedNavigationTarget", | 44 { label: "b-onCreatedNavigationTarget", |
41 event: "onCreatedNavigationTarget", | 45 event: "onCreatedNavigationTarget", |
42 details: { sourceFrameId: 0, | 46 details: { sourceFrameId: 0, |
| 47 sourceProcessId: 0, |
43 sourceTabId: 0, | 48 sourceTabId: 0, |
44 tabId: 1, | 49 tabId: 1, |
45 timeStamp: 0, | 50 timeStamp: 0, |
46 url: getURL('userAction/b.html') }}, | 51 url: getURL('userAction/b.html') }}, |
47 { label: "b-onBeforeNavigate", | 52 { label: "b-onBeforeNavigate", |
48 event: "onBeforeNavigate", | 53 event: "onBeforeNavigate", |
49 details: { frameId: 0, | 54 details: { frameId: 0, |
| 55 processId: 0, |
50 tabId: 1, | 56 tabId: 1, |
51 timeStamp: 0, | 57 timeStamp: 0, |
52 url: getURL('userAction/b.html') }}, | 58 url: getURL('userAction/b.html') }}, |
53 { label: "b-onCommitted", | 59 { label: "b-onCommitted", |
54 event: "onCommitted", | 60 event: "onCommitted", |
55 details: { frameId: 0, | 61 details: { frameId: 0, |
| 62 processId: 0, |
56 tabId: 1, | 63 tabId: 1, |
57 timeStamp: 0, | 64 timeStamp: 0, |
58 transitionQualifiers: [], | 65 transitionQualifiers: [], |
59 transitionType: "link", | 66 transitionType: "link", |
60 url: getURL('userAction/b.html') }}, | 67 url: getURL('userAction/b.html') }}, |
61 { label: "b-onDOMContentLoaded", | 68 { label: "b-onDOMContentLoaded", |
62 event: "onDOMContentLoaded", | 69 event: "onDOMContentLoaded", |
63 details: { frameId: 0, | 70 details: { frameId: 0, |
| 71 processId: 0, |
64 tabId: 1, | 72 tabId: 1, |
65 timeStamp: 0, | 73 timeStamp: 0, |
66 url: getURL('userAction/b.html') }}, | 74 url: getURL('userAction/b.html') }}, |
67 { label: "b-onCompleted", | 75 { label: "b-onCompleted", |
68 event: "onCompleted", | 76 event: "onCompleted", |
69 details: { frameId: 0, | 77 details: { frameId: 0, |
| 78 processId: 0, |
70 tabId: 1, | 79 tabId: 1, |
71 timeStamp: 0, | 80 timeStamp: 0, |
72 url: getURL('userAction/b.html') }}], | 81 url: getURL('userAction/b.html') }}], |
73 [ navigationOrder("a-"), | 82 [ navigationOrder("a-"), |
74 navigationOrder("b-"), | 83 navigationOrder("b-"), |
75 [ "a-onDOMContentLoaded", | 84 [ "a-onDOMContentLoaded", |
76 "b-onCreatedNavigationTarget", | 85 "b-onCreatedNavigationTarget", |
77 "b-onBeforeNavigate" ]]); | 86 "b-onBeforeNavigate" ]]); |
78 | 87 |
79 // Notify the api test that we're waiting for the user. | 88 // Notify the api test that we're waiting for the user. |
80 chrome.test.notifyPass(); | 89 chrome.test.notifyPass(); |
81 }, | 90 }, |
82 ]); | 91 ]); |
83 }); | 92 }); |
84 } | 93 } |
OLD | NEW |