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

Side by Side Diff: mojo/dart/test/validation_test.dart

Issue 951573002: Add validation test cases for struct versioning. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | mojo/public/cpp/bindings/tests/validation_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:convert'; 6 import 'dart:convert';
7 import 'dart:isolate'; 7 import 'dart:isolate';
8 import 'dart:mojo_bindings'; 8 import 'dart:mojo_bindings';
9 import 'dart:mojo_builtin' as builtin; 9 import 'dart:mojo_builtin' as builtin;
10 import 'dart:mojo_core'; 10 import 'dart:mojo_core';
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 assert(r.isOk); 72 assert(r.isOk);
73 73
74 completer.future.then((_) { 74 completer.future.then((_) {
75 assert(expected == "PASS"); 75 assert(expected == "PASS");
76 conformanceImpl.close(); 76 conformanceImpl.close();
77 pipe.endpoints[0].handle.close(); 77 pipe.endpoints[0].handle.close();
78 handles.forEach((h) => h.close()); 78 handles.forEach((h) => h.close());
79 }); 79 });
80 } 80 }
81 81
82 // TODO(zra, yzshen): Some struct versioning tests (with "mthd11" in their
83 // names) are skipped.
82 Iterable<String> getTestFiles(String path, String prefix) => 84 Iterable<String> getTestFiles(String path, String prefix) =>
83 builtin.enumerateFiles(path) 85 builtin.enumerateFiles(path)
84 .where((s) => s.startsWith(prefix) && s.endsWith(".data")) 86 .where((s) => s.startsWith(prefix) && s.endsWith(".data") &&
87 !s.contains("mthd11"))
85 .map((s) => s.replaceFirst('.data', '')); 88 .map((s) => s.replaceFirst('.data', ''));
86 89
87 main(List args) { 90 main(List args) {
88 int handle = args[0]; 91 int handle = args[0];
89 String path = args[1]; 92 String path = args[1];
90 93
91 // First test the parser. 94 // First test the parser.
92 parser.parserTests(); 95 parser.parserTests();
93 96
94 // Then run the conformance tests. 97 // Then run the conformance tests.
95 getTestFiles(path, "$path/conformance_").forEach((test) { 98 getTestFiles(path, "$path/conformance_").forEach((test) {
96 runTest(test, readAndParseTest(test), expectedResult(test)); 99 runTest(test, readAndParseTest(test), expectedResult(test));
97 }); 100 });
98 // TODO(zra): Add integration tests when they no longer rely on Client=. 101 // TODO(zra): Add integration tests when they no longer rely on Client=.
99 } 102 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/cpp/bindings/tests/validation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698