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.
296 lines
7.4 KiB
296 lines
7.4 KiB
2 years ago
|
import 'dart:async';
|
||
|
import 'dart:convert';
|
||
|
import 'dart:io';
|
||
|
import 'dart:math';
|
||
|
|
||
|
import 'package:crypto/crypto.dart';
|
||
|
import 'package:http/http.dart';
|
||
|
import 'package:nextcloud/nextcloud.dart';
|
||
|
import 'package:process_run/cmd_run.dart';
|
||
|
import 'package:test/test.dart';
|
||
|
|
||
|
const String nextcloudVersion = '24.0.2';
|
||
|
const String defaultUsername = 'test';
|
||
|
const String defaultPassword = 'supersafepasswordtocircumventpasswordpolicies';
|
||
|
|
||
|
class TestNextcloudClient extends NextcloudClient {
|
||
|
TestNextcloudClient(
|
||
|
super.baseURL,
|
||
|
this.containerID, {
|
||
|
super.username,
|
||
|
super.password,
|
||
|
super.language,
|
||
|
super.appType,
|
||
|
super.userAgentSuffix,
|
||
|
});
|
||
|
|
||
|
final String containerID;
|
||
|
|
||
|
Future runOccCommand(final List<String> args) async {
|
||
|
final result = await runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'exec',
|
||
|
containerID,
|
||
|
'php',
|
||
|
'-f',
|
||
|
'occ',
|
||
|
...args,
|
||
|
],
|
||
|
stdout: stdout,
|
||
|
stderr: stderr,
|
||
|
);
|
||
|
if (result.exitCode != 0) {
|
||
|
throw Exception('Failed to run occ command');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Future destroy() => runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'kill',
|
||
|
containerID,
|
||
|
],
|
||
|
);
|
||
|
|
||
|
Future<String> collectLogs() async {
|
||
|
final apacheLogs = (await runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'logs',
|
||
|
containerID,
|
||
|
],
|
||
|
stdoutEncoding: utf8,
|
||
|
))
|
||
|
.stdout as String;
|
||
|
final nextcloudLogs = (await runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'exec',
|
||
|
containerID,
|
||
|
'cat',
|
||
|
'data/nextcloud.log',
|
||
|
],
|
||
|
stdoutEncoding: utf8,
|
||
|
))
|
||
|
.stdout as String;
|
||
|
|
||
|
return '$apacheLogs\n\n$nextcloudLogs';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class TestHelper {
|
||
|
static Future<String> prepareDockerImage({
|
||
|
final List<TestNextcloudUser>? users,
|
||
|
final List<String>? apps,
|
||
|
}) async {
|
||
|
final hash = sha1
|
||
|
.convert(
|
||
|
utf8.encode(
|
||
|
<String>[
|
||
|
if (users != null)
|
||
|
for (final user in users) user.toString(),
|
||
|
if (apps != null) ...apps,
|
||
|
].join(),
|
||
|
),
|
||
|
)
|
||
|
.toString();
|
||
|
|
||
|
final dockerImageName = 'nextcloud-harbour-$hash';
|
||
|
|
||
|
final inputStream = StreamController<List<int>>();
|
||
|
final process = runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'build',
|
||
|
'-t',
|
||
|
dockerImageName,
|
||
|
'-f',
|
||
|
'-',
|
||
|
'./test',
|
||
|
],
|
||
|
stdout: stdout,
|
||
|
stderr: stderr,
|
||
|
stdin: inputStream.stream,
|
||
|
);
|
||
|
inputStream.add(
|
||
|
utf8.encode(
|
||
|
TestDockerHelper.generateInstructions(
|
||
|
nextcloudVersion,
|
||
|
users: users,
|
||
|
apps: apps,
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
await inputStream.close();
|
||
|
|
||
|
final result = await process;
|
||
|
if (result.exitCode != 0) {
|
||
|
throw Exception('Failed to build docker image');
|
||
|
}
|
||
|
|
||
|
return dockerImageName;
|
||
|
}
|
||
|
|
||
|
static Future<TestNextcloudClient> getPreparedClient(
|
||
|
final String dockerImageName, {
|
||
|
final String? username = defaultUsername,
|
||
|
final String? password = defaultPassword,
|
||
|
final AppType appType = AppType.unknown,
|
||
|
final String? userAgentSuffix,
|
||
|
}) async {
|
||
|
final port = 1024 + Random().nextInt(65535 - 1024);
|
||
|
|
||
|
final result = await runExecutableArguments(
|
||
|
'docker',
|
||
|
[
|
||
|
'run',
|
||
|
'--rm',
|
||
|
'-d',
|
||
|
'-p',
|
||
|
'$port:80',
|
||
|
dockerImageName,
|
||
|
],
|
||
|
);
|
||
|
|
||
|
if (result.exitCode != 0) {
|
||
|
throw Exception('Failed to run docker container: ${result.stderr}');
|
||
|
}
|
||
|
|
||
|
final containerID = result.stdout.toString().replaceAll('\n', '');
|
||
|
|
||
|
final client = TestNextcloudClient(
|
||
|
'http://localhost:$port',
|
||
|
containerID,
|
||
|
username: username,
|
||
|
password: password,
|
||
|
appType: appType,
|
||
|
userAgentSuffix: userAgentSuffix,
|
||
|
);
|
||
|
|
||
|
var iteration = 0;
|
||
|
while (true) {
|
||
|
try {
|
||
|
await client.core.getStatus();
|
||
|
break;
|
||
|
} catch (_) {
|
||
|
iteration++;
|
||
|
await Future.delayed(const Duration(milliseconds: 100));
|
||
|
if (iteration > 50) {
|
||
|
throw Exception('Failed to wait for Nextcloud instance');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return client;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class TestNextcloudUser {
|
||
|
TestNextcloudUser(
|
||
|
this.username, {
|
||
|
this.displayName,
|
||
|
});
|
||
|
|
||
|
final String username;
|
||
|
final String? displayName;
|
||
|
}
|
||
|
|
||
|
class TestDockerHelper {
|
||
|
static String generateInstructions(
|
||
|
final String nextcloudVersion, {
|
||
|
final List<TestNextcloudUser>? users,
|
||
|
final List<String>? apps,
|
||
|
}) {
|
||
|
users?.sort((final a, final b) => a.username.compareTo(b.username));
|
||
|
apps?.sort();
|
||
|
|
||
|
final instructions = <String>[
|
||
|
generateFromNextcloudImageInstruction(nextcloudVersion),
|
||
|
'WORKDIR /usr/src/nextcloud',
|
||
|
'RUN chown -R www-data:www-data .',
|
||
|
'USER www-data',
|
||
|
'RUN ./occ maintenance:install --admin-user admin --admin-pass $defaultPassword --admin-email admin@example.com',
|
||
|
generateCreateTestUserInstruction(),
|
||
|
if (users != null) ...[
|
||
|
for (final user in users) ...[
|
||
|
generateCreateUserInstruction(user),
|
||
|
],
|
||
|
],
|
||
|
if (apps != null) ...[
|
||
|
for (final app in apps) ...[
|
||
|
generateInstallAppInstruction(app),
|
||
|
],
|
||
|
],
|
||
|
'ADD overlay /usr/src/nextcloud/',
|
||
|
'',
|
||
|
];
|
||
|
|
||
|
return instructions.join('\n');
|
||
|
}
|
||
|
|
||
|
static String generateFromNextcloudImageInstruction(
|
||
|
final String nextcloudVersion,
|
||
|
) =>
|
||
|
'FROM nextcloud:$nextcloudVersion';
|
||
|
|
||
|
static String generateCreateTestUserInstruction() => generateCreateUserInstruction(
|
||
|
TestNextcloudUser(
|
||
|
defaultUsername,
|
||
|
displayName: 'Test',
|
||
|
),
|
||
|
);
|
||
|
|
||
|
static String generateCreateUserInstruction(final TestNextcloudUser user) =>
|
||
|
'RUN OC_PASS="$defaultPassword" ./occ user:add --password-from-env ${user.displayName != null ? '--display-name="${user.displayName}"' : ''} ${user.username}';
|
||
|
|
||
|
static String generateInstallAppInstruction(
|
||
|
final String appName,
|
||
|
) =>
|
||
|
'RUN ./occ app:install $appName';
|
||
|
}
|
||
|
|
||
|
Future<T?> validateResponse<T, U>(final ApiInstance api, final Future<Response> input) async {
|
||
|
final response = await input;
|
||
|
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await decodeBodyBytes(response));
|
||
|
}
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
final body = removeNulls(json.decode(await decodeBodyBytes(response)));
|
||
|
var output = await api.apiClient.deserializeAsync(
|
||
|
json.encode(body),
|
||
|
T.toString(),
|
||
|
);
|
||
|
if (output is List) {
|
||
|
output = output.map((final b) => b as U).toList();
|
||
|
}
|
||
|
output = output as T;
|
||
|
|
||
|
final parsedBody = removeNulls(json.decode(json.encode(output)));
|
||
|
expect(parsedBody, body);
|
||
|
|
||
|
return output;
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> removeNullsFromMap(final Map<String, dynamic> json) => json
|
||
|
..removeWhere((final key, final value) => value == null)
|
||
|
..map<String, dynamic>((final key, final value) => MapEntry(key, removeNulls(value)));
|
||
|
|
||
|
List removeNullsFromList(final List list) => list
|
||
|
..removeWhere((final value) => value == null)
|
||
|
..map(removeNulls).toList();
|
||
|
|
||
|
T removeNulls<T>(final T e) =>
|
||
|
((e is List) ? removeNullsFromList(e) : (e is Map<String, dynamic> ? removeNullsFromMap(e) : e)) as T;
|
||
|
|
||
|
extension ListExtension on List {
|
||
|
List removeNulls() => removeNullsFromList(this);
|
||
|
}
|
||
|
|
||
|
extension MapExtension on Map<String, dynamic> {
|
||
|
Map removeNulls() => removeNullsFromMap(this);
|
||
|
}
|