Commit 233f5268 authored by Wolfgang Beyer's avatar Wolfgang Beyer Committed by Commit Bot

Update and re-enable tests after DevTools frontend update

frontend CL: https://crrev.com/c/2475716
disabling tests CL: https://crrev.com/c/2479366

Bug: chromium:1011811, chromium:1138492

Change-Id: I1596f686dafc29c7933e2b14c2b07198d73043e4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2478991Reviewed-by: default avatarTim van der Lippe <tvanderlippe@chromium.org>
Commit-Queue: Wolfgang Beyer <wolfi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#818491}
parent ac76ae36
...@@ -5831,6 +5831,7 @@ crbug.com/1044545 [ Release ] http/tests/devtools/service-workers/service-worker ...@@ -5831,6 +5831,7 @@ crbug.com/1044545 [ Release ] http/tests/devtools/service-workers/service-worker
crbug.com/1044561 [ Release ] http/tests/devtools/elements/styles/show-all-properties.js [ Pass Timeout ] crbug.com/1044561 [ Release ] http/tests/devtools/elements/styles/show-all-properties.js [ Pass Timeout ]
crbug.com/1044562 [ Release Win ] http/tests/devtools/modify-cross-domain-rule.js [ Pass Timeout ] crbug.com/1044562 [ Release Win ] http/tests/devtools/modify-cross-domain-rule.js [ Pass Timeout ]
crbug.com/1044562 [ Release Mac ] http/tests/devtools/modify-cross-domain-rule.js [ Pass Timeout ] crbug.com/1044562 [ Release Mac ] http/tests/devtools/modify-cross-domain-rule.js [ Pass Timeout ]
crbug.com/1044563 [ Release ] http/tests/devtools/background-services/background-services-panel.js [ Pass Timeout ]
crbug.com/1044805 [ Release ] http/tests/devtools/elements/styles-2/inject-stylesheet.js [ Pass Timeout ] crbug.com/1044805 [ Release ] http/tests/devtools/elements/styles-2/inject-stylesheet.js [ Pass Timeout ]
crbug.com/1044822 [ Release ] http/tests/devtools/cache-storage/cache-entry-deletion.js [ Pass Timeout ] crbug.com/1044822 [ Release ] http/tests/devtools/cache-storage/cache-entry-deletion.js [ Pass Timeout ]
#crbug.com/1044823 [ Release ] http/tests/devtools/extensions/extensions-timeline-api.js [ Pass Timeout ] #crbug.com/1044823 [ Release ] http/tests/devtools/extensions/extensions-timeline-api.js [ Pass Timeout ]
...@@ -6300,10 +6301,6 @@ crbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-pa ...@@ -6300,10 +6301,6 @@ crbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-pa
# Temporarily disable tests to allow a fix in devtools frontend # Temporarily disable tests to allow a fix in devtools frontend
crbug.com/1011811 http/tests/devtools/modules-load-initial.js [ Pass Failure ] crbug.com/1011811 http/tests/devtools/modules-load-initial.js [ Pass Failure ]
# Temporarily disable tests to allow updating devtools frontend
crbug.com/1138492 http/tests/devtools/background-services/background-services-panel.js [ Pass Failure Timeout ]
crbug.com/1138492 http/tests/devtools/background-services/background-service-grid.js [ Pass Failure Timeout ]
crbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Pass Failure ] crbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Pass Failure ]
# Sheriff 2020-07-30 # Sheriff 2020-07-30
......
...@@ -51,6 +51,7 @@ function setOriginCheckbox(value) { ...@@ -51,6 +51,7 @@ function setOriginCheckbox(value) {
// Grid should have an entry now. // Grid should have an entry now.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
backgroundServiceEvent: {
timestamp: 1556889085, // 2019-05-03 14:11:25.000. timestamp: 1556889085, // 2019-05-03 14:11:25.000.
origin: 'http://127.0.0.1:8000/', origin: 'http://127.0.0.1:8000/',
serviceWorkerRegistrationId: 42, // invalid. serviceWorkerRegistrationId: 42, // invalid.
...@@ -58,11 +59,13 @@ function setOriginCheckbox(value) { ...@@ -58,11 +59,13 @@ function setOriginCheckbox(value) {
eventName: 'Event1', eventName: 'Event1',
instanceId: 'Instance1', instanceId: 'Instance1',
eventMetadata: [], eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
// Event from a different service is ignored. // Event from a different service is ignored.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
backgroundServiceEvent: {
timestamp: 1556889085, // 2019-05-03 14:11:25.000. timestamp: 1556889085, // 2019-05-03 14:11:25.000.
origin: 'http://127.0.0.1:8000/', origin: 'http://127.0.0.1:8000/',
serviceWorkerRegistrationId: 42, // invalid. serviceWorkerRegistrationId: 42, // invalid.
...@@ -70,11 +73,13 @@ function setOriginCheckbox(value) { ...@@ -70,11 +73,13 @@ function setOriginCheckbox(value) {
eventName: 'Event1', eventName: 'Event1',
instanceId: 'Instance2', instanceId: 'Instance2',
eventMetadata: [], eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
// Event from a different origin is ignored. // Event from a different origin is ignored.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
backgroundServiceEvent: {
timestamp: 1556889085, // 2019-05-03 14:11:25.000. timestamp: 1556889085, // 2019-05-03 14:11:25.000.
origin: 'http://127.0.0.1:8080/', origin: 'http://127.0.0.1:8080/',
serviceWorkerRegistrationId: 42, // invalid. serviceWorkerRegistrationId: 42, // invalid.
...@@ -82,6 +87,7 @@ function setOriginCheckbox(value) { ...@@ -82,6 +87,7 @@ function setOriginCheckbox(value) {
eventName: 'Event2', eventName: 'Event2',
instanceId: 'Instance1', instanceId: 'Instance1',
eventMetadata: [], eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
......
...@@ -55,6 +55,7 @@ async function toggleRecord(model) { ...@@ -55,6 +55,7 @@ async function toggleRecord(model) {
dumpPreviewPanel(); dumpPreviewPanel();
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
backgroundServiceEvent: {
timestamp: 1556889085, // 2019-05-03 14:11:25.000. timestamp: 1556889085, // 2019-05-03 14:11:25.000.
origin: 'http://127.0.0.1:8000/', origin: 'http://127.0.0.1:8000/',
serviceWorkerRegistrationId: 42, // invalid. serviceWorkerRegistrationId: 42, // invalid.
...@@ -62,8 +63,10 @@ async function toggleRecord(model) { ...@@ -62,8 +63,10 @@ async function toggleRecord(model) {
eventName: 'Event1', eventName: 'Event1',
instanceId: 'Instance1', instanceId: 'Instance1',
eventMetadata: [], eventMetadata: [],
}
}); });
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
backgroundServiceEvent: {
timestamp: 1556889085, // 2019-05-03 14:11:25.000. timestamp: 1556889085, // 2019-05-03 14:11:25.000.
origin: 'http://127.0.0.1:8000/', origin: 'http://127.0.0.1:8000/',
serviceWorkerRegistrationId: 42, // invalid. serviceWorkerRegistrationId: 42, // invalid.
...@@ -71,6 +74,7 @@ async function toggleRecord(model) { ...@@ -71,6 +74,7 @@ async function toggleRecord(model) {
eventName: 'Event2', eventName: 'Event2',
instanceId: 'Instance1', instanceId: 'Instance1',
eventMetadata: [{key: 'key', value: 'value'}], eventMetadata: [{key: 'key', value: 'value'}],
}
}); });
dumpPreviewPanel(); dumpPreviewPanel();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment