2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-27 21:16:48 +00:00
inventree-app/test/api_test.dart
2022-05-20 23:34:02 +10:00

45 lines
1.1 KiB
Dart

/*
* Unit tests for the API class
*/
import 'package:test/test.dart';
import 'package:inventree/api.dart';
import 'package:inventree/user_profile.dart';
void main() {
setUp(() async {
// Ensure we have a user profile available
// This profile will match the dockerized InvenTree setup, running locally
print("Creating user profile");
await UserProfileDBManager().addProfile(UserProfile(
username: "testuser",
password: "testpassword""",
server: "http://localhost:12345",
selected: true,
));
final profiles = await UserProfileDBManager().getAllProfiles();
// Ensure we have one profile available
expect(profiles.length, equals(1));
// Select the profile
await UserProfileDBManager().selectProfile(profiles.first.key ?? 1);
});
test("Select Profile", () async {
// Ensure that we can select a user profile
final prf = await UserProfileDBManager().getSelectedProfile();
expect(prf, isNot(null));
expect(prf?.username, equals("testuser"));
expect(prf?.password, equals("testpassword"));
expect(prf?.server, equals("http://localhost:12345"));
});
}