Skip to content

Commit

Permalink
fixup! TF-3023 Write widget test for SMimeSignatureStatus icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Aug 6, 2024
1 parent 83d8e70 commit c5fa66c
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

class SMimeSignatureConstant {
static const String GOOD_SIGNATURE = 'Good signature';
static const String BAD_SIGNATURE = 'Bad signature';
}
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,118 @@ void main() {
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', '[email protected]')
},
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', '[email protected]')
},
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', '[email protected]')
},
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', '[email protected]')
},
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);
});
});
});
}

0 comments on commit c5fa66c

Please sign in to comment.