Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: test/mjsunit/code-coverage-ad-hoc.js

Issue 2689493002: [debugger] implement per-function code coverage. (Closed)
Patch Set: address comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/debugger/debug/debug-scripts-throw.js ('k') | test/mjsunit/regress/regress-crbug-471702.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/code-coverage-ad-hoc.js
diff --git a/test/mjsunit/code-coverage-ad-hoc.js b/test/mjsunit/code-coverage-ad-hoc.js
new file mode 100644
index 0000000000000000000000000000000000000000..1f8308add6b3f811d673cf91fa44a0233abcc042
--- /dev/null
+++ b/test/mjsunit/code-coverage-ad-hoc.js
@@ -0,0 +1,109 @@
+// Copyright 2017 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.
+
+// Flags: --allow-natives-syntax --no-always-opt
+
+// Test code coverage without explicitly activating it upfront.
+
+function GetCoverage(source) {
+ var scripts = %DebugGetLoadedScripts();
+ for (var script of scripts) {
+ if (script.source == source) {
+ var coverage = %DebugCollectCoverage();
+ for (var data of coverage) {
+ if (data.script_id == script.id) return data.entries;
+ }
+ }
+ }
+ return undefined;
+}
+
+function ApplyCoverageToSource(source, coverage) {
+ var result = "";
+ var cursor = 0;
+ for (var entry of coverage) {
+ var chunk = source.substring(cursor, entry.end_position);
+ cursor = entry.end_position;
+ result += `[${chunk}[${entry.count}]]`;
+ }
+ return result;
+}
+
+function TestCoverage(name, source, expectation) {
+ source = source.trim();
+ expectation = expectation.trim();
+ eval(source);
+ var coverage = GetCoverage(source);
+ var result = ApplyCoverageToSource(source, coverage);
+ print(result);
+ assertEquals(expectation, result, name + " failed");
+}
+
+TestCoverage(
+"call simple function twice",
+`
+function f() {}
+f();
+f();
+`,
+`
+[function f() {}[2]][
+f();
+f();[1]]
+`
+);
+
+TestCoverage(
+"call arrow function twice",
+`
+var f = () => 1;
+f();
+f();
+`,
+`
+[var f = [1]][() => 1[2]][;
+f();
+f();[1]]
+`
+);
+
+TestCoverage(
+"call nested function",
+`
+function f() {
+ function g() {}
+ g();
+ g();
+}
+f();
+f();
+`,
+`
+[function f() {
+ [2]][function g() {}[4]][
+ g();
+ g();
+}[2]][
+f();
+f();[1]]
+`
+);
+
+TestCoverage(
+"call recursive function",
+`
+function fib(x) {
+ if (x < 2) return 1;
+ return fib(x-1) + fib(x-2);
+}
+fib(5);
+`,
+`
+[function fib(x) {
+ if (x < 2) return 1;
+ return fib(x-1) + fib(x-2);
+}[15]][
+fib(5);[1]]
+`
+);
« no previous file with comments | « test/debugger/debug/debug-scripts-throw.js ('k') | test/mjsunit/regress/regress-crbug-471702.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698