Skip to content

Instantly share code, notes, and snippets.

@hjJunior
Last active June 10, 2019 20:17
Show Gist options
  • Save hjJunior/237412622d27d0d42be7ae32f6c1f8e5 to your computer and use it in GitHub Desktop.
Save hjJunior/237412622d27d0d42be7ae32f6c1f8e5 to your computer and use it in GitHub Desktop.
class MyIp {
Injector get _injector => Injector.getInjector();
Client get _client => _injector.get<Client>();
Future<String> get ipAddress async {
final apiResult = await _client.get('https://api.ipify.org/?format=json');
return json.decode(apiResult.body)['ip'];
}
}
// Testing
void main() {
setUpAll(() {
final injector = Injector.getInjector();
final fakeClient = MockClient((_) async =>
Response(json.encode({"ip": "192.168.0.1"}), 200)
);
injector.map((i) => fakeClient);
});
test('it returns stubbed ip', () async {
final ipAddress = await MyIp().ipAddress;
expect(ipAddress, '192.168.0.1');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment