| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import 'package:path/path.dart' as path; | |
| 6 import 'package:scheduled_test/scheduled_test.dart'; | |
| 7 | |
| 8 import '../descriptor.dart' as d; | |
| 9 import '../serve/utils.dart'; | |
| 10 import '../test_pub.dart'; | |
| 11 | |
| 12 main() { | |
| 13 initConfig(); | |
| 14 | |
| 15 // This test is a bit shaky. Since dart2js is free to inline things, it's | |
| 16 // not precise as to which source libraries will actually be referenced in | |
| 17 // the source map. But this tries to use a type in the core library | |
| 18 // (StringBuffer) and validate that its source ends up in the source map. | |
| 19 integration( | |
| 20 "Dart core libraries are available to source maps when the " | |
| 21 "build directory is a subdirectory", | |
| 22 () { | |
| 23 d.dir( | |
| 24 appPath, | |
| 25 [ | |
| 26 d.appPubspec(), | |
| 27 d.dir( | |
| 28 "web", | |
| 29 [ | |
| 30 d.dir( | |
| 31 "sub", | |
| 32 [ | |
| 33 d.file( | |
| 34 "main.dart", | |
| 35 "main() => new StringBuffer().writeAll(['s']);")
])])]).create(); | |
| 36 | |
| 37 var webSub = path.join("web", "sub"); | |
| 38 pubServe(args: [webSub]); | |
| 39 | |
| 40 requestShouldSucceed( | |
| 41 "main.dart.js.map", | |
| 42 contains(r"packages/$sdk/lib/core/string_buffer.dart"), | |
| 43 root: webSub); | |
| 44 requestShouldSucceed( | |
| 45 r"packages/$sdk/lib/core/string_buffer.dart", | |
| 46 contains("class StringBuffer"), | |
| 47 root: webSub); | |
| 48 | |
| 49 endPubServe(); | |
| 50 }); | |
| 51 } | |
| OLD | NEW |