2016-10-13 20:31:17 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that protocol works with different locales');
|
|
|
|
|
2016-10-13 20:31:17 +00:00
|
|
|
Protocol.Runtime.enable();
|
|
|
|
|
2017-01-17 20:21:38 +00:00
|
|
|
Protocol.Runtime.onConsoleAPICalled(InspectorTest.logMessage);
|
2016-10-13 20:31:17 +00:00
|
|
|
|
|
|
|
InspectorTest.runTestSuite([
|
|
|
|
function consoleLogWithDefaultLocale(next) {
|
|
|
|
Protocol.Runtime.evaluate({ expression: "console.log(239) "}).then(next);
|
|
|
|
},
|
|
|
|
|
|
|
|
function consoleTimeWithCommaAsSeparator(next) {
|
|
|
|
InspectorTest.log("set locale to fr_CA.UTF-8 (has comma as separator)");
|
2017-02-28 20:22:24 +00:00
|
|
|
utils.setlocale("fr_CA.UTF-8");
|
|
|
|
utils.setCurrentTimeMSForTest(0.0);
|
2017-01-17 20:21:38 +00:00
|
|
|
Protocol.Runtime.evaluate({ expression: "console.time(\"a\");"})
|
2017-02-28 20:22:24 +00:00
|
|
|
.then(() => utils.setCurrentTimeMSForTest(0.001))
|
2017-01-17 20:21:38 +00:00
|
|
|
.then(() => Protocol.Runtime.evaluate({ expression: "console.timeEnd(\"a\");"}))
|
|
|
|
.then(next);
|
2016-10-13 20:31:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
function consoleLogWithCommaAsSeparator(next) {
|
|
|
|
InspectorTest.log("set locale to fr_CA.UTF-8 (has comma as separator)");
|
2017-02-28 20:22:24 +00:00
|
|
|
utils.setlocale("fr_CA.UTF-8");
|
2016-10-13 20:31:17 +00:00
|
|
|
Protocol.Runtime.evaluate({ expression: "console.log(239) "}).then(next);
|
|
|
|
},
|
|
|
|
|
|
|
|
function consoleTimeWithCommaAfterConsoleLog(next) {
|
|
|
|
InspectorTest.log("set locale to fr_CA.UTF-8 (has comma as separator)");
|
2017-02-28 20:22:24 +00:00
|
|
|
utils.setlocale("fr_CA.UTF-8");
|
2016-10-13 20:31:17 +00:00
|
|
|
Protocol.Runtime.evaluate({ expression: "console.log(239) "})
|
2017-02-28 20:22:24 +00:00
|
|
|
.then(() => utils.setCurrentTimeMSForTest(0.0))
|
2017-01-17 20:21:38 +00:00
|
|
|
.then(() => Protocol.Runtime.evaluate({ expression: "console.time(\"a\");"}))
|
2017-02-28 20:22:24 +00:00
|
|
|
.then(() => utils.setCurrentTimeMSForTest(0.001))
|
2017-01-17 20:21:38 +00:00
|
|
|
.then(() => Protocol.Runtime.evaluate({ expression: "console.timeEnd(\"a\");"}))
|
2016-10-13 20:31:17 +00:00
|
|
|
.then(next);
|
|
|
|
}
|
|
|
|
]);
|