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

Unified Diff: pkg/polymer/test/build/import_inliner_test.dart

Issue 427623002: Polymer transformer logs now show on the frontend for pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: dont wrap the logger in release mode Created 6 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/build/import_inliner_test.dart
diff --git a/pkg/polymer/test/build/import_inliner_test.dart b/pkg/polymer/test/build/import_inliner_test.dart
index ffa1aa23b2f877a14b54c84b2a40b820d9c42a99..edbaa0ea6f3a50e2f6f5280a442b03eb1e2d25ab 100644
--- a/pkg/polymer/test/build/import_inliner_test.dart
+++ b/pkg/polymer/test/build/import_inliner_test.dart
@@ -4,7 +4,7 @@
library polymer.test.build.import_inliner_test;
-import 'dart:convert' show JSON;
+import 'dart:convert';
import 'package:polymer/src/build/common.dart';
import 'package:polymer/src/build/import_inliner.dart';
import 'package:unittest/compact_vm_config.dart';
@@ -654,30 +654,47 @@ void importTests() {
'<polymer-element>3</polymer-element></body></html>',
});
- testPhases("missing styles don't throw errors and are not inlined", phases, {
- 'a|web/test.html':
- '<!DOCTYPE html><html><head>'
- '<link rel="stylesheet" href="foo.css">'
- '</head></html>',
- }, {
- 'a|web/test.html':
- '<!DOCTYPE html><html><head></head><body>'
- '<link rel="stylesheet" href="foo.css">'
- '</body></html>',
- }, [
- 'warning: Failed to inline stylesheet: '
- 'Could not find asset a|web/foo.css. (web/test.html 0 27)',
- ]);
+ testLogOutput(
+ (options) => new ImportInliner(options),
+ "missing styles don't throw errors and are not inlined", {
+ 'a|web/test.html':
+ '<!DOCTYPE html><html><head>'
+ '<link rel="stylesheet" href="foo.css">'
+ '</head></html>',
+ }, {
+ 'a|web/test.html':
+ '<!DOCTYPE html><html><head></head><body>'
+ '<link rel="stylesheet" href="foo.css">'
+ '</body></html>',
+ }, [
+ 'warning: Failed to inline stylesheet: '
+ 'Could not find asset a|web/foo.css. (web/test.html 0 27)',
+ ]);
- testPhases("missing html imports throw errors", phases, {
- 'a|web/test.html':
- '<!DOCTYPE html><html><head>'
- '<link rel="import" href="foo.html">'
- '</head></html>',
- }, {}, [
- 'error: Failed to inline html import: '
- 'Could not find asset a|web/foo.html. (web/test.html 0 27)',
- ]);
+ testLogOutput(
+ (options) => new ImportInliner(options),
+ "missing html imports throw errors", {
+ 'a|web/test.html':
+ '<!DOCTYPE html><html><head>'
+ '<link rel="import" href="foo.html">'
+ '</head></html>',
+ }, {
+ 'a|web/test.html._buildLogs.1':
+ '[{'
+ '"level":"Error",'
+ '"message":"Failed to inline html import: '
+ 'Could not find asset a|web/foo.html.",'
+ '"assetId":{"package":"a","path":"web/foo.html"},'
+ '"span":{'
+ '"location":"web/test.html:1:28",'
+ '"text":"${new HtmlEscape().convert(
+ '<link rel="import" href="foo.html">')}"'
+ '}'
+ '}]',
+ }, [
+ 'error: Failed to inline html import: '
+ 'Could not find asset a|web/foo.html. (web/test.html 0 27)',
+ ]);
}
void stylesheetTests() {
@@ -992,21 +1009,25 @@ void urlAttributeTests() {
'</body></html>',
});
- testPhases('warnings are given about _* attributes', phases, {
- 'a|web/test.html':
- '<!DOCTYPE html><html><head></head><body>'
- '<img src="foo/{{bar}}">'
- '<a _href="foo/bar">test</a>'
- '</body></html>',
- }, {}, [
- 'warning: When using bindings with the "src" attribute you may '
- 'experience errors in certain browsers. Please use the "_src" '
- 'attribute instead. For more information, see http://goo.gl/5av8cU '
- '(web/test.html 0 40)',
- 'warning: The "_href" attribute is only supported when using bindings. '
- 'Please change to the "href" attribute. (web/test.html 0 63)',
- ]);
+ testLogOutput(
+ (options) => new ImportInliner(options),
+ 'warnings are given about _* attributes', {
+ 'a|web/test.html':
+ '<!DOCTYPE html><html><head></head><body>'
+ '<img src="foo/{{bar}}">'
+ '<a _href="foo/bar">test</a>'
+ '</body></html>',
+ }, {}, [
+ 'warning: When using bindings with the "src" attribute you may '
+ 'experience errors in certain browsers. Please use the "_src" '
+ 'attribute instead. For more information, see '
+ 'http://goo.gl/5av8cU (web/test.html 0 40)',
+ 'warning: The "_href" attribute is only supported when using '
+ 'bindings. Please change to the "href" attribute. '
+ '(web/test.html 0 63)',
+
+ ]);
testPhases('arbitrary bindings can exist in paths', phases, {
'a|web/test.html':
@@ -1082,4 +1103,4 @@ void entryPointTests() {
'<script rel="import" href="../../packages/b/bar/bar.js"></script>'
'</body></html>',
});
-}
+}

Powered by Google App Engine
This is Rietveld 408576698