mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
af32183728
* refactor: autoroutex pushroute * refactor: autoroutex popRoute * refactor: autoroutex navigate and replace * chore: add doc comments for extension methods * refactor: Add LoggerMixin and refactor Album activities to use mixin * refactor: Activity page * chore: activity user from user constructor * fix: update current asset after build method * refactor: tests with similar structure as lib * chore: remove avoid-declaring-call-method rule from dcm analysis * test: fix proper expect order * test: activity_statistics_provider_test * test: activity_provider_test * test: use proper matchers * test: activity_text_field_test & dismissible_activity_test added * test: add http mock to return transparent image * test: download isar core libs during test * test: add widget tags to widget test cases * test: activity_tile_test * build: currentAlbumProvider to generator * movie add / remove like to activity input tile * test: activities_page_test.dart * chore: better error logs * chore: dismissibleactivity as statelesswidget --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
120 lines
3.7 KiB
Dart
120 lines
3.7 KiB
Dart
@Tags(['widget'])
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:immich_mobile/modules/activities/models/activity.model.dart';
|
|
import 'package:immich_mobile/modules/activities/widgets/activity_tile.dart';
|
|
import 'package:immich_mobile/modules/activities/widgets/dismissible_activity.dart';
|
|
import 'package:immich_mobile/modules/asset_viewer/providers/current_asset.provider.dart';
|
|
import 'package:immich_mobile/shared/ui/confirm_dialog.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
import '../../fixtures/user.stub.dart';
|
|
import '../../test_utils.dart';
|
|
import '../../widget_tester_extensions.dart';
|
|
import '../asset_viewer/asset_viewer_mocks.dart';
|
|
|
|
final activity = Activity(
|
|
id: '1',
|
|
createdAt: DateTime(100),
|
|
type: ActivityType.like,
|
|
user: UserStub.admin,
|
|
);
|
|
|
|
void main() {
|
|
late MockCurrentAssetProvider assetProvider;
|
|
late List<Override> overrides;
|
|
|
|
setUpAll(() => TestUtils.init());
|
|
|
|
setUp(() {
|
|
assetProvider = MockCurrentAssetProvider();
|
|
overrides = [currentAssetProvider.overrideWith(() => assetProvider)];
|
|
});
|
|
|
|
testWidgets('Returns a Dismissible', (tester) async {
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity('1', ActivityTile(activity)),
|
|
overrides: overrides,
|
|
);
|
|
|
|
expect(find.byType(Dismissible), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('Dialog displayed when onDismiss is set', (tester) async {
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity('1', ActivityTile(activity), onDismiss: (_) {}),
|
|
overrides: overrides,
|
|
);
|
|
|
|
final dismissible = find.byType(Dismissible);
|
|
await tester.drag(dismissible, const Offset(500, 0));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byType(ConfirmDialog), findsOneWidget);
|
|
});
|
|
|
|
testWidgets(
|
|
'Ok action in ConfirmDialog should call onDismiss with activityId',
|
|
(tester) async {
|
|
String? receivedActivityId;
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity(
|
|
'1',
|
|
ActivityTile(activity),
|
|
onDismiss: (id) => receivedActivityId = id,
|
|
),
|
|
overrides: overrides,
|
|
);
|
|
|
|
final dismissible = find.byType(Dismissible);
|
|
await tester.drag(dismissible, const Offset(-500, 0));
|
|
await tester.pumpAndSettle();
|
|
|
|
final okButton = find.text('delete_dialog_ok');
|
|
await tester.tap(okButton);
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(receivedActivityId, '1');
|
|
});
|
|
|
|
testWidgets('Delete icon for background if onDismiss is set', (tester) async {
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity('1', ActivityTile(activity), onDismiss: (_) {}),
|
|
overrides: overrides,
|
|
);
|
|
|
|
final dismissible = find.byType(Dismissible);
|
|
await tester.drag(dismissible, const Offset(500, 0));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byIcon(Icons.delete_sweep_rounded), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('No delete dialog if onDismiss is not set', (tester) async {
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity('1', ActivityTile(activity)),
|
|
overrides: overrides,
|
|
);
|
|
|
|
final dismissible = find.byType(Dismissible);
|
|
await tester.drag(dismissible, const Offset(500, 0));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byType(ConfirmDialog), findsNothing);
|
|
});
|
|
|
|
testWidgets('No icon for background if onDismiss is not set', (tester) async {
|
|
await tester.pumpConsumerWidget(
|
|
DismissibleActivity('1', ActivityTile(activity)),
|
|
overrides: overrides,
|
|
);
|
|
|
|
final dismissible = find.byType(Dismissible);
|
|
await tester.drag(dismissible, const Offset(-500, 0));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.byIcon(Icons.delete_sweep_rounded), findsNothing);
|
|
});
|
|
}
|