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

Unified Diff: LayoutTests/inspector/utilities.html

Issue 166703003: DevTools: Simplify mergeOrIntersect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added a test. Fixed findFilesMatchingSearchRequest Created 6 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 | « no previous file | LayoutTests/inspector/utilities-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/utilities.html
diff --git a/LayoutTests/inspector/utilities.html b/LayoutTests/inspector/utilities.html
index 427cc361b5497eb998841a2e04bada42d7359fc3..7149edf41834f5c0f1b06b4d74fda2fb9311102f 100644
--- a/LayoutTests/inspector/utilities.html
+++ b/LayoutTests/inspector/utilities.html
@@ -6,6 +6,48 @@
function test()
{
InspectorTest.runTestSuite([
+ function orderedMergeIntersect(next)
+ {
+ function comparator(a, b)
+ {
+ return a - b;
+ }
+ function count(a, x)
+ {
+ return a.upperBound(x) - a.lowerBound(x);
+ }
+ function testAll(a, b)
+ {
+ testOperation(a, b, a.mergeOrdered(b, comparator), Math.max, "U");
+ testOperation(a, b, a.intersectOrdered(b, comparator), Math.min, "x");
+ }
+ function testOperation(a, b, actual, checkOperation, opName)
+ {
+ var allValues = a.concat(b).concat(actual);
+ for (var i = 0; i < allValues.length; ++i) {
+ var value = allValues[i];
+ expectedCount = checkOperation(count(a, value), count(b, value));
+ actualCount = count(actual, value);
+ InspectorTest.assertEquals(expectedCount, actualCount,
+ "Incorrect result for value: " + value + " at [" + a + "] " + opName + " [" + b + "] -> [" + actual + "]");
+ }
+ InspectorTest.assertEquals(JSON.stringify(actual.sort()), JSON.stringify(actual), "result array is ordered");
+ }
+ var testArrays = [
+ [], [],
+ [1], [],
+ [1, 2, 2, 2, 3], [],
+ [4, 5, 5, 8, 8], [1, 1, 1, 2, 6],
+ [1, 2, 2, 2, 2, 3, 3, 4], [2, 2, 2, 3, 3, 3, 3],
+ [1, 2, 3, 4, 5], [1, 2, 3]
+ ];
+ for (var i = 0; i < testArrays.length; i += 2) {
+ testAll(testArrays[i], testArrays[i + 1]);
+ testAll(testArrays[i + 1], testArrays[i]);
+ }
+ next();
+ },
+
function binaryIndexOfTest(next)
{
var testArrays = [
« no previous file with comments | « no previous file | LayoutTests/inspector/utilities-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698