mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-15 04:11:16 +00:00

* fix: minor ui issues * feat: support using emoji as icon * chore: update langauges * fix: missing reminder bloc in detail page * fix: integration test
42 lines
1.3 KiB
Dart
42 lines
1.3 KiB
Dart
import 'package:appflowy/workspace/application/settings/prelude.dart';
|
|
import 'package:appflowy/workspace/presentation/settings/widgets/settings_user_view.dart';
|
|
import 'package:appflowy/workspace/presentation/widgets/user_avatar.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import '../util/emoji.dart';
|
|
import '../util/util.dart';
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
group('Settings: user icon tests', () {
|
|
testWidgets('select icon, select default option', (tester) async {
|
|
await tester.initializeAppFlowy();
|
|
|
|
await tester.tapGoButton();
|
|
tester.expectToSeeHomePage();
|
|
await tester.openSettings();
|
|
|
|
await tester.openSettingsPage(SettingsPage.user);
|
|
|
|
final userAvatarFinder = find.descendant(
|
|
of: find.byType(SettingsUserView),
|
|
matching: find.byType(UserAvatar),
|
|
);
|
|
|
|
// Open icon picker dialog
|
|
await tester.tap(userAvatarFinder);
|
|
await tester.pumpAndSettle();
|
|
|
|
// Select first option that isn't default
|
|
await tester.tapEmoji('😁');
|
|
await tester.pumpAndSettle();
|
|
|
|
final UserAvatar userAvatar =
|
|
tester.widget(userAvatarFinder) as UserAvatar;
|
|
expect(userAvatar.iconUrl, '😁');
|
|
});
|
|
});
|
|
}
|