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

Unified Diff: third_party/pkg/angular/test/io/expression_extractor_spec.dart

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 12 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: third_party/pkg/angular/test/io/expression_extractor_spec.dart
diff --git a/third_party/pkg/angular/test/io/expression_extractor_spec.dart b/third_party/pkg/angular/test/io/expression_extractor_spec.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5d3d7fc6baa2d49444f5a0af96f7031154886467
--- /dev/null
+++ b/third_party/pkg/angular/test/io/expression_extractor_spec.dart
@@ -0,0 +1,47 @@
+library ng.tool.expression_extractor_spec;
+
+import 'package:di/di.dart';
+import 'package:di/dynamic_injector.dart';
+import 'package:angular/tools/common.dart';
+import 'package:angular/tools/io.dart';
+import 'package:angular/tools/io_impl.dart';
+import 'package:angular/tools/source_crawler_impl.dart';
+import 'package:angular/tools/html_extractor.dart';
+import 'package:angular/tools/source_metadata_extractor.dart';
+import '../jasmine_syntax.dart';
+import 'package:unittest/unittest.dart';
+
+main() => describe('expression_extractor', () {
+ it('should extract all expressions from source and templates', () {
+ Module module = new Module();
+
+ Injector injector = new DynamicInjector(modules: [module],
+ allowImplicitInjection: true);
+
+ IoService ioService = new IoServiceImpl();
+ var sourceCrawler = new SourceCrawlerImpl(['packages/']);
+ var sourceMetadataExtractor = new SourceMetadataExtractor(sourceCrawler);
+ List<DirectiveInfo> directives =
+ sourceMetadataExtractor
+ .gatherDirectiveInfo('test/io/test_files/main.dart');
+ var htmlExtractor = new HtmlExpressionExtractor(directives, ioService);
+ htmlExtractor.crawl('test/io/test_files/');
+
+ var expressions = htmlExtractor.expressions;
+ expect(expressions, unorderedEquals([
+ 'ctrl.expr',
+ 'ctrl.anotherExpression',
+ 'ctrl.callback',
+ 'ctrl.twoWayStuff',
+ 'attr',
+ 'expr',
+ 'anotherExpression',
+ 'callback',
+ 'twoWayStuff',
+ 'exported + expression',
+ 'ctrl.inline.template.expression',
+ 'ngIfCondition',
+ 'ctrl.if'
+ ]));
+ });
+});

Powered by Google App Engine
This is Rietveld 408576698