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

Unified Diff: pkg/polymer/test/transform/code_extractor_test.dart

Issue 23478015: Apply several phases only to entrypoint files (which currently are identified as (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/test/transform/code_extractor_test.dart
diff --git a/pkg/polymer/test/transform/code_extractor_test.dart b/pkg/polymer/test/transform/code_extractor_test.dart
index 9619684ab8f6fa430a86703bf8ad5036391180eb..72aefb94ffaf35715c2bd81e8aabe41b745d6862 100644
--- a/pkg/polymer/test/transform/code_extractor_test.dart
+++ b/pkg/polymer/test/transform/code_extractor_test.dart
@@ -13,60 +13,76 @@ void main() {
useCompactVMConfiguration();
testPhases('no changes', [[new InlineCodeExtractor()]], {
- 'a|test.html': '<!DOCTYPE html><html></html>',
+ 'a|web/test.html': '<!DOCTYPE html><html></html>',
}, {
- 'a|test.html': '<!DOCTYPE html><html></html>',
+ 'a|web/test.html': '<!DOCTYPE html><html></html>',
});
- testPhases('single script, no lib', [[new InlineCodeExtractor()]], {
- 'a|test.html':
+ testPhases('single script, no library in script',
+ [[new InlineCodeExtractor()]], {
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart">main() { }</script>',
}, {
- 'a|test.html':
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart" src="test.html.0.dart"></script>'
'</head><body></body></html>',
- 'a|test.html.0.dart':
- 'library test_html_0;\nmain() { }',
+ 'a|web/test.html.0.dart':
+ 'library web_test_html_0;\nmain() { }',
});
- testPhases('single script, with lib', [[new InlineCodeExtractor()]], {
- 'a|test.html':
+ testPhases('single script, with library', [[new InlineCodeExtractor()]], {
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart">library f;\nmain() { }</script>',
}, {
- 'a|test.html':
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart" src="test.html.0.dart"></script>'
'</head><body></body></html>',
- 'a|test.html.0.dart':
+ 'a|web/test.html.0.dart':
+ 'library f;\nmain() { }',
+ });
+
+ testPhases('under lib/ directory also transformed',
+ [[new InlineCodeExtractor()]], {
+ '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" src="test.html.0.dart"></script>'
+ '</head><body></body></html>',
+
+ 'a|lib/test.html.0.dart':
'library f;\nmain() { }',
});
testPhases('multiple scripts', [[new InlineCodeExtractor()]], {
- 'a|test.html':
+ '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|test.html':
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart" src="test.html.0.dart"></script>'
'<script type="application/dart" src="test.html.1.dart"></script>'
'</head><body></body></html>',
- 'a|test.html.0.dart':
+ 'a|web/test.html.0.dart':
'library a1;\nmain1() { }',
- 'a|test.html.1.dart':
+ 'a|web/test.html.1.dart':
'library a2;\nmain2() { }',
});
testPhases('multiple deeper scripts', [[new InlineCodeExtractor()]], {
- 'a|test.html':
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart">main1() { }</script>'
'</head><body><div>'
@@ -75,7 +91,7 @@ void main() {
'<script type="application/dart">main3() { }</script>'
'</div></div>'
}, {
- 'a|test.html':
+ 'a|web/test.html':
'<!DOCTYPE html><html><head>'
'<script type="application/dart" src="test.html.0.dart"></script>'
'</head><body><div>'
@@ -84,13 +100,13 @@ void main() {
'<script type="application/dart" src="test.html.2.dart"></script>'
'</div></div></body></html>',
- 'a|test.html.0.dart':
- 'library test_html_0;\nmain1() { }',
+ 'a|web/test.html.0.dart':
+ 'library web_test_html_0;\nmain1() { }',
- 'a|test.html.1.dart':
- 'library test_html_1;\nmain2() { }',
+ 'a|web/test.html.1.dart':
+ 'library web_test_html_1;\nmain2() { }',
- 'a|test.html.2.dart':
- 'library test_html_2;\nmain3() { }',
+ 'a|web/test.html.2.dart':
+ 'library web_test_html_2;\nmain3() { }',
});
}

Powered by Google App Engine
This is Rietveld 408576698