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.
29 lines
747 B
29 lines
747 B
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'); |
|
}); |
|
}); |
|
}
|
|
|