A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'package:nextcloud/nextcloud.dart';
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
import 'helper.dart';
|
|
|
|
|
|
|
|
Future main() async {
|
|
|
|
final dockerImageName = await TestHelper.prepareDockerImage();
|
|
|
|
|
|
|
|
group('client', () {
|
|
|
|
late TestNextcloudClient client;
|
|
|
|
tearDown(() => client.destroy());
|
|
|
|
|
|
|
|
test('User-Agent from AppType', () async {
|
|
|
|
client = await TestHelper.getPreparedClient(
|
|
|
|
dockerImageName,
|
|
|
|
appType: AppType.nextcloud,
|
|
|
|
);
|
|
|
|
expect(client.userAgent, AppType.nextcloud.userAgent);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('User-Agent with suffix', () async {
|
|
|
|
client = await TestHelper.getPreparedClient(
|
|
|
|
dockerImageName,
|
|
|
|
userAgentOverride: 'test',
|
|
|
|
);
|
|
|
|
expect(client.userAgent, 'test');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|