blob: 30aa4c4a37a403f3dd1db1df462d544b6200a3cc [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(`Tests UISourceCode display name.\n`);
await TestRunner.loadModule('sources_test_runner');
await TestRunner.showPanel('sources');
async function dumpUISourceCodeDisplayName(url) {
var uiSourceCode = await SourcesTestRunner.addScriptUISourceCode(url, '');
TestRunner.addResult(
'UISourceCode display name for url "' + url + '" is "' +
Sources.TabbedEditorContainer.prototype._titleForFile(uiSourceCode) + '".');
}
const baseURL = 'http://localhost:8080/folder/';
await dumpUISourceCodeDisplayName(baseURL + 'filename?parameter=value&nnn=1');
await dumpUISourceCodeDisplayName(baseURL + 'very-long-filename-123456?nn=1');
await dumpUISourceCodeDisplayName(baseURL + 'too-long-filename-1234567890?nn=1');
await dumpUISourceCodeDisplayName(baseURL + 'long-filename?parameter=value&nnn=1');
await dumpUISourceCodeDisplayName(baseURL + 'too-long-filename-1234567890?parameter=value&nnn=1');
TestRunner.completeTest();
})();