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

Side by Side Diff: test/inspector/runtime/set-or-map-entries.js

Issue 2774493002: [inspector] run more tests with InspectorTest.setupInjectedScriptEnvironment (Closed)
Patch Set: rebased Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « test/inspector/runtime/length-or-size-description.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 InspectorTest.log("Test that Runtime.getProperties doesn't truncate set and map entries in internalProperties.") 5 InspectorTest.log("Test that Runtime.getProperties doesn't truncate set and map entries in internalProperties.")
6 6
7 InspectorTest.addScript(` 7 InspectorTest.addScript(`
8 function createSet(size) { 8 function createSet(size) {
9 var s = new Set(); 9 var s = new Set();
10 var a = {}; 10 var a = {};
11 a.a = a; 11 a.a = a;
12 for (var i = 0; i < size; ++i) s.add({ wrapper: a}); 12 for (var i = 0; i < size; ++i) s.add({ wrapper: a});
13 return s; 13 return s;
14 } 14 }
15 15
16 function createMap(size) { 16 function createMap(size) {
17 var m = new Map(); 17 var m = new Map();
18 var a = {}; 18 var a = {};
19 a.a = a; 19 a.a = a;
20 for (var i = 0; i < size; ++i) m.set(i, { wrapper: a}); 20 for (var i = 0; i < size; ++i) m.set(i, { wrapper: a});
21 return m; 21 return m;
22 } 22 }
23 `); 23 `);
24 24
25 InspectorTest.setupInjectedScriptEnvironment();
26
25 Protocol.Debugger.enable(); 27 Protocol.Debugger.enable();
26 Protocol.Runtime.enable(); 28 Protocol.Runtime.enable();
27 29
28 testExpression("createSet(10)") 30 testExpression("createSet(10)")
29 .then(() => testExpression("createSet(1000)")) 31 .then(() => testExpression("createSet(1000)"))
30 .then(() => testExpression("createMap(10)")) 32 .then(() => testExpression("createMap(10)"))
31 .then(() => testExpression("createMap(1000)")) 33 .then(() => testExpression("createMap(1000)"))
32 .then(() => InspectorTest.completeTest()); 34 .then(() => InspectorTest.completeTest());
33 35
34 function testExpression(expression) 36 function testExpression(expression)
35 { 37 {
36 return Protocol.Runtime.evaluate({ "expression": expression}) 38 return Protocol.Runtime.evaluate({ "expression": expression})
37 .then(result => Protocol.Runtime.getProperties({ ownProperties: true, objectId: result.result.result.objectId })) 39 .then(result => Protocol.Runtime.getProperties({ ownProperties: true, objectId: result.result.result.objectId }))
38 .then(message => dumpEntriesDescription(expression, message)); 40 .then(message => dumpEntriesDescription(expression, message));
39 } 41 }
40 42
41 function dumpEntriesDescription(expression, message) 43 function dumpEntriesDescription(expression, message)
42 { 44 {
43 InspectorTest.log(`Entries for "${expression}"`); 45 InspectorTest.log(`Entries for "${expression}"`);
44 var properties = message.result.internalProperties; 46 var properties = message.result.internalProperties;
45 var property; 47 var property;
46 if (properties) 48 if (properties)
47 property = properties.find(property => property.name === "[[Entries]]"); 49 property = properties.find(property => property.name === "[[Entries]]");
48 if (!property) 50 if (!property)
49 InspectorTest.log("[[Entries]] not found"); 51 InspectorTest.log("[[Entries]] not found");
50 else 52 else
51 InspectorTest.log(property.value.description); 53 InspectorTest.log(property.value.description);
52 } 54 }
OLDNEW
« no previous file with comments | « test/inspector/runtime/length-or-size-description.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698