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

Unified Diff: pkg/analysis_server/test/protocol_test.dart

Issue 376693002: Extract testing utilities into a separate package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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/analysis_server/test/protocol_test.dart
diff --git a/pkg/analysis_server/test/protocol_test.dart b/pkg/analysis_server/test/protocol_test.dart
index 985a8b39c47e9425ef02fd242f72958b132b71e0..9e6036b74c1f7256ac7793f89145d3607d490ad4 100644
--- a/pkg/analysis_server/test/protocol_test.dart
+++ b/pkg/analysis_server/test/protocol_test.dart
@@ -7,10 +7,9 @@ library test.protocol;
import 'dart:convert';
import 'package:analysis_server/src/protocol.dart';
+import 'package:analysis_testing/reflective_tests.dart';
import 'package:unittest/unittest.dart';
-import 'reflective_tests.dart';
-
Matcher _throwsRequestFailure = throwsA(new isInstanceOf<RequestFailure>());
@@ -146,13 +145,6 @@ class RequestDatumTest {
equals(['foo', 'bar']));
}
- void test_isList() {
- expect(makeDatum(3).isList, isFalse);
- expect(makeDatum(null).isList, isTrue);
- expect(makeDatum([]).isList, isTrue);
- expect(makeDatum(['foo', 'bar']).isList, isTrue);
- }
-
void test_asList_nonList() {
expect(() => makeDatum(3).asList((datum) => null), _throwsInvalidParameter);
}
@@ -166,14 +158,6 @@ class RequestDatumTest {
expect(() => makeDatum(3).asString(), _throwsInvalidParameter);
}
- void test_isStringList() {
- expect(makeDatum(['foo', 'bar']).isStringList, isTrue);
- expect(makeDatum([]).isStringList, isTrue);
- expect(makeDatum(null).isStringList, isTrue);
- expect(makeDatum(['foo', 1]).isStringList, isFalse);
- expect(makeDatum({}).isStringList, isFalse);
- }
-
void test_asStringList() {
expect(makeDatum(['foo', 'bar']).asStringList(), equals(['foo', 'bar']));
expect(makeDatum([]).asStringList(), equals([]));
@@ -182,24 +166,6 @@ class RequestDatumTest {
expect(() => makeDatum({}).asStringList(), _throwsInvalidParameter);
}
- void test_isStringListMap() {
- expect(makeDatum({
- 'key1': ['value11', 'value12'],
- 'key2': ['value21', 'value22']
- }).isStringListMap, isTrue);
- expect(makeDatum({
- 'key1': 10,
- 'key2': 20
- }).isStringListMap, isFalse);
- expect(makeDatum({
- 'key1': [11, 12],
- 'key2': [21, 22]
- }).isStringListMap, isFalse);
- expect(makeDatum({}).isStringListMap, isTrue);
- expect(makeDatum(null).isStringListMap, isTrue);
- expect(makeDatum(3).isStringListMap, isFalse);
- }
-
void test_asStringListMap() {
{
var map = {
@@ -224,42 +190,6 @@ class RequestDatumTest {
}
}
- void test_isMap() {
- expect(makeDatum({
- 'key1': 'value1',
- 'key2': 'value2'
- }).isMap, isTrue);
- expect(makeDatum({}).isMap, isTrue);
- expect(makeDatum(null).isMap, isTrue);
- expect(makeDatum({
- 'key1': 'value1',
- 'key2': 2
- }).isMap, isTrue);
- expect(makeDatum({
- 'key1': 1,
- 'key2': 2
- }).isMap, isTrue);
- expect(makeDatum([]).isMap, isFalse);
- }
-
- void test_isStringMap() {
- expect(makeDatum({
- 'key1': 'value1',
- 'key2': 'value2'
- }).isStringMap, isTrue);
- expect(makeDatum({}).isStringMap, isTrue);
- expect(makeDatum(null).isStringMap, isTrue);
- expect(makeDatum({
- 'key1': 'value1',
- 'key2': 2
- }).isStringMap, isFalse);
- expect(makeDatum({
- 'key1': 1,
- 'key2': 2
- }).isStringMap, isFalse);
- expect(makeDatum([]).isMap, isFalse);
- }
-
void test_asStringMap() {
expect(makeDatum({
'key1': 'value1',
@@ -292,7 +222,7 @@ class RequestDatumTest {
}), _throwsInvalidParameter);
}
- void test_forEachMap_null() {
+ void test_forEachMap_null() {
makeDatum(null).forEachMap((key, value) {
fail('Empty map should not be iterated');
});
@@ -340,7 +270,7 @@ class RequestDatumTest {
expect(makeDatum(null).hasKey('foo'), isFalse);
}
- void test_indexOperator_hasKey() {
+ void test_indexOperator_hasKey() {
var indexResult = makeDatum({
'foo': 'bar'
})['foo'];
@@ -349,10 +279,6 @@ class RequestDatumTest {
expect(indexResult.path, equals('myPath.foo'));
}
- void test_indexOperator_null() {
- expect(() => makeDatum(null)['foo'], _throwsInvalidParameter);
- }
-
void test_indexOperator_missingKey() {
expect(() => makeDatum({
'foo': 'bar'
@@ -363,6 +289,79 @@ class RequestDatumTest {
expect(() => makeDatum(1)['foo'], _throwsInvalidParameter);
}
+ void test_indexOperator_null() {
+ expect(() => makeDatum(null)['foo'], _throwsInvalidParameter);
+ }
+
+ void test_isList() {
+ expect(makeDatum(3).isList, isFalse);
+ expect(makeDatum(null).isList, isTrue);
+ expect(makeDatum([]).isList, isTrue);
+ expect(makeDatum(['foo', 'bar']).isList, isTrue);
+ }
+
+ void test_isMap() {
+ expect(makeDatum({
+ 'key1': 'value1',
+ 'key2': 'value2'
+ }).isMap, isTrue);
+ expect(makeDatum({}).isMap, isTrue);
+ expect(makeDatum(null).isMap, isTrue);
+ expect(makeDatum({
+ 'key1': 'value1',
+ 'key2': 2
+ }).isMap, isTrue);
+ expect(makeDatum({
+ 'key1': 1,
+ 'key2': 2
+ }).isMap, isTrue);
+ expect(makeDatum([]).isMap, isFalse);
+ }
+
+ void test_isStringList() {
+ expect(makeDatum(['foo', 'bar']).isStringList, isTrue);
+ expect(makeDatum([]).isStringList, isTrue);
+ expect(makeDatum(null).isStringList, isTrue);
+ expect(makeDatum(['foo', 1]).isStringList, isFalse);
+ expect(makeDatum({}).isStringList, isFalse);
+ }
+
+ void test_isStringListMap() {
+ expect(makeDatum({
+ 'key1': ['value11', 'value12'],
+ 'key2': ['value21', 'value22']
+ }).isStringListMap, isTrue);
+ expect(makeDatum({
+ 'key1': 10,
+ 'key2': 20
+ }).isStringListMap, isFalse);
+ expect(makeDatum({
+ 'key1': [11, 12],
+ 'key2': [21, 22]
+ }).isStringListMap, isFalse);
+ expect(makeDatum({}).isStringListMap, isTrue);
+ expect(makeDatum(null).isStringListMap, isTrue);
+ expect(makeDatum(3).isStringListMap, isFalse);
+ }
+
+ void test_isStringMap() {
+ expect(makeDatum({
+ 'key1': 'value1',
+ 'key2': 'value2'
+ }).isStringMap, isTrue);
+ expect(makeDatum({}).isStringMap, isTrue);
+ expect(makeDatum(null).isStringMap, isTrue);
+ expect(makeDatum({
+ 'key1': 'value1',
+ 'key2': 2
+ }).isStringMap, isFalse);
+ expect(makeDatum({
+ 'key1': 1,
+ 'key2': 2
+ }).isStringMap, isFalse);
+ expect(makeDatum([]).isMap, isFalse);
+ }
+
static RequestDatum makeDatum(dynamic datum) {
return new RequestDatum(request, 'myPath', datum);
}

Powered by Google App Engine
This is Rietveld 408576698