mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
73075c64d1
* compare different sha1 implementations * remove openssl sha1 * sync via checksum * hash assets in batches * hash in background, show spinner in tab * undo tmp changes * migrate by clearing assets * ignore duplicate assets * error handling * trigger sync/merge after download and update view * review feedback improvements * hash in background isolate on iOS * rework linking assets with existing from DB * fine-grained errors on unique index violation * hash lenth validation * revert compute in background on iOS * ignore duplicate assets on device * fix bug with batching based on accumulated size --------- Co-authored-by: Fynn Petersen-Frey <zoodyy@users.noreply.github.com>
55 lines
1.3 KiB
Dart
55 lines
1.3 KiB
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:immich_mobile/utils/builtin_extensions.dart';
|
|
|
|
void main() {
|
|
group('Test toDuration', () {
|
|
test('ok', () {
|
|
expect(
|
|
"1:02:33".toDuration(),
|
|
const Duration(hours: 1, minutes: 2, seconds: 33),
|
|
);
|
|
});
|
|
test('malformed', () {
|
|
expect("".toDuration(), null);
|
|
expect("1:2".toDuration(), null);
|
|
expect("a:b:c".toDuration(), null);
|
|
});
|
|
});
|
|
group('Test uniqueConsecutive', () {
|
|
test('empty', () {
|
|
final a = [];
|
|
expect(a.uniqueConsecutive(), []);
|
|
});
|
|
|
|
test('singleElement', () {
|
|
final a = [5];
|
|
expect(a.uniqueConsecutive(), [5]);
|
|
});
|
|
|
|
test('noDuplicates', () {
|
|
final a = [1, 2, 3];
|
|
expect(a.uniqueConsecutive(), [1, 2, 3]);
|
|
});
|
|
|
|
test('unsortedDuplicates', () {
|
|
final a = [1, 2, 1, 3];
|
|
expect(a.uniqueConsecutive(), [1, 2, 1, 3]);
|
|
});
|
|
|
|
test('sortedDuplicates', () {
|
|
final a = [6, 6, 2, 3, 3, 3, 4, 5, 1, 1];
|
|
expect(a.uniqueConsecutive(), [6, 2, 3, 4, 5, 1]);
|
|
});
|
|
|
|
test('withKey', () {
|
|
final a = ["a", "bb", "cc", "ddd"];
|
|
expect(
|
|
a.uniqueConsecutive(
|
|
compare: (s1, s2) => s1.length.compareTo(s2.length),
|
|
),
|
|
["a", "bb", "ddd"],
|
|
);
|
|
});
|
|
});
|
|
}
|