| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.protocol; | 5 library test.protocol; |
| 6 | 6 |
| 7 import 'dart:convert'; | 7 import 'dart:convert'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/constants.dart'; | 9 import 'package:analysis_server/src/constants.dart'; |
| 10 import 'package:analysis_server/src/protocol.dart'; | 10 import 'package:analysis_server/src/protocol.dart'; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 105 } |
| 106 | 106 |
| 107 void test_fromJson() { | 107 void test_fromJson() { |
| 108 var json = { | 108 var json = { |
| 109 CODE: RequestErrorCode.INVALID_PARAMETER.name, | 109 CODE: RequestErrorCode.INVALID_PARAMETER.name, |
| 110 MESSAGE: 'foo', | 110 MESSAGE: 'foo', |
| 111 DATA: { | 111 DATA: { |
| 112 'ints': [1, 2, 3] | 112 'ints': [1, 2, 3] |
| 113 } | 113 } |
| 114 }; | 114 }; |
| 115 RequestError error = new RequestError.fromJson(new ResponseDecoder(), '', | 115 RequestError error = new RequestError.fromJson(new ResponseDecoder(null), ''
, |
| 116 json); | 116 json); |
| 117 expect(error.code, RequestErrorCode.INVALID_PARAMETER); | 117 expect(error.code, RequestErrorCode.INVALID_PARAMETER); |
| 118 expect(error.message, "foo"); | 118 expect(error.message, "foo"); |
| 119 expect(error.data['ints'], [1, 2, 3]); | 119 expect(error.data['ints'], [1, 2, 3]); |
| 120 } | 120 } |
| 121 | 121 |
| 122 void test_toJson() { | 122 void test_toJson() { |
| 123 RequestError error = new RequestError( | 123 RequestError error = new RequestError( |
| 124 RequestErrorCode.UNKNOWN_REQUEST, 'msg', data: {}); | 124 RequestErrorCode.UNKNOWN_REQUEST, 'msg', data: {}); |
| 125 error.data['answer'] = 42; | 125 error.data['answer'] = 42; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 void test_fromJson_withResult() { | 257 void test_fromJson_withResult() { |
| 258 Response original = new Response('myId', result: {'foo': 'bar'}); | 258 Response original = new Response('myId', result: {'foo': 'bar'}); |
| 259 Response response = new Response.fromJson(original.toJson()); | 259 Response response = new Response.fromJson(original.toJson()); |
| 260 expect(response.id, equals('myId')); | 260 expect(response.id, equals('myId')); |
| 261 Map<String, Object> result = response.toJson()['result']; | 261 Map<String, Object> result = response.toJson()['result']; |
| 262 expect(result.length, equals(1)); | 262 expect(result.length, equals(1)); |
| 263 expect(result['foo'], equals('bar')); | 263 expect(result['foo'], equals('bar')); |
| 264 } | 264 } |
| 265 } | 265 } |
| OLD | NEW |