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.
30 lines
736 B
30 lines
736 B
import 'dart:convert'; |
|
|
|
import 'package:test/test.dart'; |
|
|
|
import 'helper.dart'; |
|
|
|
Future<void> main() async { |
|
await run(await getDockerImage()); |
|
} |
|
|
|
Future<void> run(final DockerImage image) async { |
|
group('settings', () { |
|
late DockerContainer container; |
|
late TestNextcloudClient client; |
|
setUp(() async { |
|
container = await getDockerContainer(image); |
|
client = await getTestClient( |
|
container, |
|
username: 'admin', |
|
); |
|
}); |
|
tearDown(() => container.destroy()); |
|
|
|
test('Download log file', () async { |
|
final response = await client.settings.logSettings.download(); |
|
final logs = utf8.decode(response.body); |
|
expect(logs, await container.nextcloudLogs()); |
|
}); |
|
}); |
|
}
|
|
|