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.

142 lines
4.1 KiB

2 years ago
import 'package:nextcloud/nextcloud.dart';
import 'package:test/test.dart';
import 'helper.dart';
2 years ago
Future main() async {
await run(await getDockerImage());
}
2 years ago
Future run(final DockerImage image) async {
2 years ago
group('notes', () {
late DockerContainer container;
2 years ago
late TestNextcloudClient client;
setUp(() async {
container = await getDockerContainer(image);
client = await getTestClient(container);
});
tearDown(() => container.destroy());
2 years ago
test('Is supported', () async {
final (supported, _) = client.notes.isSupported((await client.core.getCapabilities()).ocs.data);
expect(supported, isTrue);
});
test('Create note favorite', () async {
final response = await client.notes.createNote(
title: 'a',
content: 'b',
category: 'c',
favorite: 1,
);
2 years ago
expect(response.id, isPositive);
expect(response.title, 'a');
expect(response.content, 'b');
expect(response.category, 'c');
expect(response.favorite, true);
expect(response.readonly, false);
expect(response.etag, isNotNull);
expect(response.modified, isNotNull);
});
test('Create note not favorite', () async {
final response = await client.notes.createNote(
title: 'a',
content: 'b',
category: 'c',
2 years ago
);
expect(response.id, isPositive);
expect(response.title, 'a');
expect(response.content, 'b');
expect(response.category, 'c');
expect(response.favorite, false);
expect(response.readonly, false);
expect(response.etag, isNotNull);
expect(response.modified, isNotNull);
});
test('Get notes', () async {
await client.notes.createNote(title: 'a');
await client.notes.createNote(title: 'b');
final response = await client.notes.getNotes();
2 years ago
expect(response, hasLength(2));
expect(response[0].title, 'a');
expect(response[1].title, 'b');
});
test('Get note', () async {
final response = await client.notes.getNote(
id: (await client.notes.createNote(title: 'a')).id,
);
2 years ago
expect(response.title, 'a');
});
test('Update note', () async {
final id = (await client.notes.createNote(title: 'a')).id;
await client.notes.updateNote(
id: id,
title: 'b',
2 years ago
);
final response = await client.notes.getNote(id: id);
2 years ago
expect(response.title, 'b');
});
test('Update note fail changed on server', () async {
final response = await client.notes.createNote(title: 'a');
await client.notes.updateNote(
id: response.id,
title: 'b',
ifMatch: '"${response.etag}"',
2 years ago
);
expect(
() => client.notes.updateNote(
id: response.id,
title: 'c',
ifMatch: '"${response.etag}"',
2 years ago
),
throwsA(predicate((final e) => (e! as DynamiteApiException).statusCode == 412)),
2 years ago
);
});
test('Delete note', () async {
final id = (await client.notes.createNote(title: 'a')).id;
var response = await client.notes.getNotes();
2 years ago
expect(response, hasLength(1));
await client.notes.deleteNote(id: id);
2 years ago
response = await client.notes.getNotes();
2 years ago
expect(response, hasLength(0));
});
test('Get settings', () async {
final response = await client.notes.getSettings();
2 years ago
expect(response.notesPath, 'Notes');
expect(response.fileSuffix, '.md');
expect(response.noteMode, NotesSettings_NoteMode.rich);
2 years ago
});
test('Update settings', () async {
var response = await client.notes.updateSettings(
settings: NotesSettings(
(final b) => b
..notesPath = 'Test Notes'
..fileSuffix = '.txt'
..noteMode = NotesSettings_NoteMode.preview,
2 years ago
),
);
2 years ago
expect(response.notesPath, 'Test Notes');
expect(response.fileSuffix, '.txt');
expect(response.noteMode, NotesSettings_NoteMode.preview);
2 years ago
response = await client.notes.getSettings();
2 years ago
expect(response.notesPath, 'Test Notes');
expect(response.fileSuffix, '.txt');
expect(response.noteMode, NotesSettings_NoteMode.preview);
2 years ago
});
});
}