TF-3023 Write widget test for SMimeSignatureStatus icon
This commit is contained in:
@@ -2,14 +2,15 @@
|
||||
import 'package:model/email/presentation_email.dart';
|
||||
import 'package:model/extensions/list_email_header_extension.dart';
|
||||
import 'package:tmail_ui_user/features/email/presentation/model/smime_signature_status.dart';
|
||||
import 'package:tmail_ui_user/features/email/presentation/utils/smime_signature_constant.dart';
|
||||
|
||||
extension PresentationEmailExtension on PresentationEmail {
|
||||
|
||||
SMimeSignatureStatus get sMimeStatus {
|
||||
final status = emailHeader?.toSet().sMimeStatus;
|
||||
if (status == 'Good signature') {
|
||||
if (status == SMimeSignatureConstant.GOOD_SIGNATURE) {
|
||||
return SMimeSignatureStatus.goodSignature;
|
||||
} else if (status == 'Bad signature') {
|
||||
} else if (status == SMimeSignatureConstant.BAD_SIGNATURE) {
|
||||
return SMimeSignatureStatus.badSignature;
|
||||
} else {
|
||||
return SMimeSignatureStatus.notSigned;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
class SMimeSignatureConstant {
|
||||
static const String GOOD_SIGNATURE = 'Good signature';
|
||||
static const String BAD_SIGNATURE = 'Bad signature';
|
||||
}
|
||||
+2
-1
@@ -32,7 +32,7 @@ class InformationSenderAndReceiverBuilder extends StatelessWidget {
|
||||
required this.emailSelected,
|
||||
required this.responsiveUtils,
|
||||
required this.imagePaths,
|
||||
required this.emailUnsubscribe,
|
||||
this.emailUnsubscribe,
|
||||
this.maxBodyHeight,
|
||||
this.openEmailAddressDetailAction,
|
||||
this.onEmailActionClick,
|
||||
@@ -66,6 +66,7 @@ class InformationSenderAndReceiverBuilder extends StatelessWidget {
|
||||
)),
|
||||
if (emailSelected.sMimeStatus != SMimeSignatureStatus.notSigned)
|
||||
Tooltip(
|
||||
key: const Key('smime_signature_status_icon'),
|
||||
message: emailSelected.sMimeStatus.getTooltipMessage(context),
|
||||
child: MouseRegion(
|
||||
cursor: SystemMouseCursors.click,
|
||||
|
||||
+277
@@ -0,0 +1,277 @@
|
||||
import 'package:core/presentation/resources/image_paths.dart';
|
||||
import 'package:core/presentation/utils/responsive_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/id.dart';
|
||||
import 'package:jmap_dart_client/jmap/mail/email/email.dart';
|
||||
import 'package:jmap_dart_client/jmap/mail/email/email_address.dart';
|
||||
import 'package:jmap_dart_client/jmap/mail/email/email_header.dart';
|
||||
import 'package:model/email/email_property.dart';
|
||||
import 'package:model/email/presentation_email.dart';
|
||||
import 'package:tmail_ui_user/features/email/presentation/widgets/information_sender_and_receiver_builder.dart';
|
||||
import 'package:tmail_ui_user/main/localizations/app_localizations_delegate.dart';
|
||||
import 'package:tmail_ui_user/main/localizations/localization_service.dart';
|
||||
|
||||
void main() {
|
||||
group('InformationSenderAndReceiverBuilder::widgetTest', () {
|
||||
final responsiveUtils = ResponsiveUtils();
|
||||
final imagePaths = ImagePaths();
|
||||
|
||||
Widget makeTestableWidget({required Widget child}) {
|
||||
return GetMaterialApp(
|
||||
localizationsDelegates: const [
|
||||
AppLocalizationsDelegate(),
|
||||
GlobalMaterialLocalizations.delegate,
|
||||
GlobalWidgetsLocalizations.delegate,
|
||||
GlobalCupertinoLocalizations.delegate,
|
||||
],
|
||||
supportedLocales: LocalizationService.supportedLocales,
|
||||
locale: LocalizationService.defaultLocale,
|
||||
home: Scaffold(body: child),
|
||||
);
|
||||
}
|
||||
|
||||
group('SMimeSignatureStatusIcon::test', () {
|
||||
testWidgets('should be displayed when email header has X-SMIME-Status', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Good signature')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsOneWidget);
|
||||
});
|
||||
|
||||
testWidgets(
|
||||
'should be displayed and have good message \n'
|
||||
'when email header has X-SMIME-Status = "Good signature"',
|
||||
(tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Good signature')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsOneWidget);
|
||||
|
||||
final sMimeSignatureStatusIconWidgetFinder = find.byKey(const Key('smime_signature_status_icon'));
|
||||
final sMimeSignatureStatusIconWidget = tester.widget<Tooltip>(sMimeSignatureStatusIconWidgetFinder);
|
||||
expect(
|
||||
sMimeSignatureStatusIconWidget.message,
|
||||
'The authenticity of this message had been verified with SMime signature.');
|
||||
});
|
||||
|
||||
testWidgets(
|
||||
'should be displayed and have bad message \n'
|
||||
'when email header has X-SMIME-Status = "Bad signature"',
|
||||
(tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Bad signature')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsOneWidget);
|
||||
|
||||
final sMimeSignatureStatusIconWidgetFinder = find.byKey(const Key('smime_signature_status_icon'));
|
||||
final sMimeSignatureStatusIconWidget = tester.widget<Tooltip>(sMimeSignatureStatusIconWidgetFinder);
|
||||
expect(
|
||||
sMimeSignatureStatusIconWidget.message,
|
||||
'This message failed SMime signature verification.');
|
||||
});
|
||||
|
||||
testWidgets('should not be displayed when email header do not have X-SMIME-Status', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
}
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsNothing);
|
||||
});
|
||||
|
||||
testWidgets('should not be displayed when email header have X-SMIME-Status = "Good Signatures"', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Good Signatures')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsNothing);
|
||||
});
|
||||
|
||||
testWidgets('should not be displayed when email header have X-SMIME-Status = "Good signatures"', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Good signatures')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsNothing);
|
||||
});
|
||||
|
||||
testWidgets('should not be displayed when email header have X-SMIME-Status = "Bad Signatures"', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Bad Signatures')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsNothing);
|
||||
});
|
||||
|
||||
testWidgets('should not be displayed when email header have X-SMIME-Status = "Bad signatures"', (tester) async {
|
||||
final presentationEmail = PresentationEmail(
|
||||
id: EmailId(Id('a123')),
|
||||
from: {
|
||||
EmailAddress('example', 'example@linagora.com')
|
||||
},
|
||||
emailHeader: [
|
||||
EmailHeader(EmailProperty.headerSMimeStatusKey, 'Bad signatures')
|
||||
]
|
||||
);
|
||||
final widget = makeTestableWidget(
|
||||
child: InformationSenderAndReceiverBuilder(
|
||||
emailSelected: presentationEmail,
|
||||
responsiveUtils: responsiveUtils,
|
||||
imagePaths: imagePaths,
|
||||
emailUnsubscribe: null,
|
||||
),
|
||||
);
|
||||
|
||||
await tester.pumpWidget(widget);
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(
|
||||
find.byKey(const Key('smime_signature_status_icon')),
|
||||
findsNothing);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user