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.

132 lines
3.8 KiB

2 years ago
import 'package:nextcloud/nextcloud.dart';
import 'package:test/test.dart';
import 'helper.dart';
Future main() async {
final dockerImageName = await TestHelper.prepareDockerImage(apps: ['notes']);
group('notes', () {
late TestNextcloudClient client;
setUp(() async {
client = await TestHelper.getPreparedClient(dockerImageName);
});
tearDown(() => client.destroy());
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 ApiException).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, '.txt');
expect(response.noteMode, NotesSettingsNoteMode.edit);
2 years ago
});
test('Update settings', () async {
var response = await client.notes.updateSettings(
notesSettings: NotesSettings(
notesPath: 'Test Notes',
fileSuffix: '.md',
noteMode: NotesSettingsNoteMode.preview,
2 years ago
),
);
2 years ago
expect(response.notesPath, 'Test Notes');
expect(response.fileSuffix, '.md');
expect(response.noteMode, NotesSettingsNoteMode.preview);
2 years ago
response = await client.notes.getSettings();
2 years ago
expect(response.notesPath, 'Test Notes');
expect(response.fileSuffix, '.md');
expect(response.noteMode, NotesSettingsNoteMode.preview);
2 years ago
});
});
}