OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "web/tests/WebUnitTests.h" | 32 #include "web/tests/WebUnitTests.h" |
33 | 33 |
34 #include "bindings/core/v8/V8GCController.h" | 34 #include "bindings/core/v8/V8GCController.h" |
| 35 #include "bindings/core/v8/V8Initializer.h" |
35 #include <base/bind.h> | 36 #include <base/bind.h> |
36 #include <base/message_loop/message_loop.h> | 37 #include <base/message_loop/message_loop.h> |
37 #include <base/run_loop.h> | 38 #include <base/run_loop.h> |
38 #include <base/test/launcher/unit_test_launcher.h> | 39 #include <base/test/launcher/unit_test_launcher.h> |
39 #include <base/test/test_suite.h> | 40 #include <base/test/test_suite.h> |
40 #include <v8.h> | 41 #include <v8.h> |
41 | 42 |
42 namespace blink { | 43 namespace blink { |
43 | 44 |
44 namespace { | 45 namespace { |
45 | 46 |
46 int runHelper(base::TestSuite* testSuite, void (*preTestHook)(void), void (*post
TestHook)(void)) | 47 int runHelper(base::TestSuite* testSuite, void (*preTestHook)(void), void (*post
TestHook)(void)) |
47 { | 48 { |
48 preTestHook(); | 49 preTestHook(); |
49 int result = testSuite->Run(); | 50 int result = testSuite->Run(); |
50 | 51 |
51 // Tickle EndOfTaskRunner which among other things will flush the queue | 52 // Tickle EndOfTaskRunner which among other things will flush the queue |
52 // of error messages via V8Initializer::reportRejectedPromisesOnMainThread. | 53 // of error messages via V8Initializer::reportRejectedPromisesOnMainThread. |
53 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(&base::DoNothin
g)); | 54 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(&base::DoNothin
g)); |
54 base::RunLoop().RunUntilIdle(); | 55 base::RunLoop().RunUntilIdle(); |
55 | 56 |
| 57 // Clear out any leftover, uncollected promises. |
| 58 V8Initializer::disposeRejectedPromisesOnMainThread(); |
| 59 |
56 // Collect garbage in order to release mock objects referred from v8 or | 60 // Collect garbage in order to release mock objects referred from v8 or |
57 // Oilpan heap. Otherwise false mock leaks will be reported. | 61 // Oilpan heap. Otherwise false mock leaks will be reported. |
58 V8GCController::collectAllGarbageForTesting(v8::Isolate::GetCurrent()); | 62 V8GCController::collectAllGarbageForTesting(v8::Isolate::GetCurrent()); |
59 | 63 |
60 postTestHook(); | 64 postTestHook(); |
61 | 65 |
62 return result; | 66 return result; |
63 } | 67 } |
64 | 68 |
65 } // namespace | 69 } // namespace |
66 | 70 |
67 int runWebTests(int argc, char** argv, void (*preTestHook)(void), void (*postTes
tHook)(void)) | 71 int runWebTests(int argc, char** argv, void (*preTestHook)(void), void (*postTes
tHook)(void)) |
68 { | 72 { |
69 base::TestSuite testSuite(argc, argv); | 73 base::TestSuite testSuite(argc, argv); |
70 return base::LaunchUnitTests(argc, argv, base::Bind(&runHelper, base::Unreta
ined(&testSuite), preTestHook, postTestHook)); | 74 return base::LaunchUnitTests(argc, argv, base::Bind(&runHelper, base::Unreta
ined(&testSuite), preTestHook, postTestHook)); |
71 } | 75 } |
72 | 76 |
73 } // namespace blink | 77 } // namespace blink |
OLD | NEW |