-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsqs_event_test.dart
30 lines (25 loc) · 1.07 KB
/
sqs_event_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import 'dart:convert';
import 'dart:io' show File;
import 'package:aws_lambda_dart_runtime/aws_lambda_dart_runtime.dart';
import "package:test/test.dart";
final file = 'data/sqs_event.json';
final String contents = new File(file).readAsStringSync();
final Map<String, dynamic> json = jsonDecode(contents);
void main() {
group("sqs_default", () {
test("json got parsed and creates an event", () async {
final event = AwsSQSEvent.fromJson(json);
expect(event.records.length, equals(1));
expect(event.records[0].md5OfBody,
equals("7b270e59b47ff90a553787216d55d91d"));
expect(event.records[0].eventSource, equals("aws:sqs"));
expect(event.records[0].eventSourceARN,
equals("arn:aws:sqs:eu-west-1:123456789012:MyQueue"));
expect(event.records[0].awsRegion, equals("eu-west-1"));
expect(event.records[0].body, equals("Hello from SQS!"));
expect(event.records[0].messageId,
equals("19dd0b57-b21e-4ac1-bd88-01bbb068cb78"));
expect(event.records[0].receiptHandle, equals("MessageReceiptHandle"));
});
});
}