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

Side by Side Diff: pkg/polymer/test/build/build_log_combiner_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS 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 library polymer.test.build.build_log_combiner_test;
6
7 import 'package:polymer/src/build/common.dart';
8 import 'package:polymer/src/build/build_log_combiner.dart';
9 import 'package:unittest/compact_vm_config.dart';
10 import 'package:unittest/unittest.dart';
11
12 import 'common.dart';
13
14 final options = new TransformOptions(injectBuildLogsInOutput: true);
15 final phases = [[new BuildLogCombiner(options)]];
16
17 void main() {
18 useCompactVMConfiguration();
19
20 testPhases('combines multiple logs', phases, {
21 'a|web/test.html': '<!DOCTYPE html><html></html>',
22 'a|web/test.html$LOG_EXTENSION.1': '[${_logString('Info', 'foo')}]',
23 'a|web/test.html$LOG_EXTENSION.2': '[${_logString('Warning', 'bar')}]',
24 'a|web/test.html$LOG_EXTENSION.3': '[${_logString('Error', 'baz')}]',
25 }, {
26 'a|web/test.html': '<!DOCTYPE html><html></html>',
27 'a|web/test.html$LOG_EXTENSION':
28 '[${_logString('Info', 'foo')},'
29 '${_logString('Warning', 'bar')},'
30 '${_logString('Error', 'baz')}]',
31 });
32 }
33
34 String _logString(String level, String message) =>
35 '{"level":"$level","message":"$message"}';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698