Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe154accea |
+2
-8
@@ -331,12 +331,6 @@ tasks:
|
|||||||
cmds:
|
cmds:
|
||||||
- fvm dart run scripts/check_coverage.dart
|
- fvm dart run scripts/check_coverage.dart
|
||||||
|
|
||||||
check-coverage:
|
|
||||||
desc: Run unit+widget tests with coverage, then fail if the gate is not met
|
|
||||||
deps: [test]
|
|
||||||
cmds:
|
|
||||||
- task: coverage
|
|
||||||
|
|
||||||
website-dev:
|
website-dev:
|
||||||
desc: Run Hugo development server
|
desc: Run Hugo development server
|
||||||
cmds:
|
cmds:
|
||||||
@@ -367,8 +361,8 @@ tasks:
|
|||||||
${SSH_USER}@${SSH_HOST}:public_html/
|
${SSH_USER}@${SSH_HOST}:public_html/
|
||||||
|
|
||||||
check-fast:
|
check-fast:
|
||||||
desc: Pre-commit checks — analyze + unit+widget tests + coverage gate (no build, no integration)
|
desc: Pre-commit checks — analyze + unit tests + widget tests (no build, no integration)
|
||||||
deps: [analyze, check-coverage, check-hygiene]
|
deps: [analyze, test, check-hygiene]
|
||||||
|
|
||||||
check-hygiene:
|
check-hygiene:
|
||||||
desc: Verify that no forbidden files (like home dir config) are tracked
|
desc: Verify that no forbidden files (like home dir config) are tracked
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ android {
|
|||||||
applicationId = "de.sharedinbox.mua"
|
applicationId = "de.sharedinbox.mua"
|
||||||
// You can update the following values to match your application needs.
|
// You can update the following values to match your application needs.
|
||||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||||
minSdk = 23
|
minSdk = flutter.minSdkVersion
|
||||||
targetSdk = flutter.targetSdkVersion
|
targetSdk = flutter.targetSdkVersion
|
||||||
versionCode = flutter.versionCode
|
versionCode = flutter.versionCode
|
||||||
versionName = flutter.versionName
|
versionName = flutter.versionName
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
||||||
<application
|
<application
|
||||||
android:label="sharedinbox"
|
android:label="sharedinbox"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|
||||||
|
|
||||||
const _kChannelId = 'new_mail';
|
|
||||||
const _kChannelName = 'New mail';
|
|
||||||
|
|
||||||
final _plugin = FlutterLocalNotificationsPlugin();
|
|
||||||
|
|
||||||
Future<void> initNotifications() async {
|
|
||||||
const android = AndroidInitializationSettings('@mipmap/ic_launcher');
|
|
||||||
await _plugin.initialize(
|
|
||||||
const InitializationSettings(android: android),
|
|
||||||
onDidReceiveNotificationResponse: (_) {},
|
|
||||||
);
|
|
||||||
await _plugin
|
|
||||||
.resolvePlatformSpecificImplementation<
|
|
||||||
AndroidFlutterLocalNotificationsPlugin>()
|
|
||||||
?.requestNotificationsPermission();
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> showNewMailNotification(String accountEmail) async {
|
|
||||||
if (!Platform.isAndroid) return;
|
|
||||||
await _plugin.show(
|
|
||||||
accountEmail.hashCode & 0x7FFFFFFF,
|
|
||||||
'New mail',
|
|
||||||
accountEmail,
|
|
||||||
const NotificationDetails(
|
|
||||||
android: AndroidNotificationDetails(
|
|
||||||
_kChannelId,
|
|
||||||
_kChannelName,
|
|
||||||
channelDescription: 'Notifications for new incoming mail',
|
|
||||||
importance: Importance.high,
|
|
||||||
priority: Priority.high,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -12,8 +12,6 @@ import 'package:sharedinbox/core/utils/logger.dart';
|
|||||||
import 'package:sharedinbox/data/imap/imap_client_factory.dart'
|
import 'package:sharedinbox/data/imap/imap_client_factory.dart'
|
||||||
show ImapConnectFn, connectImap, verboseLogKey;
|
show ImapConnectFn, connectImap, verboseLogKey;
|
||||||
|
|
||||||
typedef OnNewMailCallback = Future<void> Function(String accountEmail);
|
|
||||||
|
|
||||||
/// Manages background sync for all accounts.
|
/// Manages background sync for all accounts.
|
||||||
///
|
///
|
||||||
/// IMAP accounts get an IDLE-based sync loop (_AccountSync).
|
/// IMAP accounts get an IDLE-based sync loop (_AccountSync).
|
||||||
@@ -26,11 +24,9 @@ class AccountSyncManager {
|
|||||||
ImapConnectFn imapConnect = connectImap,
|
ImapConnectFn imapConnect = connectImap,
|
||||||
SyncLogRepository syncLog = const NoOpSyncLogRepository(),
|
SyncLogRepository syncLog = const NoOpSyncLogRepository(),
|
||||||
DraftRepository? drafts,
|
DraftRepository? drafts,
|
||||||
OnNewMailCallback? onNewMail,
|
|
||||||
}) : _imapConnect = imapConnect,
|
}) : _imapConnect = imapConnect,
|
||||||
_syncLog = syncLog,
|
_syncLog = syncLog,
|
||||||
_drafts = drafts,
|
_drafts = drafts;
|
||||||
_onNewMail = onNewMail;
|
|
||||||
|
|
||||||
final AccountRepository _accounts;
|
final AccountRepository _accounts;
|
||||||
final MailboxRepository _mailboxes;
|
final MailboxRepository _mailboxes;
|
||||||
@@ -38,22 +34,11 @@ class AccountSyncManager {
|
|||||||
final ImapConnectFn _imapConnect;
|
final ImapConnectFn _imapConnect;
|
||||||
final SyncLogRepository _syncLog;
|
final SyncLogRepository _syncLog;
|
||||||
final DraftRepository? _drafts;
|
final DraftRepository? _drafts;
|
||||||
final OnNewMailCallback? _onNewMail;
|
|
||||||
|
|
||||||
final Map<String, _SyncLoop> _active = {};
|
final Map<String, _SyncLoop> _active = {};
|
||||||
StreamSubscription<List<Account>>? _accountsSub;
|
StreamSubscription<List<Account>>? _accountsSub;
|
||||||
StreamSubscription<String>? _onChangesSub;
|
StreamSubscription<String>? _onChangesSub;
|
||||||
|
|
||||||
final _syncPhaseCtrl = StreamController<(String, bool)>.broadcast();
|
|
||||||
|
|
||||||
/// Emits `true` when [accountId] starts syncing, `false` when it stops.
|
|
||||||
Stream<bool> watchSyncing(String accountId) =>
|
|
||||||
_syncPhaseCtrl.stream.where((e) => e.$1 == accountId).map((e) => e.$2);
|
|
||||||
|
|
||||||
void _emitSyncing(String accountId, {required bool syncing}) {
|
|
||||||
if (!_syncPhaseCtrl.isClosed) _syncPhaseCtrl.add((accountId, syncing));
|
|
||||||
}
|
|
||||||
|
|
||||||
void start() {
|
void start() {
|
||||||
_onChangesSub = _emails.onChangesQueued.listen((accountId) {
|
_onChangesSub = _emails.onChangesQueued.listen((accountId) {
|
||||||
_active[accountId]?.kick();
|
_active[accountId]?.kick();
|
||||||
@@ -64,7 +49,6 @@ class AccountSyncManager {
|
|||||||
|
|
||||||
for (final account in accounts) {
|
for (final account in accounts) {
|
||||||
if (_active.containsKey(account.id)) continue;
|
if (_active.containsKey(account.id)) continue;
|
||||||
final id = account.id;
|
|
||||||
final loop = switch (account.type) {
|
final loop = switch (account.type) {
|
||||||
AccountType.imap => _AccountSync(
|
AccountType.imap => _AccountSync(
|
||||||
account,
|
account,
|
||||||
@@ -74,9 +58,6 @@ class AccountSyncManager {
|
|||||||
_imapConnect,
|
_imapConnect,
|
||||||
_syncLog,
|
_syncLog,
|
||||||
_drafts,
|
_drafts,
|
||||||
_onNewMail,
|
|
||||||
onSyncStart: () => _emitSyncing(id, syncing: true),
|
|
||||||
onSyncEnd: () => _emitSyncing(id, syncing: false),
|
|
||||||
),
|
),
|
||||||
AccountType.jmap => _JmapAccountSync(
|
AccountType.jmap => _JmapAccountSync(
|
||||||
account,
|
account,
|
||||||
@@ -84,8 +65,6 @@ class AccountSyncManager {
|
|||||||
_emails,
|
_emails,
|
||||||
_accounts,
|
_accounts,
|
||||||
_syncLog,
|
_syncLog,
|
||||||
onSyncStart: () => _emitSyncing(id, syncing: true),
|
|
||||||
onSyncEnd: () => _emitSyncing(id, syncing: false),
|
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
_active[account.id] = loop;
|
_active[account.id] = loop;
|
||||||
@@ -107,7 +86,6 @@ class AccountSyncManager {
|
|||||||
s.stop();
|
s.stop();
|
||||||
}
|
}
|
||||||
_active.clear();
|
_active.clear();
|
||||||
unawaited(_syncPhaseCtrl.close());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Wakes the idle/wait phase of the given account's sync loop so a new
|
/// Wakes the idle/wait phase of the given account's sync loop so a new
|
||||||
@@ -141,9 +119,6 @@ class AccountSyncManager {
|
|||||||
_imapConnect,
|
_imapConnect,
|
||||||
_syncLog,
|
_syncLog,
|
||||||
_drafts,
|
_drafts,
|
||||||
_onNewMail,
|
|
||||||
onSyncStart: () => _emitSyncing(accountId, syncing: true),
|
|
||||||
onSyncEnd: () => _emitSyncing(accountId, syncing: false),
|
|
||||||
),
|
),
|
||||||
AccountType.jmap => _JmapAccountSync(
|
AccountType.jmap => _JmapAccountSync(
|
||||||
account,
|
account,
|
||||||
@@ -151,8 +126,6 @@ class AccountSyncManager {
|
|||||||
_emails,
|
_emails,
|
||||||
_accounts,
|
_accounts,
|
||||||
_syncLog,
|
_syncLog,
|
||||||
onSyncStart: () => _emitSyncing(accountId, syncing: true),
|
|
||||||
onSyncEnd: () => _emitSyncing(accountId, syncing: false),
|
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
_active[accountId] = loop;
|
_active[accountId] = loop;
|
||||||
@@ -179,11 +152,7 @@ class _AccountSync implements _SyncLoop {
|
|||||||
this._imapConnect,
|
this._imapConnect,
|
||||||
this._syncLog,
|
this._syncLog,
|
||||||
this._drafts,
|
this._drafts,
|
||||||
this._onNewMail, {
|
);
|
||||||
void Function()? onSyncStart,
|
|
||||||
void Function()? onSyncEnd,
|
|
||||||
}) : _onSyncStart = onSyncStart,
|
|
||||||
_onSyncEnd = onSyncEnd;
|
|
||||||
|
|
||||||
final Account account;
|
final Account account;
|
||||||
final AccountRepository _accounts;
|
final AccountRepository _accounts;
|
||||||
@@ -192,9 +161,6 @@ class _AccountSync implements _SyncLoop {
|
|||||||
final ImapConnectFn _imapConnect;
|
final ImapConnectFn _imapConnect;
|
||||||
final SyncLogRepository _syncLog;
|
final SyncLogRepository _syncLog;
|
||||||
final DraftRepository? _drafts;
|
final DraftRepository? _drafts;
|
||||||
final OnNewMailCallback? _onNewMail;
|
|
||||||
final void Function()? _onSyncStart;
|
|
||||||
final void Function()? _onSyncEnd;
|
|
||||||
|
|
||||||
imap.ImapClient? _idleClient;
|
imap.ImapClient? _idleClient;
|
||||||
bool _running = false;
|
bool _running = false;
|
||||||
@@ -227,7 +193,6 @@ class _AccountSync implements _SyncLoop {
|
|||||||
Future<void> _loop() async {
|
Future<void> _loop() async {
|
||||||
while (_running) {
|
while (_running) {
|
||||||
final startedAt = DateTime.now();
|
final startedAt = DateTime.now();
|
||||||
_onSyncStart?.call();
|
|
||||||
try {
|
try {
|
||||||
final (_SyncStats stats, String? capturedLog) = await _runSync(
|
final (_SyncStats stats, String? capturedLog) = await _runSync(
|
||||||
account.verbose,
|
account.verbose,
|
||||||
@@ -247,10 +212,8 @@ class _AccountSync implements _SyncLoop {
|
|||||||
protocolLog: capturedLog,
|
protocolLog: capturedLog,
|
||||||
);
|
);
|
||||||
_backoffSeconds = 5;
|
_backoffSeconds = 5;
|
||||||
_onSyncEnd?.call();
|
|
||||||
await _idle();
|
await _idle();
|
||||||
} catch (e, st) {
|
} catch (e, st) {
|
||||||
_onSyncEnd?.call();
|
|
||||||
final isPermanent = _isPermanentError(e);
|
final isPermanent = _isPermanentError(e);
|
||||||
try {
|
try {
|
||||||
await _syncLog.log(
|
await _syncLog.log(
|
||||||
@@ -372,7 +335,6 @@ class _AccountSync implements _SyncLoop {
|
|||||||
await client.selectMailboxByPath('INBOX');
|
await client.selectMailboxByPath('INBOX');
|
||||||
|
|
||||||
final newMessageCompleter = Completer<void>();
|
final newMessageCompleter = Completer<void>();
|
||||||
var hasNewMail = false;
|
|
||||||
|
|
||||||
final sub = client.eventBus
|
final sub = client.eventBus
|
||||||
.on<imap.ImapEvent>()
|
.on<imap.ImapEvent>()
|
||||||
@@ -380,11 +342,7 @@ class _AccountSync implements _SyncLoop {
|
|||||||
(e) =>
|
(e) =>
|
||||||
e is imap.ImapMessagesExistEvent || e is imap.ImapExpungeEvent,
|
e is imap.ImapMessagesExistEvent || e is imap.ImapExpungeEvent,
|
||||||
)
|
)
|
||||||
.listen((e) {
|
.listen((_) {
|
||||||
if (e is imap.ImapMessagesExistEvent &&
|
|
||||||
e.newMessagesExists > e.oldMessagesExists) {
|
|
||||||
hasNewMail = true;
|
|
||||||
}
|
|
||||||
if (!newMessageCompleter.isCompleted) newMessageCompleter.complete();
|
if (!newMessageCompleter.isCompleted) newMessageCompleter.complete();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -400,10 +358,6 @@ class _AccountSync implements _SyncLoop {
|
|||||||
|
|
||||||
await client.idleDone();
|
await client.idleDone();
|
||||||
await sub.cancel();
|
await sub.cancel();
|
||||||
|
|
||||||
if (hasNewMail) {
|
|
||||||
unawaited(_onNewMail?.call(account.email));
|
|
||||||
}
|
|
||||||
} finally {
|
} finally {
|
||||||
await client.logout();
|
await client.logout();
|
||||||
_idleClient = null;
|
_idleClient = null;
|
||||||
@@ -420,19 +374,14 @@ class _JmapAccountSync implements _SyncLoop {
|
|||||||
this._mailboxes,
|
this._mailboxes,
|
||||||
this._emails,
|
this._emails,
|
||||||
this._accounts,
|
this._accounts,
|
||||||
this._syncLog, {
|
this._syncLog,
|
||||||
void Function()? onSyncStart,
|
);
|
||||||
void Function()? onSyncEnd,
|
|
||||||
}) : _onSyncStart = onSyncStart,
|
|
||||||
_onSyncEnd = onSyncEnd;
|
|
||||||
|
|
||||||
final Account account;
|
final Account account;
|
||||||
final MailboxRepository _mailboxes;
|
final MailboxRepository _mailboxes;
|
||||||
final EmailRepository _emails;
|
final EmailRepository _emails;
|
||||||
final AccountRepository _accounts;
|
final AccountRepository _accounts;
|
||||||
final SyncLogRepository _syncLog;
|
final SyncLogRepository _syncLog;
|
||||||
final void Function()? _onSyncStart;
|
|
||||||
final void Function()? _onSyncEnd;
|
|
||||||
|
|
||||||
bool _running = false;
|
bool _running = false;
|
||||||
int _backoffSeconds = 5;
|
int _backoffSeconds = 5;
|
||||||
@@ -464,7 +413,6 @@ class _JmapAccountSync implements _SyncLoop {
|
|||||||
Future<void> _loop() async {
|
Future<void> _loop() async {
|
||||||
while (_running) {
|
while (_running) {
|
||||||
final startedAt = DateTime.now();
|
final startedAt = DateTime.now();
|
||||||
_onSyncStart?.call();
|
|
||||||
try {
|
try {
|
||||||
final (_SyncStats stats, String? capturedLog) = await _runSync(
|
final (_SyncStats stats, String? capturedLog) = await _runSync(
|
||||||
account.verbose,
|
account.verbose,
|
||||||
@@ -484,10 +432,8 @@ class _JmapAccountSync implements _SyncLoop {
|
|||||||
protocolLog: capturedLog,
|
protocolLog: capturedLog,
|
||||||
);
|
);
|
||||||
_backoffSeconds = 5;
|
_backoffSeconds = 5;
|
||||||
_onSyncEnd?.call();
|
|
||||||
await _wait();
|
await _wait();
|
||||||
} catch (e, st) {
|
} catch (e, st) {
|
||||||
_onSyncEnd?.call();
|
|
||||||
final isPermanent = _isPermanentError(e);
|
final isPermanent = _isPermanentError(e);
|
||||||
try {
|
try {
|
||||||
await _syncLog.log(
|
await _syncLog.log(
|
||||||
|
|||||||
@@ -1,123 +0,0 @@
|
|||||||
import 'dart:async';
|
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:drift/drift.dart';
|
|
||||||
import 'package:drift/native.dart';
|
|
||||||
import 'package:enough_mail/enough_mail.dart' as imap;
|
|
||||||
import 'package:path/path.dart' as p;
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
|
||||||
|
|
||||||
import 'package:sharedinbox/core/models/account.dart' as model;
|
|
||||||
import 'package:sharedinbox/core/repositories/account_repository.dart';
|
|
||||||
import 'package:sharedinbox/core/services/notification_service.dart';
|
|
||||||
import 'package:sharedinbox/data/db/database.dart';
|
|
||||||
import 'package:sharedinbox/data/imap/imap_client_factory.dart';
|
|
||||||
import 'package:sharedinbox/data/repositories/account_repository_impl.dart';
|
|
||||||
import 'package:sharedinbox/data/storage/flutter_secure_storage_impl.dart';
|
|
||||||
|
|
||||||
import 'package:workmanager/workmanager.dart';
|
|
||||||
|
|
||||||
const _kTaskName = 'si_bg_sync';
|
|
||||||
const _kResourceType = 'background_check';
|
|
||||||
|
|
||||||
@pragma('vm:entry-point')
|
|
||||||
void callbackDispatcher() {
|
|
||||||
Workmanager().executeTask((_, __) async {
|
|
||||||
try {
|
|
||||||
await _doBackgroundSync();
|
|
||||||
} catch (_) {}
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> registerBackgroundSync() async {
|
|
||||||
await Workmanager().initialize(callbackDispatcher);
|
|
||||||
await Workmanager().registerPeriodicTask(
|
|
||||||
_kTaskName,
|
|
||||||
_kTaskName,
|
|
||||||
frequency: const Duration(minutes: 15),
|
|
||||||
constraints: Constraints(networkType: NetworkType.connected),
|
|
||||||
existingWorkPolicy: ExistingWorkPolicy.keep,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _doBackgroundSync() async {
|
|
||||||
final dir = await getApplicationSupportDirectory();
|
|
||||||
final db = AppDatabase(
|
|
||||||
NativeDatabase(File(p.join(dir.path, 'sharedinbox.db'))),
|
|
||||||
);
|
|
||||||
try {
|
|
||||||
final accountRepo = AccountRepositoryImpl(
|
|
||||||
db,
|
|
||||||
const FlutterSecureStorageImpl(),
|
|
||||||
);
|
|
||||||
final accounts = await accountRepo.observeAccounts().first;
|
|
||||||
await initNotifications();
|
|
||||||
for (final account in accounts) {
|
|
||||||
if (account.type != model.AccountType.imap) continue;
|
|
||||||
await _checkAccount(db, accountRepo, account);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
await db.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _checkAccount(
|
|
||||||
AppDatabase db,
|
|
||||||
AccountRepository accountRepo,
|
|
||||||
model.Account account,
|
|
||||||
) async {
|
|
||||||
try {
|
|
||||||
final password = await accountRepo.getPassword(account.id);
|
|
||||||
final username =
|
|
||||||
account.username.isNotEmpty ? account.username : account.email;
|
|
||||||
final client = await connectImap(account, username, password);
|
|
||||||
try {
|
|
||||||
final status = await client.statusMailbox(
|
|
||||||
imap.Mailbox.virtual('INBOX', []),
|
|
||||||
[imap.StatusFlags.uidNext],
|
|
||||||
);
|
|
||||||
final currentUidNext = status.uidNext;
|
|
||||||
|
|
||||||
final stored = await (db.select(db.syncStates)
|
|
||||||
..where(
|
|
||||||
(t) =>
|
|
||||||
t.accountId.equals(account.id) &
|
|
||||||
t.resourceType.equals(_kResourceType),
|
|
||||||
))
|
|
||||||
.getSingleOrNull();
|
|
||||||
final lastUidNext = _parseUidNext(stored?.state);
|
|
||||||
|
|
||||||
await db.into(db.syncStates).insertOnConflictUpdate(
|
|
||||||
SyncStatesCompanion.insert(
|
|
||||||
accountId: account.id,
|
|
||||||
resourceType: _kResourceType,
|
|
||||||
state: jsonEncode({'uidNext': currentUidNext}),
|
|
||||||
syncedAt: DateTime.now(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (lastUidNext != null &&
|
|
||||||
currentUidNext != null &&
|
|
||||||
currentUidNext > lastUidNext) {
|
|
||||||
await showNewMailNotification(account.email);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
await client.logout();
|
|
||||||
}
|
|
||||||
} catch (_) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
int? _parseUidNext(String? state) {
|
|
||||||
if (state == null) return null;
|
|
||||||
try {
|
|
||||||
final decoded = jsonDecode(state);
|
|
||||||
if (decoded is Map<String, Object?>) {
|
|
||||||
return decoded['uidNext'] as int?;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
} catch (_) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -269,7 +269,7 @@ class AppDatabase extends _$AppDatabase {
|
|||||||
AppDatabase([QueryExecutor? executor]) : super(executor ?? _openConnection());
|
AppDatabase([QueryExecutor? executor]) : super(executor ?? _openConnection());
|
||||||
|
|
||||||
@override
|
@override
|
||||||
int get schemaVersion => 25;
|
int get schemaVersion => 24;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
MigrationStrategy get migration => MigrationStrategy(
|
MigrationStrategy get migration => MigrationStrategy(
|
||||||
@@ -431,22 +431,6 @@ class AppDatabase extends _$AppDatabase {
|
|||||||
if (from >= 4 && from < 24) {
|
if (from >= 4 && from < 24) {
|
||||||
await m.addColumn(drafts, drafts.imapServerId);
|
await m.addColumn(drafts, drafts.imapServerId);
|
||||||
}
|
}
|
||||||
if (from < 25) {
|
|
||||||
// For observeMailboxes: filter by account_id, sort by path.
|
|
||||||
await m.createIndex(
|
|
||||||
Index(
|
|
||||||
'mailboxes_account_id',
|
|
||||||
'CREATE INDEX IF NOT EXISTS mailboxes_account_id ON mailboxes (account_id, path);',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
// For observeThreads: filter by account_id+mailbox_path, sort by latest_date.
|
|
||||||
await m.createIndex(
|
|
||||||
Index(
|
|
||||||
'threads_latest_date',
|
|
||||||
'CREATE INDEX IF NOT EXISTS threads_latest_date ON threads (account_id, mailbox_path, latest_date DESC);',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ import 'package:sharedinbox/core/repositories/undo_repository.dart';
|
|||||||
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
||||||
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
||||||
import 'package:sharedinbox/core/services/managesieve_probe_service.dart';
|
import 'package:sharedinbox/core/services/managesieve_probe_service.dart';
|
||||||
import 'package:sharedinbox/core/services/notification_service.dart';
|
|
||||||
import 'package:sharedinbox/core/services/undo_service.dart';
|
import 'package:sharedinbox/core/services/undo_service.dart';
|
||||||
import 'package:sharedinbox/core/storage/secure_storage.dart';
|
import 'package:sharedinbox/core/storage/secure_storage.dart';
|
||||||
import 'package:sharedinbox/core/sync/account_sync_manager.dart';
|
import 'package:sharedinbox/core/sync/account_sync_manager.dart';
|
||||||
@@ -115,11 +114,6 @@ final syncHealthProvider =
|
|||||||
.watchSingleOrNull();
|
.watchSingleOrNull();
|
||||||
});
|
});
|
||||||
|
|
||||||
final isSyncingProvider =
|
|
||||||
StreamProvider.autoDispose.family<bool, String>((ref, accountId) {
|
|
||||||
return ref.watch(syncManagerProvider).watchSyncing(accountId);
|
|
||||||
});
|
|
||||||
|
|
||||||
final syncManagerProvider = Provider<AccountSyncManager>((ref) {
|
final syncManagerProvider = Provider<AccountSyncManager>((ref) {
|
||||||
final manager = AccountSyncManager(
|
final manager = AccountSyncManager(
|
||||||
ref.watch(accountRepositoryProvider),
|
ref.watch(accountRepositoryProvider),
|
||||||
@@ -128,7 +122,6 @@ final syncManagerProvider = Provider<AccountSyncManager>((ref) {
|
|||||||
syncLog: ref.watch(syncLogRepositoryProvider),
|
syncLog: ref.watch(syncLogRepositoryProvider),
|
||||||
imapConnect: ref.watch(imapConnectProvider),
|
imapConnect: ref.watch(imapConnectProvider),
|
||||||
drafts: ref.watch(draftRepositoryProvider),
|
drafts: ref.watch(draftRepositoryProvider),
|
||||||
onNewMail: showNewMailNotification,
|
|
||||||
);
|
);
|
||||||
ref.onDispose(manager.dispose);
|
ref.onDispose(manager.dispose);
|
||||||
return manager;
|
return manager;
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
import 'package:sharedinbox/core/services/notification_service.dart';
|
|
||||||
import 'package:sharedinbox/core/sync/background_sync.dart';
|
|
||||||
import 'package:sharedinbox/data/db/database.dart';
|
import 'package:sharedinbox/data/db/database.dart';
|
||||||
import 'package:sharedinbox/di.dart';
|
import 'package:sharedinbox/di.dart';
|
||||||
import 'package:sharedinbox/ui/router.dart';
|
import 'package:sharedinbox/ui/router.dart';
|
||||||
@@ -35,10 +32,6 @@ void main({List<Override> overrides = const []}) async {
|
|||||||
};
|
};
|
||||||
|
|
||||||
await initDatabasePath();
|
await initDatabasePath();
|
||||||
if (Platform.isAndroid) {
|
|
||||||
await initNotifications();
|
|
||||||
await registerBackgroundSync();
|
|
||||||
}
|
|
||||||
runApp(
|
runApp(
|
||||||
ProviderScope(overrides: overrides, child: const SharedInboxApp()),
|
ProviderScope(overrides: overrides, child: const SharedInboxApp()),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import 'package:sharedinbox/core/models/email.dart';
|
|||||||
import 'package:sharedinbox/core/models/undo_action.dart';
|
import 'package:sharedinbox/core/models/undo_action.dart';
|
||||||
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
||||||
import 'package:sharedinbox/di.dart';
|
import 'package:sharedinbox/di.dart';
|
||||||
import 'package:sharedinbox/ui/widgets/email_tile.dart';
|
|
||||||
import 'package:sharedinbox/ui/widgets/folder_drawer.dart';
|
import 'package:sharedinbox/ui/widgets/folder_drawer.dart';
|
||||||
import 'package:sharedinbox/ui/widgets/snooze_picker.dart';
|
import 'package:sharedinbox/ui/widgets/snooze_picker.dart';
|
||||||
|
|
||||||
@@ -181,7 +180,22 @@ class _EmailListScreenState extends ConsumerState<EmailListScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
_buildSyncButton(emailRepo),
|
IconButton(
|
||||||
|
icon: const Icon(Icons.sync),
|
||||||
|
onPressed: () async {
|
||||||
|
try {
|
||||||
|
await emailRepo.syncEmails(
|
||||||
|
widget.accountId,
|
||||||
|
widget.mailboxPath,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
ScaffoldMessenger.of(
|
||||||
|
context,
|
||||||
|
).showSnackBar(SnackBar(content: Text('Sync failed: $e')));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.edit),
|
icon: const Icon(Icons.edit),
|
||||||
onPressed: () => context.push(
|
onPressed: () => context.push(
|
||||||
@@ -215,44 +229,6 @@ class _EmailListScreenState extends ConsumerState<EmailListScreen> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildSyncButton(EmailRepository emailRepo) {
|
|
||||||
final isSyncing =
|
|
||||||
ref.watch(isSyncingProvider(widget.accountId)).valueOrNull ?? false;
|
|
||||||
final hasError =
|
|
||||||
ref.watch(syncLastErrorProvider(widget.accountId)).valueOrNull != null;
|
|
||||||
return IconButton(
|
|
||||||
tooltip: isSyncing
|
|
||||||
? 'Syncing…'
|
|
||||||
: hasError
|
|
||||||
? 'Sync error'
|
|
||||||
: 'Sync',
|
|
||||||
icon: isSyncing
|
|
||||||
? const SizedBox(
|
|
||||||
width: 20,
|
|
||||||
height: 20,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
)
|
|
||||||
: hasError
|
|
||||||
? const Icon(Icons.sync_problem, color: Colors.red)
|
|
||||||
: const Icon(Icons.sync),
|
|
||||||
onPressed: isSyncing
|
|
||||||
? null
|
|
||||||
: () async {
|
|
||||||
try {
|
|
||||||
await emailRepo.syncEmails(
|
|
||||||
widget.accountId,
|
|
||||||
widget.mailboxPath,
|
|
||||||
);
|
|
||||||
} catch (e) {
|
|
||||||
if (!mounted) return;
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
|
||||||
SnackBar(content: Text('Sync failed: $e')),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _selectionBottomBar() {
|
Widget _selectionBottomBar() {
|
||||||
return BottomAppBar(
|
return BottomAppBar(
|
||||||
child: Row(
|
child: Row(
|
||||||
@@ -712,9 +688,10 @@ class _EmailListScreenState extends ConsumerState<EmailListScreen> {
|
|||||||
itemBuilder: (ctx, i) {
|
itemBuilder: (ctx, i) {
|
||||||
final e = emails[i];
|
final e = emails[i];
|
||||||
final isSelected = _selectedSearchIds.contains(e.id);
|
final isSelected = _selectedSearchIds.contains(e.id);
|
||||||
return EmailTile(
|
final sender = e.from.isNotEmpty
|
||||||
email: e,
|
? (e.from.first.name ?? e.from.first.email)
|
||||||
selected: isSelected,
|
: '(unknown)';
|
||||||
|
return ListTile(
|
||||||
leading: SizedBox(
|
leading: SizedBox(
|
||||||
width: 40,
|
width: 40,
|
||||||
child: _selecting
|
child: _selecting
|
||||||
@@ -722,7 +699,25 @@ class _EmailListScreenState extends ConsumerState<EmailListScreen> {
|
|||||||
value: isSelected,
|
value: isSelected,
|
||||||
onChanged: (_) => _toggleSearchSelection(e.id),
|
onChanged: (_) => _toggleSearchSelection(e.id),
|
||||||
)
|
)
|
||||||
: null,
|
: Icon(
|
||||||
|
e.isSeen ? Icons.mail_outline : Icons.mail,
|
||||||
|
color: e.isSeen ? null : Theme.of(ctx).colorScheme.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
title: Text(
|
||||||
|
sender,
|
||||||
|
style:
|
||||||
|
e.isSeen ? null : const TextStyle(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
subtitle: Text(
|
||||||
|
e.subject ?? '(no subject)',
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
selected: isSelected,
|
||||||
|
trailing: Text(
|
||||||
|
e.sentAt != null ? _dateFmt.format(e.sentAt!) : '',
|
||||||
|
style: Theme.of(ctx).textTheme.bodySmall,
|
||||||
),
|
),
|
||||||
onTap: _selecting
|
onTap: _selecting
|
||||||
? () => _toggleSearchSelection(e.id)
|
? () => _toggleSearchSelection(e.id)
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import 'package:sharedinbox/core/models/email.dart';
|
|||||||
import 'package:sharedinbox/core/models/mailbox.dart';
|
import 'package:sharedinbox/core/models/mailbox.dart';
|
||||||
import 'package:sharedinbox/core/utils/logger.dart';
|
import 'package:sharedinbox/core/utils/logger.dart';
|
||||||
import 'package:sharedinbox/di.dart';
|
import 'package:sharedinbox/di.dart';
|
||||||
import 'package:sharedinbox/ui/widgets/email_tile.dart';
|
|
||||||
|
|
||||||
class SearchScreen extends ConsumerStatefulWidget {
|
class SearchScreen extends ConsumerStatefulWidget {
|
||||||
const SearchScreen({super.key, this.accountId});
|
const SearchScreen({super.key, this.accountId});
|
||||||
@@ -156,15 +155,7 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|||||||
if (r.emails.isNotEmpty) ...[
|
if (r.emails.isNotEmpty) ...[
|
||||||
const _SectionHeader('Messages'),
|
const _SectionHeader('Messages'),
|
||||||
for (final e in r.emails)
|
for (final e in r.emails)
|
||||||
EmailTile(
|
_EmailTile(email: e, accountId: e.accountId),
|
||||||
email: e,
|
|
||||||
showLocation: true,
|
|
||||||
onTap: () => context.push(
|
|
||||||
'/accounts/${e.accountId}/mailboxes'
|
|
||||||
'/${Uri.encodeComponent(e.mailboxPath)}'
|
|
||||||
'/emails/${Uri.encodeComponent(e.id)}',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@@ -255,3 +246,42 @@ class _AddressTile extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _EmailTile extends StatelessWidget {
|
||||||
|
const _EmailTile({required this.email, required this.accountId});
|
||||||
|
final Email email;
|
||||||
|
final String accountId;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final sender = email.from.isNotEmpty
|
||||||
|
? (email.from.first.name ?? email.from.first.email)
|
||||||
|
: '(unknown)';
|
||||||
|
return ListTile(
|
||||||
|
leading: Icon(
|
||||||
|
email.isSeen ? Icons.mail_outline : Icons.mail,
|
||||||
|
color: email.isSeen ? null : Theme.of(context).colorScheme.primary,
|
||||||
|
),
|
||||||
|
title: Text(sender),
|
||||||
|
subtitle: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
email.subject ?? '(no subject)',
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'$accountId • ${email.mailboxPath}',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
onTap: () => context.push(
|
||||||
|
'/accounts/$accountId/mailboxes'
|
||||||
|
'/${Uri.encodeComponent(email.mailboxPath)}'
|
||||||
|
'/emails/${Uri.encodeComponent(email.id)}',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,74 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
|
|
||||||
import 'package:sharedinbox/core/models/email.dart';
|
|
||||||
|
|
||||||
final _dateFmt = DateFormat('MMM d');
|
|
||||||
|
|
||||||
/// A flat list tile for an individual [email].
|
|
||||||
///
|
|
||||||
/// Used in search-result lists and the per-mailbox search overlay.
|
|
||||||
/// Pass a custom [leading] widget to support selection-mode checkboxes.
|
|
||||||
class EmailTile extends StatelessWidget {
|
|
||||||
const EmailTile({
|
|
||||||
super.key,
|
|
||||||
required this.email,
|
|
||||||
required this.onTap,
|
|
||||||
this.leading,
|
|
||||||
this.selected = false,
|
|
||||||
this.onLongPress,
|
|
||||||
this.showLocation = false,
|
|
||||||
});
|
|
||||||
|
|
||||||
final Email email;
|
|
||||||
final VoidCallback onTap;
|
|
||||||
final Widget? leading;
|
|
||||||
final bool selected;
|
|
||||||
final VoidCallback? onLongPress;
|
|
||||||
|
|
||||||
/// When true, appends `accountId • mailboxPath` as a second subtitle line.
|
|
||||||
final bool showLocation;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final sender = email.from.isNotEmpty
|
|
||||||
? (email.from.first.name ?? email.from.first.email)
|
|
||||||
: '(unknown)';
|
|
||||||
final date = email.sentAt != null ? _dateFmt.format(email.sentAt!) : '';
|
|
||||||
|
|
||||||
return ListTile(
|
|
||||||
leading: leading ??
|
|
||||||
Icon(
|
|
||||||
email.isSeen ? Icons.mail_outline : Icons.mail,
|
|
||||||
color: email.isSeen ? null : Theme.of(context).colorScheme.primary,
|
|
||||||
),
|
|
||||||
title: Text(
|
|
||||||
sender,
|
|
||||||
style:
|
|
||||||
email.isSeen ? null : const TextStyle(fontWeight: FontWeight.bold),
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
),
|
|
||||||
subtitle: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
email.subject ?? '(no subject)',
|
|
||||||
maxLines: 1,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
),
|
|
||||||
if (showLocation)
|
|
||||||
Text(
|
|
||||||
'${email.accountId} • ${email.mailboxPath}',
|
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
trailing: date.isEmpty
|
|
||||||
? null
|
|
||||||
: Text(date, style: Theme.of(context).textTheme.bodySmall),
|
|
||||||
selected: selected,
|
|
||||||
onTap: onTap,
|
|
||||||
onLongPress: onLongPress,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -45,10 +45,6 @@ dependencies:
|
|||||||
url_launcher: ^6.3.2
|
url_launcher: ^6.3.2
|
||||||
flutter_markdown: ^0.7.7+1
|
flutter_markdown: ^0.7.7+1
|
||||||
|
|
||||||
# Background sync and local notifications
|
|
||||||
flutter_local_notifications: ^18.0.1
|
|
||||||
workmanager: ^0.5.2
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|||||||
@@ -52,7 +52,6 @@ const _excluded = {
|
|||||||
'lib/ui/widgets/try_connection_button.dart',
|
'lib/ui/widgets/try_connection_button.dart',
|
||||||
'lib/ui/widgets/undo_shell.dart',
|
'lib/ui/widgets/undo_shell.dart',
|
||||||
'lib/core/sync/account_sync_manager.dart',
|
'lib/core/sync/account_sync_manager.dart',
|
||||||
'lib/core/sync/background_sync.dart',
|
|
||||||
'lib/core/sync/reliability_runner.dart',
|
'lib/core/sync/reliability_runner.dart',
|
||||||
'lib/data/jmap/jmap_client.dart',
|
'lib/data/jmap/jmap_client.dart',
|
||||||
'lib/data/jmap/sieve_repository.dart',
|
'lib/data/jmap/sieve_repository.dart',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:drift/drift.dart' hide isNull, isNotNull;
|
import 'package:drift/drift.dart' show Value;
|
||||||
import 'package:enough_mail/enough_mail.dart' as imap;
|
import 'package:enough_mail/enough_mail.dart' as imap;
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
@@ -16,7 +16,6 @@ import 'package:sharedinbox/data/repositories/email_repository_impl.dart';
|
|||||||
|
|
||||||
import 'account_repository_impl_test.dart' show MapSecureStorage;
|
import 'account_repository_impl_test.dart' show MapSecureStorage;
|
||||||
import 'db_test_helper.dart';
|
import 'db_test_helper.dart';
|
||||||
import 'fake_imap.dart' show FakeImapClient;
|
|
||||||
// ── Helpers ───────────────────────────────────────────────────────────────────
|
// ── Helpers ───────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
const _account = Account(
|
const _account = Account(
|
||||||
@@ -163,19 +162,15 @@ Future<imap.SmtpClient> _noSmtpConnect(Account a, String u, String p) =>
|
|||||||
Future.error(UnsupportedError('SMTP unavailable in unit tests'));
|
Future.error(UnsupportedError('SMTP unavailable in unit tests'));
|
||||||
|
|
||||||
({AppDatabase db, AccountRepositoryImpl accounts, EmailRepositoryImpl emails})
|
({AppDatabase db, AccountRepositoryImpl accounts, EmailRepositoryImpl emails})
|
||||||
_makeRepos({
|
_makeRepos({http.Client? httpClient}) {
|
||||||
http.Client? httpClient,
|
|
||||||
Future<imap.ImapClient> Function(Account, String, String)? imapConnect,
|
|
||||||
Future<imap.SmtpClient> Function(Account, String, String)? smtpConnect,
|
|
||||||
}) {
|
|
||||||
final db = openTestDatabase();
|
final db = openTestDatabase();
|
||||||
final storage = MapSecureStorage();
|
final storage = MapSecureStorage();
|
||||||
final accounts = AccountRepositoryImpl(db, storage);
|
final accounts = AccountRepositoryImpl(db, storage);
|
||||||
final emails = EmailRepositoryImpl(
|
final emails = EmailRepositoryImpl(
|
||||||
db,
|
db,
|
||||||
accounts,
|
accounts,
|
||||||
imapConnect: imapConnect ?? _noImapConnect,
|
imapConnect: _noImapConnect,
|
||||||
smtpConnect: smtpConnect ?? _noSmtpConnect,
|
smtpConnect: _noSmtpConnect,
|
||||||
httpClient: httpClient,
|
httpClient: httpClient,
|
||||||
);
|
);
|
||||||
return (db: db, accounts: accounts, emails: emails);
|
return (db: db, accounts: accounts, emails: emails);
|
||||||
@@ -1940,163 +1935,6 @@ void main() {
|
|||||||
expect(row.lastError, isNull);
|
expect(row.lastError, isNull);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
group('concurrent moves', () {
|
|
||||||
test(
|
|
||||||
'two simultaneous moves enqueue two changes and leave email in last destination',
|
|
||||||
() async {
|
|
||||||
final r = _makeRepos();
|
|
||||||
await r.accounts.addAccount(_account, 'pw');
|
|
||||||
await r.db.into(r.db.emails).insert(
|
|
||||||
EmailsCompanion.insert(
|
|
||||||
id: 'acc-1:5',
|
|
||||||
accountId: 'acc-1',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
uid: 5,
|
|
||||||
receivedAt: DateTime(2024),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Fire both moves without awaiting to exercise concurrent enqueue logic.
|
|
||||||
final f1 = r.emails.moveEmail('acc-1:5', 'Archive');
|
|
||||||
final f2 = r.emails.moveEmail('acc-1:5', 'Trash');
|
|
||||||
await Future.wait([f1, f2]);
|
|
||||||
|
|
||||||
final changes = await r.db.select(r.db.pendingChanges).get();
|
|
||||||
expect(changes, hasLength(2));
|
|
||||||
expect(changes.map((c) => c.changeType), everyElement('move'));
|
|
||||||
|
|
||||||
final destinations =
|
|
||||||
changes.map((c) => (jsonDecode(c.payload) as Map)['dest']).toSet();
|
|
||||||
expect(destinations, containsAll(['Archive', 'Trash']));
|
|
||||||
|
|
||||||
final email = await r.emails.getEmail('acc-1:5');
|
|
||||||
expect(
|
|
||||||
email!.mailboxPath,
|
|
||||||
anyOf('Archive', 'Trash'),
|
|
||||||
reason:
|
|
||||||
'email must be optimistically moved to one of the two destinations',
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
group('IMAP SMTP auth failure', () {
|
|
||||||
test('sendEmail propagates SMTP authentication error', () async {
|
|
||||||
final r = _makeRepos(
|
|
||||||
smtpConnect: (Account _, String __, String ___) => Future.error(
|
|
||||||
Exception('535 5.7.8 Authentication credentials invalid'),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await r.accounts.addAccount(_account, 'pw');
|
|
||||||
|
|
||||||
const draft = EmailDraft(
|
|
||||||
from: EmailAddress(name: 'Alice', email: 'alice@example.com'),
|
|
||||||
to: [EmailAddress(name: 'Bob', email: 'bob@example.com')],
|
|
||||||
cc: [],
|
|
||||||
subject: 'Test',
|
|
||||||
body: 'Body',
|
|
||||||
);
|
|
||||||
|
|
||||||
await expectLater(
|
|
||||||
r.emails.sendEmail('acc-1', draft),
|
|
||||||
throwsA(
|
|
||||||
isA<Exception>().having(
|
|
||||||
(e) => e.toString(),
|
|
||||||
'message',
|
|
||||||
contains('535'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
group('IMAP UID validity change', () {
|
|
||||||
test('full re-sync wipes stale emails when uidValidity changes', () async {
|
|
||||||
final r = _makeRepos(
|
|
||||||
imapConnect: (Account _, String __, String ___) async =>
|
|
||||||
_FakeImapClientUidValidity(456),
|
|
||||||
);
|
|
||||||
await r.accounts.addAccount(_account, 'pw');
|
|
||||||
|
|
||||||
// Pre-seed two emails from the old server epoch (uidValidity=123).
|
|
||||||
await r.db.into(r.db.emails).insert(
|
|
||||||
EmailsCompanion.insert(
|
|
||||||
id: 'acc-1:1',
|
|
||||||
accountId: 'acc-1',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
uid: 1,
|
|
||||||
receivedAt: DateTime(2024),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await r.db.into(r.db.emails).insert(
|
|
||||||
EmailsCompanion.insert(
|
|
||||||
id: 'acc-1:2',
|
|
||||||
accountId: 'acc-1',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
uid: 2,
|
|
||||||
receivedAt: DateTime(2024),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Seed an IMAP checkpoint with the old uidValidity so the code detects
|
|
||||||
// a mismatch and triggers a full re-sync.
|
|
||||||
await r.db.into(r.db.syncStates).insertOnConflictUpdate(
|
|
||||||
SyncStatesCompanion.insert(
|
|
||||||
accountId: 'acc-1',
|
|
||||||
resourceType: 'IMAP:INBOX',
|
|
||||||
state: '{"uidValidity":123,"lastUid":2,"highestModSeq":null}',
|
|
||||||
syncedAt: DateTime(2024),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
await r.emails.syncEmails('acc-1', 'INBOX');
|
|
||||||
|
|
||||||
// Old emails must be wiped; the fake server returns zero messages.
|
|
||||||
final remaining = await r.db.select(r.db.emails).get();
|
|
||||||
expect(remaining, isEmpty);
|
|
||||||
|
|
||||||
// Checkpoint must be updated to the new uidValidity.
|
|
||||||
final stateRow = await (r.db.select(r.db.syncStates)
|
|
||||||
..where(
|
|
||||||
(t) =>
|
|
||||||
t.accountId.equals('acc-1') &
|
|
||||||
t.resourceType.equals('IMAP:INBOX'),
|
|
||||||
))
|
|
||||||
.getSingleOrNull();
|
|
||||||
expect(stateRow, isNotNull);
|
|
||||||
final state = jsonDecode(stateRow!.state) as Map<String, dynamic>;
|
|
||||||
expect(state['uidValidity'], 456);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// ── Additional fake IMAP client for UID-validity tests ───────────────────────
|
|
||||||
|
|
||||||
class _FakeImapClientUidValidity extends FakeImapClient {
|
|
||||||
_FakeImapClientUidValidity(this._uidValidity);
|
|
||||||
final int _uidValidity;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<imap.Mailbox> selectMailboxByPath(
|
|
||||||
String path, {
|
|
||||||
bool enableCondStore = false,
|
|
||||||
imap.QResyncParameters? qresync,
|
|
||||||
}) async =>
|
|
||||||
imap.Mailbox(
|
|
||||||
encodedName: path,
|
|
||||||
encodedPath: path,
|
|
||||||
flags: [],
|
|
||||||
pathSeparator: '/',
|
|
||||||
uidValidity: _uidValidity,
|
|
||||||
);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<imap.SearchImapResult> uidSearchMessages({
|
|
||||||
String searchCriteria = 'ALL',
|
|
||||||
List<imap.ReturnOption>? returnOptions,
|
|
||||||
Duration? responseTimeout,
|
|
||||||
}) async =>
|
|
||||||
imap.SearchImapResult();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── SSE test helper ──────────────────────────────────────────────────────────
|
// ── SSE test helper ──────────────────────────────────────────────────────────
|
||||||
|
|||||||
+24
-234
@@ -4,22 +4,11 @@ import 'package:flutter_test/flutter_test.dart';
|
|||||||
import 'package:sharedinbox/data/db/database.dart';
|
import 'package:sharedinbox/data/db/database.dart';
|
||||||
import 'package:sqlite3/sqlite3.dart' as sqlite;
|
import 'package:sqlite3/sqlite3.dart' as sqlite;
|
||||||
|
|
||||||
/// Reads all column names for [tableName] from [db].
|
|
||||||
Future<List<String>> _tableColumns(AppDatabase db, String tableName) async {
|
|
||||||
final rows = await db.customSelect('PRAGMA table_info($tableName)').get();
|
|
||||||
return rows.map((r) => r.read<String>('name')).toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
group('Migration', () {
|
group('Migration', () {
|
||||||
test('schemaVersion matches expected value', () async {
|
test('upgrade from v1 to latest', () async {
|
||||||
final db = AppDatabase(NativeDatabase.memory());
|
// 1. Create a V1 database using raw sqlite3.
|
||||||
expect(db.schemaVersion, 25);
|
final dbFile = File('test_migration.db');
|
||||||
await db.close();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('upgrade from v1 to latest checks all added columns', () async {
|
|
||||||
final dbFile = File('test_migration_v1.db');
|
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
if (dbFile.existsSync()) dbFile.deleteSync();
|
||||||
|
|
||||||
final rawDb = sqlite.sqlite3.open(dbFile.path);
|
final rawDb = sqlite.sqlite3.open(dbFile.path);
|
||||||
@@ -78,240 +67,41 @@ void main() {
|
|||||||
rawDb.execute('PRAGMA user_version = 1;');
|
rawDb.execute('PRAGMA user_version = 1;');
|
||||||
rawDb.close();
|
rawDb.close();
|
||||||
|
|
||||||
|
// 2. Open it with AppDatabase (v22).
|
||||||
final db = AppDatabase(NativeDatabase(dbFile));
|
final db = AppDatabase(NativeDatabase(dbFile));
|
||||||
|
|
||||||
// Trigger migration by performing a query.
|
// Trigger migration by performing a simple query.
|
||||||
final accs = await db.select(db.accounts).get();
|
final accs = await db.select(db.accounts).get();
|
||||||
expect(accs, hasLength(1));
|
expect(accs, hasLength(1));
|
||||||
expect(accs.first.displayName, 'Alice');
|
expect(accs.first.displayName, 'Alice');
|
||||||
expect(accs.first.accountType, 'imap');
|
expect(accs.first.accountType, 'imap'); // default value
|
||||||
|
|
||||||
// v2–v3: accounts columns.
|
// 3. Verify that all columns exist.
|
||||||
final accountColumns = await _tableColumns(db, 'accounts');
|
// If migration failed, it would have thrown an exception during opening or query.
|
||||||
expect(
|
final tableInfo =
|
||||||
accountColumns,
|
await db.customSelect('PRAGMA table_info(emails)').get();
|
||||||
containsAll(['account_type', 'jmap_url', 'username']),
|
final columns = tableInfo.map((r) => r.read<String>('name')).toList();
|
||||||
);
|
|
||||||
|
expect(columns, contains('thread_id'));
|
||||||
|
expect(columns, contains('snoozed_until'));
|
||||||
|
expect(columns, contains('snoozed_from_mailbox_path'));
|
||||||
|
|
||||||
|
final accountsInfo =
|
||||||
|
await db.customSelect('PRAGMA table_info(accounts)').get();
|
||||||
|
final accountColumns =
|
||||||
|
accountsInfo.map((r) => r.read<String>('name')).toList();
|
||||||
|
expect(accountColumns, contains('account_type'));
|
||||||
|
expect(accountColumns, contains('username'));
|
||||||
expect(accountColumns, contains('manage_sieve_host'));
|
expect(accountColumns, contains('manage_sieve_host'));
|
||||||
|
|
||||||
// v14: threading columns.
|
|
||||||
final emailColumns = await _tableColumns(db, 'emails');
|
|
||||||
expect(
|
|
||||||
emailColumns,
|
|
||||||
containsAll(['thread_id', 'message_id', 'in_reply_to', 'references']),
|
|
||||||
);
|
|
||||||
|
|
||||||
// v22: snooze columns.
|
|
||||||
expect(
|
|
||||||
emailColumns,
|
|
||||||
containsAll(['snoozed_until', 'snoozed_from_mailbox_path']),
|
|
||||||
);
|
|
||||||
|
|
||||||
// v23: list-unsubscribe header column.
|
|
||||||
expect(emailColumns, contains('list_unsubscribe_header'));
|
|
||||||
|
|
||||||
// v8: mailboxes role column.
|
|
||||||
final mailboxColumns = await _tableColumns(db, 'mailboxes');
|
|
||||||
expect(mailboxColumns, contains('role'));
|
|
||||||
|
|
||||||
// v9: email_bodies cached_at column.
|
|
||||||
final bodyColumns = await _tableColumns(db, 'email_bodies');
|
|
||||||
expect(bodyColumns, contains('cached_at'));
|
|
||||||
expect(bodyColumns, contains('headers_json'));
|
|
||||||
|
|
||||||
// v4: drafts table with v24 imap_server_id column.
|
|
||||||
final draftColumns = await _tableColumns(db, 'drafts');
|
|
||||||
expect(draftColumns, contains('imap_server_id'));
|
|
||||||
|
|
||||||
// v5, v6, v7, v12, v17, v19, v21: new tables.
|
|
||||||
final allTables = await db
|
|
||||||
.customSelect("SELECT name FROM sqlite_master WHERE type='table'")
|
|
||||||
.get();
|
|
||||||
final tableNames = allTables.map((r) => r.read<String>('name')).toList();
|
|
||||||
expect(
|
|
||||||
tableNames,
|
|
||||||
containsAll([
|
|
||||||
'sync_states', // v5
|
|
||||||
'pending_changes', // v6
|
|
||||||
'sync_logs', // v7
|
|
||||||
'sync_log_mailboxes', // v12
|
|
||||||
'threads', // v17
|
|
||||||
'sync_health', // v19
|
|
||||||
'undo_actions', // v21
|
|
||||||
]),
|
|
||||||
);
|
|
||||||
|
|
||||||
// v18, v22, v25: indexes.
|
|
||||||
final allIndexes = await db
|
|
||||||
.customSelect("SELECT name FROM sqlite_master WHERE type='index'")
|
|
||||||
.get();
|
|
||||||
final indexNames = allIndexes.map((r) => r.read<String>('name')).toSet();
|
|
||||||
expect(
|
|
||||||
indexNames,
|
|
||||||
containsAll([
|
|
||||||
'emails_received_at', // v18
|
|
||||||
'emails_thread_id', // v18
|
|
||||||
'pending_changes_account_id', // v18
|
|
||||||
'emails_snoozed_until', // v22
|
|
||||||
'mailboxes_account_id', // v25
|
|
||||||
'threads_latest_date', // v25
|
|
||||||
]),
|
|
||||||
);
|
|
||||||
|
|
||||||
await db.close();
|
await db.close();
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
if (dbFile.existsSync()) dbFile.deleteSync();
|
||||||
});
|
});
|
||||||
|
|
||||||
test(
|
test('fresh install (v22) works', () async {
|
||||||
'upgrade from v22 to latest adds list_unsubscribe_header and imap_server_id',
|
|
||||||
() async {
|
|
||||||
final dbFile = File('test_migration_v22.db');
|
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
|
||||||
|
|
||||||
// Build a v22 database schema directly with raw SQL.
|
|
||||||
final rawDb = sqlite.sqlite3.open(dbFile.path);
|
|
||||||
rawDb.execute('''
|
|
||||||
CREATE TABLE accounts (
|
|
||||||
id TEXT NOT NULL PRIMARY KEY,
|
|
||||||
display_name TEXT NOT NULL,
|
|
||||||
email TEXT NOT NULL,
|
|
||||||
imap_host TEXT NOT NULL,
|
|
||||||
imap_port INTEGER NOT NULL DEFAULT 993,
|
|
||||||
imap_ssl INTEGER NOT NULL DEFAULT 1 CHECK ("imap_ssl" IN (0, 1)),
|
|
||||||
smtp_host TEXT NOT NULL DEFAULT '',
|
|
||||||
smtp_port INTEGER NOT NULL DEFAULT 465,
|
|
||||||
smtp_ssl INTEGER NOT NULL DEFAULT 1 CHECK ("smtp_ssl" IN (0, 1)),
|
|
||||||
account_type TEXT NOT NULL DEFAULT 'imap',
|
|
||||||
jmap_url TEXT NULL,
|
|
||||||
username TEXT NULL,
|
|
||||||
manage_sieve_host TEXT NULL,
|
|
||||||
manage_sieve_port INTEGER NULL,
|
|
||||||
manage_sieve_ssl INTEGER NULL,
|
|
||||||
manage_sieve_available INTEGER NOT NULL DEFAULT 0 CHECK ("manage_sieve_available" IN (0, 1)),
|
|
||||||
verbose INTEGER NOT NULL DEFAULT 0 CHECK ("verbose" IN (0, 1))
|
|
||||||
);
|
|
||||||
''');
|
|
||||||
rawDb.execute('''
|
|
||||||
CREATE TABLE drafts (
|
|
||||||
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
||||||
account_id TEXT NULL,
|
|
||||||
reply_to_email_id TEXT NULL,
|
|
||||||
to_text TEXT NOT NULL DEFAULT '',
|
|
||||||
cc_text TEXT NOT NULL DEFAULT '',
|
|
||||||
subject_text TEXT NOT NULL DEFAULT '',
|
|
||||||
body_text TEXT NOT NULL DEFAULT '',
|
|
||||||
updated_at INTEGER NOT NULL
|
|
||||||
);
|
|
||||||
''');
|
|
||||||
rawDb.execute('''
|
|
||||||
CREATE TABLE mailboxes (
|
|
||||||
id TEXT NOT NULL PRIMARY KEY,
|
|
||||||
account_id TEXT NOT NULL,
|
|
||||||
path TEXT NOT NULL,
|
|
||||||
name TEXT NOT NULL,
|
|
||||||
unread_count INTEGER NOT NULL DEFAULT 0,
|
|
||||||
total_count INTEGER NOT NULL DEFAULT 0,
|
|
||||||
role TEXT NULL
|
|
||||||
);
|
|
||||||
''');
|
|
||||||
rawDb.execute('''
|
|
||||||
CREATE TABLE emails (
|
|
||||||
id TEXT NOT NULL PRIMARY KEY,
|
|
||||||
account_id TEXT NOT NULL,
|
|
||||||
mailbox_path TEXT NOT NULL,
|
|
||||||
uid INTEGER NOT NULL,
|
|
||||||
subject TEXT NULL,
|
|
||||||
sent_at INTEGER NULL,
|
|
||||||
received_at INTEGER NOT NULL,
|
|
||||||
from_json TEXT NOT NULL DEFAULT '[]',
|
|
||||||
to_addresses TEXT NOT NULL DEFAULT '[]',
|
|
||||||
cc_json TEXT NOT NULL DEFAULT '[]',
|
|
||||||
preview TEXT NULL,
|
|
||||||
is_seen INTEGER NOT NULL DEFAULT 0 CHECK ("is_seen" IN (0, 1)),
|
|
||||||
is_flagged INTEGER NOT NULL DEFAULT 0 CHECK ("is_flagged" IN (0, 1)),
|
|
||||||
has_attachment INTEGER NOT NULL DEFAULT 0 CHECK ("has_attachment" IN (0, 1)),
|
|
||||||
thread_id TEXT NULL,
|
|
||||||
message_id TEXT NULL,
|
|
||||||
in_reply_to TEXT NULL,
|
|
||||||
"references" TEXT NULL,
|
|
||||||
snoozed_until INTEGER NULL,
|
|
||||||
snoozed_from_mailbox_path TEXT NULL
|
|
||||||
);
|
|
||||||
''');
|
|
||||||
rawDb.execute('''
|
|
||||||
CREATE TABLE threads (
|
|
||||||
account_id TEXT NOT NULL,
|
|
||||||
mailbox_path TEXT NOT NULL,
|
|
||||||
id TEXT NOT NULL,
|
|
||||||
subject TEXT NULL,
|
|
||||||
latest_date INTEGER NOT NULL,
|
|
||||||
message_count INTEGER NOT NULL DEFAULT 1,
|
|
||||||
has_unread INTEGER NOT NULL DEFAULT 0 CHECK ("has_unread" IN (0, 1)),
|
|
||||||
is_flagged INTEGER NOT NULL DEFAULT 0 CHECK ("is_flagged" IN (0, 1)),
|
|
||||||
participants_json TEXT NOT NULL DEFAULT '[]',
|
|
||||||
preview TEXT NULL,
|
|
||||||
latest_email_id TEXT NOT NULL,
|
|
||||||
email_ids_json TEXT NOT NULL DEFAULT '[]',
|
|
||||||
PRIMARY KEY (account_id, mailbox_path, id)
|
|
||||||
);
|
|
||||||
''');
|
|
||||||
rawDb.execute('PRAGMA user_version = 22;');
|
|
||||||
rawDb.close();
|
|
||||||
|
|
||||||
final db = AppDatabase(NativeDatabase(dbFile));
|
|
||||||
// Trigger migration.
|
|
||||||
await db.select(db.accounts).get();
|
|
||||||
|
|
||||||
final emailColumns = await _tableColumns(db, 'emails');
|
|
||||||
expect(emailColumns, contains('list_unsubscribe_header'));
|
|
||||||
|
|
||||||
final draftColumns = await _tableColumns(db, 'drafts');
|
|
||||||
expect(draftColumns, contains('imap_server_id'));
|
|
||||||
|
|
||||||
// v25: new indexes on mailboxes and threads.
|
|
||||||
final allIndexes = await db
|
|
||||||
.customSelect("SELECT name FROM sqlite_master WHERE type='index'")
|
|
||||||
.get();
|
|
||||||
final indexNames = allIndexes.map((r) => r.read<String>('name')).toSet();
|
|
||||||
expect(indexNames, contains('mailboxes_account_id'));
|
|
||||||
expect(indexNames, contains('threads_latest_date'));
|
|
||||||
|
|
||||||
await db.close();
|
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('fresh install creates all tables at schemaVersion 25', () async {
|
|
||||||
final db = AppDatabase(NativeDatabase.memory());
|
final db = AppDatabase(NativeDatabase.memory());
|
||||||
|
// Just ensure we can create everything and query.
|
||||||
await db.select(db.accounts).get();
|
await db.select(db.accounts).get();
|
||||||
|
|
||||||
final allTables = await db
|
|
||||||
.customSelect("SELECT name FROM sqlite_master WHERE type='table'")
|
|
||||||
.get();
|
|
||||||
final tableNames = allTables.map((r) => r.read<String>('name')).toSet();
|
|
||||||
expect(
|
|
||||||
tableNames,
|
|
||||||
containsAll([
|
|
||||||
'accounts',
|
|
||||||
'mailboxes',
|
|
||||||
'emails',
|
|
||||||
'email_bodies',
|
|
||||||
'drafts',
|
|
||||||
'sync_states',
|
|
||||||
'pending_changes',
|
|
||||||
'sync_logs',
|
|
||||||
'sync_log_mailboxes',
|
|
||||||
'threads',
|
|
||||||
'sync_health',
|
|
||||||
'undo_actions',
|
|
||||||
]),
|
|
||||||
);
|
|
||||||
|
|
||||||
final emailColumns = await _tableColumns(db, 'emails');
|
|
||||||
expect(emailColumns, contains('list_unsubscribe_header'));
|
|
||||||
|
|
||||||
final draftColumns = await _tableColumns(db, 'drafts');
|
|
||||||
expect(draftColumns, contains('imap_server_id'));
|
|
||||||
|
|
||||||
await db.close();
|
await db.close();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ import 'package:sharedinbox/ui/screens/email_detail_screen.dart';
|
|||||||
import 'package:sharedinbox/ui/screens/email_list_screen.dart';
|
import 'package:sharedinbox/ui/screens/email_list_screen.dart';
|
||||||
import 'package:sharedinbox/ui/screens/mailbox_list_screen.dart';
|
import 'package:sharedinbox/ui/screens/mailbox_list_screen.dart';
|
||||||
import 'package:sharedinbox/ui/screens/search_screen.dart';
|
import 'package:sharedinbox/ui/screens/search_screen.dart';
|
||||||
import 'package:sharedinbox/ui/screens/thread_detail_screen.dart';
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Fake repositories
|
// Fake repositories
|
||||||
@@ -382,18 +381,6 @@ Widget buildApp({
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
GoRoute(
|
|
||||||
path: ':mailboxPath/threads/:threadId',
|
|
||||||
builder: (ctx, state) => ThreadDetailScreen(
|
|
||||||
accountId: state.pathParameters['accountId']!,
|
|
||||||
mailboxPath: Uri.decodeComponent(
|
|
||||||
state.pathParameters['mailboxPath']!,
|
|
||||||
),
|
|
||||||
threadId: Uri.decodeComponent(
|
|
||||||
state.pathParameters['threadId']!,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,182 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
|
||||||
|
|
||||||
import 'package:sharedinbox/core/models/mailbox.dart';
|
|
||||||
import 'package:sharedinbox/di.dart';
|
|
||||||
|
|
||||||
import 'helpers.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
group('SearchScreen', () {
|
|
||||||
testWidgets('shows placeholder hint text when empty', (tester) async {
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Type 3+ characters to search'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('typing fewer than 3 characters does not trigger search', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.enterText(find.byType(TextField), 'hi');
|
|
||||||
await tester.pump(const Duration(milliseconds: 400));
|
|
||||||
|
|
||||||
expect(find.text('Type 3+ characters to search'), findsOneWidget);
|
|
||||||
expect(find.text('No results'), findsNothing);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('shows "No results" when search returns nothing', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.enterText(find.byType(TextField), 'xyz');
|
|
||||||
await tester.pump(const Duration(milliseconds: 400));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('No results'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('shows email results under "Messages" section', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
final email = testEmail(subject: 'Invoice Q3');
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(searchResults: [email]),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.enterText(find.byType(TextField), 'inv');
|
|
||||||
await tester.pump(const Duration(milliseconds: 400));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Messages'), findsOneWidget);
|
|
||||||
expect(find.text('Invoice Q3'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('shows folder results under "Folders" section', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
const archiveMailbox = Mailbox(
|
|
||||||
id: 'acc-1:Archive',
|
|
||||||
accountId: 'acc-1',
|
|
||||||
path: 'Archive',
|
|
||||||
name: 'Archive',
|
|
||||||
unreadCount: 0,
|
|
||||||
totalCount: 5,
|
|
||||||
);
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository([archiveMailbox]),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.enterText(find.byType(TextField), 'arc');
|
|
||||||
await tester.pump(const Duration(milliseconds: 400));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Folders'), findsOneWidget);
|
|
||||||
expect(find.text('Archive'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('tapping clear button resets results to placeholder', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
final email = testEmail(subject: 'Found email');
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/search',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(searchResults: [email]),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.enterText(find.byType(TextField), 'found');
|
|
||||||
await tester.pump(const Duration(milliseconds: 400));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
expect(find.text('Found email'), findsOneWidget);
|
|
||||||
|
|
||||||
await tester.tap(find.byIcon(Icons.clear));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Found email'), findsNothing);
|
|
||||||
expect(find.text('Type 3+ characters to search'), findsOneWidget);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,198 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
|
||||||
|
|
||||||
import 'package:sharedinbox/core/models/email.dart';
|
|
||||||
import 'package:sharedinbox/di.dart';
|
|
||||||
|
|
||||||
import 'helpers.dart';
|
|
||||||
|
|
||||||
Email _threadEmail({
|
|
||||||
String id = 'acc-1:10',
|
|
||||||
bool isFlagged = false,
|
|
||||||
bool isSeen = true,
|
|
||||||
}) =>
|
|
||||||
Email(
|
|
||||||
id: id,
|
|
||||||
accountId: 'acc-1',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
uid: 10,
|
|
||||||
threadId: 'thread-1',
|
|
||||||
subject: 'Project update',
|
|
||||||
receivedAt: DateTime(2024, 6),
|
|
||||||
sentAt: DateTime(2024, 6, 1, 9),
|
|
||||||
from: const [EmailAddress(name: 'Bob', email: 'bob@example.com')],
|
|
||||||
to: const [EmailAddress(email: 'alice@example.com')],
|
|
||||||
cc: const [],
|
|
||||||
isSeen: isSeen,
|
|
||||||
isFlagged: isFlagged,
|
|
||||||
hasAttachment: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
group('ThreadDetailScreen', () {
|
|
||||||
testWidgets('shows "Thread not found or empty" when thread is empty', (
|
|
||||||
tester,
|
|
||||||
) async {
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Thread not found or empty'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('shows sender name for email in thread', (tester) async {
|
|
||||||
final email = _threadEmail();
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(emails: [email]),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.textContaining('Bob'), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('last email in thread is expanded by default', (tester) async {
|
|
||||||
final email = _threadEmail();
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(
|
|
||||||
emails: [email],
|
|
||||||
emailBody: const EmailBody(
|
|
||||||
emailId: 'acc-1:10',
|
|
||||||
textBody: 'Hello body text',
|
|
||||||
attachments: [],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
// Reply and delete buttons are visible for the expanded card.
|
|
||||||
expect(find.byIcon(Icons.reply), findsOneWidget);
|
|
||||||
expect(find.byIcon(Icons.delete_outline), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('tapping an expanded card collapses it', (tester) async {
|
|
||||||
final email = _threadEmail();
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(
|
|
||||||
emails: [email],
|
|
||||||
emailBody: const EmailBody(
|
|
||||||
emailId: 'acc-1:10',
|
|
||||||
textBody: 'Hello body text',
|
|
||||||
attachments: [],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
// Tap the expand_less icon to collapse.
|
|
||||||
await tester.tap(find.byIcon(Icons.expand_less));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.byIcon(Icons.reply), findsNothing);
|
|
||||||
expect(find.byIcon(Icons.expand_more), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('flagged email shows star icon', (tester) async {
|
|
||||||
final email = _threadEmail(isFlagged: true);
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(emails: [email]),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.byIcon(Icons.star), findsOneWidget);
|
|
||||||
});
|
|
||||||
|
|
||||||
testWidgets('expanded card shows plain text body', (tester) async {
|
|
||||||
final email = _threadEmail();
|
|
||||||
await tester.pumpWidget(
|
|
||||||
buildApp(
|
|
||||||
initialLocation: '/accounts/acc-1/mailboxes/INBOX/threads/thread-1',
|
|
||||||
overrides: [
|
|
||||||
accountRepositoryProvider.overrideWithValue(
|
|
||||||
FakeAccountRepository([kTestAccount]),
|
|
||||||
),
|
|
||||||
mailboxRepositoryProvider.overrideWithValue(
|
|
||||||
FakeMailboxRepository(),
|
|
||||||
),
|
|
||||||
emailRepositoryProvider.overrideWithValue(
|
|
||||||
FakeEmailRepository(
|
|
||||||
emails: [email],
|
|
||||||
emailBody: const EmailBody(
|
|
||||||
emailId: 'acc-1:10',
|
|
||||||
textBody: 'Body content here',
|
|
||||||
attachments: [],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text('Body content here'), findsOneWidget);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user