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,37 +51,43 @@ function setOriginCheckbox(value) { ...@@ -51,37 +51,43 @@ function setOriginCheckbox(value) {
// Grid should have an entry now. // Grid should have an entry now.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
timestamp: 1556889085, // 2019-05-03 14:11:25.000. backgroundServiceEvent: {
origin: 'http://127.0.0.1:8000/', timestamp: 1556889085, // 2019-05-03 14:11:25.000.
serviceWorkerRegistrationId: 42, // invalid. origin: 'http://127.0.0.1:8000/',
service: Protocol.BackgroundService.ServiceName.BackgroundFetch, serviceWorkerRegistrationId: 42, // invalid.
eventName: 'Event1', service: Protocol.BackgroundService.ServiceName.BackgroundFetch,
instanceId: 'Instance1', eventName: 'Event1',
eventMetadata: [], instanceId: 'Instance1',
eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
// Event from a different service is ignored. // Event from a different service is ignored.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
timestamp: 1556889085, // 2019-05-03 14:11:25.000. backgroundServiceEvent: {
origin: 'http://127.0.0.1:8000/', timestamp: 1556889085, // 2019-05-03 14:11:25.000.
serviceWorkerRegistrationId: 42, // invalid. origin: 'http://127.0.0.1:8000/',
service: Protocol.BackgroundService.ServiceName.BackgroundSync, serviceWorkerRegistrationId: 42, // invalid.
eventName: 'Event1', service: Protocol.BackgroundService.ServiceName.BackgroundSync,
instanceId: 'Instance2', eventName: 'Event1',
eventMetadata: [], instanceId: 'Instance2',
eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
// Event from a different origin is ignored. // Event from a different origin is ignored.
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
timestamp: 1556889085, // 2019-05-03 14:11:25.000. backgroundServiceEvent: {
origin: 'http://127.0.0.1:8080/', timestamp: 1556889085, // 2019-05-03 14:11:25.000.
serviceWorkerRegistrationId: 42, // invalid. origin: 'http://127.0.0.1:8080/',
service: Protocol.BackgroundService.ServiceName.BackgroundFetch, serviceWorkerRegistrationId: 42, // invalid.
eventName: 'Event2', service: Protocol.BackgroundService.ServiceName.BackgroundFetch,
instanceId: 'Instance1', eventName: 'Event2',
eventMetadata: [], instanceId: 'Instance1',
eventMetadata: [],
},
}); });
dumpBackgroundServiceGrid(); dumpBackgroundServiceGrid();
......
...@@ -55,22 +55,26 @@ async function toggleRecord(model) { ...@@ -55,22 +55,26 @@ async function toggleRecord(model) {
dumpPreviewPanel(); dumpPreviewPanel();
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
timestamp: 1556889085, // 2019-05-03 14:11:25.000. backgroundServiceEvent: {
origin: 'http://127.0.0.1:8000/', timestamp: 1556889085, // 2019-05-03 14:11:25.000.
serviceWorkerRegistrationId: 42, // invalid. origin: 'http://127.0.0.1:8000/',
service: Protocol.BackgroundService.ServiceName.BackgroundFetch, serviceWorkerRegistrationId: 42, // invalid.
eventName: 'Event1', service: Protocol.BackgroundService.ServiceName.BackgroundFetch,
instanceId: 'Instance1', eventName: 'Event1',
eventMetadata: [], instanceId: 'Instance1',
eventMetadata: [],
}
}); });
backgroundServiceModel.backgroundServiceEventReceived({ backgroundServiceModel.backgroundServiceEventReceived({
timestamp: 1556889085, // 2019-05-03 14:11:25.000. backgroundServiceEvent: {
origin: 'http://127.0.0.1:8000/', timestamp: 1556889085, // 2019-05-03 14:11:25.000.
serviceWorkerRegistrationId: 42, // invalid. origin: 'http://127.0.0.1:8000/',
service: Protocol.BackgroundService.ServiceName.BackgroundFetch, serviceWorkerRegistrationId: 42, // invalid.
eventName: 'Event2', service: Protocol.BackgroundService.ServiceName.BackgroundFetch,
instanceId: 'Instance1', eventName: 'Event2',
eventMetadata: [{key: 'key', value: 'value'}], instanceId: 'Instance1',
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