| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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_utils; | 5 library test_utils; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 import 'dart:json' as json; | 9 import 'dart:json' as json; |
| 10 | 10 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 142 |
| 143 /// A matcher that matches JSON that parses to a value that matches the inner | 143 /// A matcher that matches JSON that parses to a value that matches the inner |
| 144 /// matcher. | 144 /// matcher. |
| 145 Matcher parse(matcher) => new _Parse(matcher); | 145 Matcher parse(matcher) => new _Parse(matcher); |
| 146 | 146 |
| 147 class _Parse extends BaseMatcher { | 147 class _Parse extends BaseMatcher { |
| 148 final Matcher _matcher; | 148 final Matcher _matcher; |
| 149 | 149 |
| 150 _Parse(this._matcher); | 150 _Parse(this._matcher); |
| 151 | 151 |
| 152 bool matches(item, MatchState matchState) { | 152 bool matches(item, Map matchState) { |
| 153 if (item is! String) return false; | 153 if (item is! String) return false; |
| 154 | 154 |
| 155 var parsed; | 155 var parsed; |
| 156 try { | 156 try { |
| 157 parsed = json.parse(item); | 157 parsed = json.parse(item); |
| 158 } catch (e) { | 158 } catch (e) { |
| 159 return false; | 159 return false; |
| 160 } | 160 } |
| 161 | 161 |
| 162 return _matcher.matches(parsed, matchState); | 162 return _matcher.matches(parsed, matchState); |
| 163 } | 163 } |
| 164 | 164 |
| 165 Description describe(Description description) { | 165 Description describe(Description description) { |
| 166 return description.add('parses to a value that ') | 166 return description.add('parses to a value that ') |
| 167 .addDescriptionOf(_matcher); | 167 .addDescriptionOf(_matcher); |
| 168 } | 168 } |
| 169 } | 169 } |
| 170 | 170 |
| 171 /// A matcher for HttpExceptions. | 171 /// A matcher for HttpExceptions. |
| 172 const isHttpException = const _HttpException(); | 172 const isHttpException = const _HttpException(); |
| 173 | 173 |
| 174 /// A matcher for functions that throw HttpException. | 174 /// A matcher for functions that throw HttpException. |
| 175 const Matcher throwsHttpException = | 175 const Matcher throwsHttpException = |
| 176 const Throws(isHttpException); | 176 const Throws(isHttpException); |
| 177 | 177 |
| 178 class _HttpException extends TypeMatcher { | 178 class _HttpException extends TypeMatcher { |
| 179 const _HttpException() : super("HttpException"); | 179 const _HttpException() : super("HttpException"); |
| 180 bool matches(item, MatchState matchState) => item is HttpException; | 180 bool matches(item, Map matchState) => item is HttpException; |
| 181 } | 181 } |
| 182 | 182 |
| 183 /// A matcher for RedirectLimitExceededExceptions. | 183 /// A matcher for RedirectLimitExceededExceptions. |
| 184 const isRedirectLimitExceededException = | 184 const isRedirectLimitExceededException = |
| 185 const _RedirectLimitExceededException(); | 185 const _RedirectLimitExceededException(); |
| 186 | 186 |
| 187 /// A matcher for functions that throw RedirectLimitExceededException. | 187 /// A matcher for functions that throw RedirectLimitExceededException. |
| 188 const Matcher throwsRedirectLimitExceededException = | 188 const Matcher throwsRedirectLimitExceededException = |
| 189 const Throws(isRedirectLimitExceededException); | 189 const Throws(isRedirectLimitExceededException); |
| 190 | 190 |
| 191 class _RedirectLimitExceededException extends TypeMatcher { | 191 class _RedirectLimitExceededException extends TypeMatcher { |
| 192 const _RedirectLimitExceededException() : | 192 const _RedirectLimitExceededException() : |
| 193 super("RedirectLimitExceededException"); | 193 super("RedirectLimitExceededException"); |
| 194 | 194 |
| 195 bool matches(item, MatchState matchState) => | 195 bool matches(item, Map matchState) => |
| 196 item is RedirectException && item.message == "Redirect limit exceeded"; | 196 item is RedirectException && item.message == "Redirect limit exceeded"; |
| 197 } | 197 } |
| 198 | 198 |
| 199 /// A matcher for SocketExceptions. | 199 /// A matcher for SocketExceptions. |
| 200 const isSocketException = const _SocketException(); | 200 const isSocketException = const _SocketException(); |
| 201 | 201 |
| 202 /// A matcher for functions that throw SocketException. | 202 /// A matcher for functions that throw SocketException. |
| 203 const Matcher throwsSocketException = | 203 const Matcher throwsSocketException = |
| 204 const Throws(isSocketException); | 204 const Throws(isSocketException); |
| 205 | 205 |
| 206 class _SocketException extends TypeMatcher { | 206 class _SocketException extends TypeMatcher { |
| 207 const _SocketException() : super("SocketException"); | 207 const _SocketException() : super("SocketException"); |
| 208 bool matches(item, MatchState matchState) => item is SocketException; | 208 bool matches(item, Map matchState) => item is SocketException; |
| 209 } | 209 } |
| OLD | NEW |