Allows you to substitute one service for another while testing. The primary use case is to test an application using in-memory services, although it may be using database services in the real world. This makes tests a bit faster, and also means that you don't have to write any boilerplate code to clean up a database between test runs.
In your pubspec.yaml
file:
dependencies:
angel_toggle: ^1.0.0
Within angel_toggle
, there are two ways to specify that your application is running
in "test mode":
app.properties
contains a keytestMode
, the value of which istrue
.Platform.script
contains the stringtest
(case-insensitive). This means you have to do no further configuration when running from thetest/
directory.
This package exports a single plug-in:
If the application is running in test mode, then the second generator will be called. Otherwise, it defaults to the first generator.
If you really need to delay the mounting of the service, add this plug-in to
app.justBeforeStart
. If no second generator is provided, it will
default to a MapService
.
import 'package:angel_framework/angel_framework.dart';
import 'package:angel_toggle/angel_toggle.dart';
configureServer(Angel app) async {
await app.configure(toggleService('/api/todos', () => new MongoService(...)));
}
Using the plug-in will print a message to the console, notifying you that a service has been toggled out.