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

Side by Side Diff: packages/polymer/test/build/build_log_combiner_test.dart

Issue 2312183003: Removed Polymer from Observatory deps (Closed)
Patch Set: Created 4 years, 3 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
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:code_transformers/messages/build_logger.dart'
8 show LOG_EXTENSION;
9 import 'package:polymer/src/build/build_log_combiner.dart';
10 import 'package:polymer/src/build/common.dart';
11 import 'package:unittest/compact_vm_config.dart';
12 import 'package:unittest/unittest.dart';
13
14 import 'common.dart';
15
16 final options = new TransformOptions(injectBuildLogsInOutput: true);
17 final phases = [[new BuildLogCombiner(options)]];
18
19 void main() {
20 useCompactVMConfiguration();
21
22 testPhases('combines multiple logs', phases, {
23 'a|web/test.html': '<!DOCTYPE html><html></html>',
24 'a|web/test.html$LOG_EXTENSION.1':
25 '{"foo#0":[${_logString('Info', 0, 'foo')}]}',
26 'a|web/test.html$LOG_EXTENSION.2':
27 '{"foo#2":[${_logString('Warning', 2, 'bar')}]}',
28 'a|web/test.html$LOG_EXTENSION.3': '{'
29 '"foo#2":[${_logString('Error', 2, 'baz1')}],'
30 '"foo#44":[${_logString('Error', 44, 'baz2')}]'
31 '}',
32 }, {
33 'a|web/test.html': '<!DOCTYPE html><html></html>',
34 'a|web/test.html$LOG_EXTENSION': '{'
35 '"foo#0":[${_logString('Info', 0, 'foo')}],'
36 '"foo#2":[${_logString('Warning', 2, 'bar')},'
37 '${_logString('Error', 2, 'baz1')}],'
38 '"foo#44":[${_logString('Error', 44, 'baz2')}]'
39 '}',
40 });
41 }
42
43 String _logString(String level, int id, String message) =>
44 '{"level":"$level","message":{"id":"foo#$id","snippet":"$message"}}';
OLDNEW
« no previous file with comments | « packages/polymer/test/build/all_phases_test.dart ('k') | packages/polymer/test/build/common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698