| Index: pkg/polymer/test/build/code_extractor.dart | 
| diff --git a/pkg/polymer/test/build/code_extractor.dart b/pkg/polymer/test/build/code_extractor.dart | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..a375ff0f07f835a7552620d58f2e4ea4c738258e | 
| --- /dev/null | 
| +++ b/pkg/polymer/test/build/code_extractor.dart | 
| @@ -0,0 +1,230 @@ | 
| +// Copyright (c) 2013, the Dart project authors.  Please see the AUTHORS file | 
| +// for details. All rights reserved. Use of this source code is governed by a | 
| +// BSD-style license that can be found in the LICENSE file. | 
| + | 
| +// TODO(jmesserly): merge into import_inliner_test.dart. | 
| +// Keeping here for now so it's easier to see the diff. | 
| +part of polymer.test.build.import_inliner_test; | 
| + | 
| +void codeExtractorTests() { | 
| +  testPhases('no changes', phases, { | 
| +      'a|web/test.html': '<!DOCTYPE html><html></html>', | 
| +    }, { | 
| +      'a|web/test.html': '<!DOCTYPE html><html></html>', | 
| +    }); | 
| + | 
| +  testPhases('single script, no library in script', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">main() { }</script>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart" src="test.html.0.dart"></script>' | 
| +          '</body></html>', | 
| + | 
| +      'a|web/test.html.0.dart': | 
| +          'library a.web.test_html;\nmain() { }', | 
| +    }); | 
| + | 
| +  testPhases('single script, with library', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">library f;\nmain() { }</script>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart" src="test.html.0.dart"></script>' | 
| +          '</body></html>', | 
| + | 
| +      'a|web/test.html.0.dart': | 
| +          'library f;\nmain() { }', | 
| +    }); | 
| + | 
| +  testPhases('under lib/ directory not transformed', phases, { | 
| +      'a|lib/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">library f;\nmain() { }</script>', | 
| +    }, { | 
| +      'a|lib/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">library f;\nmain() { }</script>' | 
| +    }); | 
| + | 
| +  testPhases('multiple scripts - only emit first', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">library a1;\nmain1() { }</script>' | 
| +          '<script type="application/dart">library a2;\nmain2() { }</script>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart" src="test.html.0.dart"></script>' | 
| +          '</body></html>', | 
| + | 
| +      'a|web/test.html.0.dart': | 
| +          'library a1;\nmain1() { }', | 
| +    }); | 
| + | 
| +  testPhases('multiple deeper scripts', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<script type="application/dart">main1() { }</script>' | 
| +          '</head><body><div>' | 
| +          '<script type="application/dart">main2() { }</script>' | 
| +          '</div><div><div>' | 
| +          '<script type="application/dart">main3() { }</script>' | 
| +          '</div></div>' | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '</head><body>' | 
| +          '<script type="application/dart" src="test.html.0.dart"></script>' | 
| +          '<div></div><div><div>' | 
| +          '</div></div></body></html>', | 
| + | 
| +      'a|web/test.html.0.dart': | 
| +          'library a.web.test_html;\nmain1() { }', | 
| +    }); | 
| + | 
| +  testPhases('multiple imported scripts', phases, { | 
| +      'a|web/test.html': | 
| +          '<link rel="import" href="test2.html">' | 
| +          '<link rel="import" href="bar/test.html">' | 
| +          '<link rel="import" href="packages/a/foo/test.html">' | 
| +          '<link rel="import" href="packages/b/test.html">', | 
| +      'a|web/test2.html': | 
| +          '<script type="application/dart">main1() { }', | 
| +      'a|web/bar/test.html': | 
| +          '<script type="application/dart">main2() { }', | 
| +      'a|lib/foo/test.html': | 
| +          '<script type="application/dart">main3() { }', | 
| +      'b|lib/test.html': | 
| +          '<script type="application/dart">main4() { }' | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<html><head></head><body></body></html>', | 
| +      'a|web/test.html.scriptUrls': JSON.encode([ | 
| +        ["a", "web/test.html.0.dart"], | 
| +        ["a", "web/test.html.1.dart"], | 
| +        ["a", "web/test.html.2.dart"], | 
| +        ["a", "web/test.html.3.dart"], | 
| +      ]), | 
| +      'a|web/test.html.0.dart': 'library a.web.test2_html;\nmain1() { }', | 
| +      'a|web/test.html.1.dart': 'library a.web.bar.test_html;\nmain2() { }', | 
| +      'a|web/test.html.2.dart': 'library a.foo.test_html;\nmain3() { }', | 
| +      'a|web/test.html.3.dart': 'library b.test_html;\nmain4() { }' | 
| +    }); | 
| + | 
| +  group('fixes import/export/part URIs', dartUriTests); | 
| +} | 
| + | 
| +dartUriTests() { | 
| + | 
| +  testPhases('from web folder', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<link rel="import" href="test2/foo.html">' | 
| +          '</head><body></body></html>', | 
| +      'a|web/test2/foo.html': | 
| +        '<!DOCTYPE html><html><head></head><body>' | 
| +        '<script type="application/dart">' | 
| +        "import 'package:qux/qux.dart';" | 
| +        "import 'foo.dart';" | 
| +        "export 'bar.dart';" | 
| +        "part 'baz.dart';" | 
| +        '</script>' | 
| +        '</body></html>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body></body></html>', | 
| +      'a|web/test.html.scriptUrls': '[["a","web/test.html.0.dart"]]', | 
| +      'a|web/test.html.0.dart': | 
| +          "library a.web.test2.foo_html;\n" | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'test2/foo.dart';" | 
| +          "export 'test2/bar.dart';" | 
| +          "part 'test2/baz.dart';", | 
| +      'a|web/test2/foo.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart" src="foo.html.0.dart"></script>' | 
| +          '</body></html>', | 
| +      'a|web/test2/foo.html.scriptUrls': '[]', | 
| +      'a|web/test2/foo.html.0.dart': | 
| +          "library a.web.test2.foo_html;\n" | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'foo.dart';" | 
| +          "export 'bar.dart';" | 
| +          "part 'baz.dart';", | 
| +    }); | 
| + | 
| +  testPhases('from lib folder', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<link rel="import" href="packages/a/test2/foo.html">' | 
| +          '</head><body></body></html>', | 
| +      'a|lib/test2/foo.html': | 
| +        '<!DOCTYPE html><html><head></head><body>' | 
| +        '<script type="application/dart">' | 
| +        "import 'package:qux/qux.dart';" | 
| +        "import 'foo.dart';" | 
| +        "export 'bar.dart';" | 
| +        "part 'baz.dart';" | 
| +        '</script>' | 
| +        '</body></html>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body></body></html>', | 
| +      'a|web/test.html.scriptUrls': '[["a","web/test.html.0.dart"]]', | 
| +      'a|web/test.html.0.dart': | 
| +          "library a.test2.foo_html;\n" | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'package:a/test2/foo.dart';" | 
| +          "export 'package:a/test2/bar.dart';" | 
| +          "part 'package:a/test2/baz.dart';", | 
| +      'a|lib/test2/foo.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart">' | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'foo.dart';" | 
| +          "export 'bar.dart';" | 
| +          "part 'baz.dart';" | 
| +          '</script>' | 
| +          '</body></html>', | 
| +    }); | 
| + | 
| +  testPhases('from another pkg', phases, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head>' | 
| +          '<link rel="import" href="packages/b/test2/foo.html">' | 
| +          '</head><body></body></html>', | 
| +      'b|lib/test2/foo.html': | 
| +        '<!DOCTYPE html><html><head></head><body>' | 
| +        '<script type="application/dart">' | 
| +        "import 'package:qux/qux.dart';" | 
| +        "import 'foo.dart';" | 
| +        "export 'bar.dart';" | 
| +        "part 'baz.dart';" | 
| +        '</script>' | 
| +        '</body></html>', | 
| +    }, { | 
| +      'a|web/test.html': | 
| +          '<!DOCTYPE html><html><head></head><body></body></html>', | 
| +      'a|web/test.html.scriptUrls': '[["a","web/test.html.0.dart"]]', | 
| +      'a|web/test.html.0.dart': | 
| +          "library b.test2.foo_html;\n" | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'package:b/test2/foo.dart';" | 
| +          "export 'package:b/test2/bar.dart';" | 
| +          "part 'package:b/test2/baz.dart';", | 
| +      'b|lib/test2/foo.html': | 
| +          '<!DOCTYPE html><html><head></head><body>' | 
| +          '<script type="application/dart">' | 
| +          "import 'package:qux/qux.dart';" | 
| +          "import 'foo.dart';" | 
| +          "export 'bar.dart';" | 
| +          "part 'baz.dart';" | 
| +          '</script>' | 
| +          '</body></html>', | 
| +    }); | 
| +} | 
|  |