blob: fcdc2024f04cf4d6068d2e7f9c19beae9ad8b49f [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(
`Verify that persistence does not overwrite CSS files when CSS model reports error on getStyleSheetText.\n`);
await TestRunner.loadModule('bindings_test_runner');
await TestRunner.loadModule('sources_test_runner');
await TestRunner.loadHTML(`
<style>
body {
color: red;
}
/*# sourceURL=http://127.0.0.1:8000/simple.css */
</style>
`);
var testMapping = BindingsTestRunner.initializeTestMapping();
var fsUISourceCode, fs;
TestRunner.runTestSuite([
function initializeTestFileSystem(next) {
TestRunner.waitForUISourceCode('simple.css')
.then(uiSourceCode => uiSourceCode.requestContent())
.then(onCSSContent);
function onCSSContent({ content, error, isEncoded }) {
fs = new BindingsTestRunner.TestFileSystem('file:///var/www');
BindingsTestRunner.addFiles(fs, {
'simple.css': {content: content},
});
fs.reportCreated(next);
}
},
function waitForPersistenceBinding(next) {
testMapping.addBinding('simple.css');
BindingsTestRunner.waitForBinding('simple.css').then(onBinding);
function onBinding(binding) {
fsUISourceCode = binding.fileSystem;
fsUISourceCode.requestContent().then(onContent);
}
function onContent({ content, error, isEncoded }) {
TestRunner.addResult('Initial content of file:///var/www/simple.css');
TestRunner.addResult('----\n' + content + '\n----');
next();
}
},
function breakCSSModelProtocol(next) {
// Nullify console.error since it dumps style sheet Ids and make test flake.
console.error = function() {};
var styleSheet =
TestRunner.cssModel.styleSheetHeaders().find(header => header.contentURL().endsWith('simple.css'));
// Make CSSModel constantly return errors on all getStyleSheetText requests.
TestRunner.override(TestRunner.cssModel._agent, 'invoke_getStyleSheetText', throwProtocolError, true);
// Set a new stylesheet text
TestRunner.cssModel.setStyleSheetText(styleSheet.id, 'body {color: blue}');
// Expect StylesSourceMapping to sync styleSheet with network UISourceCode.
// Persistence acts synchronously.
TestRunner.addSniffer(Bindings.StyleFile.prototype, '_styleFileSyncedForTest', next);
function throwProtocolError(styleSheetId) {
TestRunner.addResult('Protocol Error: FAKE PROTOCOL ERROR');
return Promise.resolve(null);
}
},
function onStylesSourcemappingSynced(next) {
TestRunner.addResult('Updated content of file:///var/www/simple.css');
TestRunner.addResult('----\n' + fsUISourceCode.content() + '\n----');
next();
}
]);
})();