| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../inspector-test.js"></script> | 3 <script src="../inspector-test.js"></script> |
| 4 <script src="../debugger-test.js"></script> | 4 <script src="../debugger-test.js"></script> |
| 5 <script src="../workspace-test.js"></script> | 5 <script src="../workspace-test.js"></script> |
| 6 <script src="../isolated-filesystem-test.js"></script> | 6 <script src="../isolated-filesystem-test.js"></script> |
| 7 <script src="./persistence-test.js"></script> | 7 <script src="./persistence-test.js"></script> |
| 8 <script src="./resources/foo.js"></script> | 8 <script src="./resources/foo.js"></script> |
| 9 <script> | 9 <script> |
| 10 | 10 |
| 11 function test() | 11 function test() |
| 12 { | 12 { |
| 13 Runtime.experiments.enableForTest("persistence2"); | 13 Runtime.experiments.enableForTest("persistence2"); |
| 14 var sourcesNavigator = new WebInspector.SourcesNavigatorView(); | 14 var sourcesNavigator = new Sources.SourcesNavigatorView(); |
| 15 sourcesNavigator.show(WebInspector.inspectorView.element); | 15 sourcesNavigator.show(UI.inspectorView.element); |
| 16 var fs = new InspectorTest.TestFileSystem("file:///var/www"); | 16 var fs = new InspectorTest.TestFileSystem("file:///var/www"); |
| 17 var fsEntry = InspectorTest.addFooJSFile(fs); | 17 var fsEntry = InspectorTest.addFooJSFile(fs); |
| 18 | 18 |
| 19 InspectorTest.runTestSuite([ | 19 InspectorTest.runTestSuite([ |
| 20 function addFileSystem(next) | 20 function addFileSystem(next) |
| 21 { | 21 { |
| 22 fs.reportCreated(next); | 22 fs.reportCreated(next); |
| 23 }, | 23 }, |
| 24 | 24 |
| 25 function waitForUISourceCodes(next) | 25 function waitForUISourceCodes(next) |
| 26 { | 26 { |
| 27 var promises = [ | 27 var promises = [ |
| 28 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project
Types.Network), | 28 InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTyp
es.Network), |
| 29 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project
Types.FileSystem) | 29 InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTyp
es.FileSystem) |
| 30 ]; | 30 ]; |
| 31 Promise.all(promises).then(onUISourceCodesAdded); | 31 Promise.all(promises).then(onUISourceCodesAdded); |
| 32 | 32 |
| 33 function onUISourceCodesAdded() | 33 function onUISourceCodesAdded() |
| 34 { | 34 { |
| 35 InspectorTest.dumpNavigatorView(sourcesNavigator); | 35 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 36 next(); | 36 next(); |
| 37 } | 37 } |
| 38 }, | 38 }, |
| 39 | 39 |
| 40 function addFileMapping(next) | 40 function addFileMapping(next) |
| 41 { | 41 { |
| 42 InspectorTest.waitForBinding("foo.js").then(onBindingCreated); | 42 InspectorTest.waitForBinding("foo.js").then(onBindingCreated); |
| 43 WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "ht
tp://127.0.0.1:8000", "/"); | 43 Workspace.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http:
//127.0.0.1:8000", "/"); |
| 44 | 44 |
| 45 function onBindingCreated(binding) | 45 function onBindingCreated(binding) |
| 46 { | 46 { |
| 47 InspectorTest.dumpNavigatorView(sourcesNavigator); | 47 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 48 next(); | 48 next(); |
| 49 } | 49 } |
| 50 }, | 50 }, |
| 51 | 51 |
| 52 function removeFileMapping(next) | 52 function removeFileMapping(next) |
| 53 { | 53 { |
| 54 WebInspector.persistence.addEventListener(WebInspector.Persistence.E
vents.BindingRemoved, onBindingRemoved); | 54 Persistence.persistence.addEventListener(Persistence.Persistence.Eve
nts.BindingRemoved, onBindingRemoved); |
| 55 WebInspector.fileSystemMapping.removeFileMapping(fs.fileSystemPath,
"http://127.0.0.1:8000", "/"); | 55 Workspace.fileSystemMapping.removeFileMapping(fs.fileSystemPath, "ht
tp://127.0.0.1:8000", "/"); |
| 56 | 56 |
| 57 function onBindingRemoved(event) | 57 function onBindingRemoved(event) |
| 58 { | 58 { |
| 59 var binding = event.data; | 59 var binding = event.data; |
| 60 if (binding.network.name() !== "foo.js") | 60 if (binding.network.name() !== "foo.js") |
| 61 return | 61 return |
| 62 WebInspector.persistence.removeEventListener(WebInspector.Persis
tence.Events.BindingRemoved, onBindingRemoved); | 62 Persistence.persistence.removeEventListener(Persistence.Persiste
nce.Events.BindingRemoved, onBindingRemoved); |
| 63 InspectorTest.dumpNavigatorView(sourcesNavigator); | 63 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 64 next(); | 64 next(); |
| 65 } | 65 } |
| 66 }, | 66 }, |
| 67 ]); | 67 ]); |
| 68 }; | 68 }; |
| 69 </script> | 69 </script> |
| 70 </head> | 70 </head> |
| 71 <body onload="runTest()"> | 71 <body onload="runTest()"> |
| 72 <p>Verify that navigator view removes mapped UISourceCodes.</p> | 72 <p>Verify that navigator view removes mapped UISourceCodes.</p> |
| 73 </body> | 73 </body> |
| 74 </html> | 74 </html> |
| OLD | NEW |