2021-06-24 11:59:11 +00:00
# Mock HTTP Request
[![version ](https://img.shields.io/badge/pub-v2.0.2-brightgreen )](https://pub.dartlang.org/packages/angel3_mock_request)
2021-05-14 08:06:16 +00:00
[![Null Safety ](https://img.shields.io/badge/null-safety-brightgreen )](https://dart.dev/null-safety)
2021-05-15 06:01:47 +00:00
[![Gitter ](https://img.shields.io/gitter/room/angel_dart/discussion )](https://gitter.im/angel_dart/discussion)
2021-03-18 23:10:19 +00:00
2021-05-14 10:34:09 +00:00
[![License ](https://img.shields.io/github/license/dukefirehawk/angel )](https://github.com/dukefirehawk/angel/tree/angel3/packages/mock_request/LICENSE)
2021-03-18 23:10:19 +00:00
2021-06-24 11:59:11 +00:00
**Forked from `mock_request` to support NNBD**
Manufacture dart:io HttpRequests, HttpResponses, HttpHeaders, etc. This makes it possible to test server-side Dart applications without
2021-03-18 23:10:19 +00:00
having to ever bind to a port.
2021-06-24 11:59:11 +00:00
This package was originally designed to make testing [Angel3 ](https://github.com/dukefirehawk/angel/tree/angel3 ) applications smoother, but works with any Dart-based server.
## Usage
2021-03-18 23:10:19 +00:00
```dart
2021-05-14 08:06:16 +00:00
var rq = MockHttpRequest('GET', Uri.parse('/foo'));
2021-03-18 23:10:19 +00:00
await rq.close();
await app.handleRequest(rq); // Run within your server-side application
var rs = rq.response;
expect(rs.statusCode, equals(200));
expect(await rs.transform(UTF8.decoder).join(),
equals(JSON.encode('Hello, world!')));
```
2021-06-24 11:59:11 +00:00
More examples can be found in the included test cases.