-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
RecognizeReceiptsLiveTests.cs
554 lines (439 loc) · 23.5 KB
/
RecognizeReceiptsLiveTests.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Azure.AI.FormRecognizer.Models;
using Azure.Core.TestFramework;
using NUnit.Framework;
/// <summary>
/// The suite of tests for the `StartRecognizeReceipts` methods in the <see cref="FormRecognizerClient"/> class.
/// </summary>
/// <remarks>
/// These tests have a dependency on live Azure services and may incur costs for the associated
/// Azure subscription.
/// </remarks>
namespace Azure.AI.FormRecognizer.Tests
{
[ClientTestFixture(
FormRecognizerClientOptions.ServiceVersion.V2_0,
FormRecognizerClientOptions.ServiceVersion.V2_1)]
public class RecognizeReceiptsLiveTests : FormRecognizerLiveTestBase
{
public RecognizeReceiptsLiveTests(bool isAsync, FormRecognizerClientOptions.ServiceVersion serviceVersion)
: base(isAsync, serviceVersion)
{
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsCanAuthenticateWithTokenCredential()
{
var client = CreateFormRecognizerClient(useTokenCredential: true);
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptJpg);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream);
}
// Sanity check to make sure we got an actual response back from the service.
RecognizedFormCollection formPage = await operation.WaitForCompletionAsync();
RecognizedForm form = formPage.Single();
Assert.NotNull(form);
ValidatePrebuiltForm(
form,
includeFieldElements: true,
expectedFirstPageNumber: 1,
expectedLastPageNumber: 1);
}
/// <summary>
/// Verifies that the <see cref="FormRecognizerClient" /> is able to connect to the Form
/// Recognizer cognitive service and perform analysis of receipts.
/// </summary>
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsPopulatesExtractedReceiptJpg(bool useStream)
{
var client = CreateFormRecognizerClient();
RecognizeReceiptsOperation operation;
if (useStream)
{
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptJpg);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream);
}
}
else
{
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.ReceiptJpg);
operation = await client.StartRecognizeReceiptsFromUriAsync(uri, default);
}
await operation.WaitForCompletionAsync();
Assert.IsTrue(operation.HasValue);
var form = operation.Value.Single();
Assert.NotNull(form);
ValidatePrebuiltForm(
form,
includeFieldElements: true,
expectedFirstPageNumber: 1,
expectedLastPageNumber: 1);
// The expected values are based on the values returned by the service, and not the actual
// values present in the receipt. We are not testing the service here, but the SDK.
Assert.AreEqual("prebuilt:receipt", form.FormType);
Assert.AreEqual(1, form.PageRange.FirstPageNumber);
Assert.AreEqual(1, form.PageRange.LastPageNumber);
Assert.NotNull(form.Fields);
Assert.True(form.Fields.ContainsKey("ReceiptType"));
Assert.True(form.Fields.ContainsKey("MerchantAddress"));
Assert.True(form.Fields.ContainsKey("MerchantName"));
Assert.True(form.Fields.ContainsKey("MerchantPhoneNumber"));
Assert.True(form.Fields.ContainsKey("TransactionDate"));
Assert.True(form.Fields.ContainsKey("TransactionTime"));
Assert.True(form.Fields.ContainsKey("Items"));
Assert.True(form.Fields.ContainsKey("Subtotal"));
Assert.True(form.Fields.ContainsKey("Tax"));
Assert.True(form.Fields.ContainsKey("Total"));
Assert.AreEqual("Itemized", form.Fields["ReceiptType"].Value.AsString());
Assert.AreEqual("Contoso", form.Fields["MerchantName"].Value.AsString());
Assert.AreEqual("123 Main Street Redmond, WA 98052", form.Fields["MerchantAddress"].Value.AsString());
Assert.AreEqual("123-456-7890", form.Fields["MerchantPhoneNumber"].ValueData.Text);
var date = form.Fields["TransactionDate"].Value.AsDate();
var time = form.Fields["TransactionTime"].Value.AsTime();
Assert.AreEqual(10, date.Day);
Assert.AreEqual(6, date.Month);
Assert.AreEqual(2019, date.Year);
Assert.AreEqual(13, time.Hours);
Assert.AreEqual(59, time.Minutes);
Assert.AreEqual(0, time.Seconds);
var expectedItems = new List<(int? Quantity, string Name, float? Price, float? TotalPrice)>()
{
(1, "Surface Pro 6", null, 999.00f),
(1, "SurfacePen", null, 99.99f)
};
// Include a bit of tolerance when comparing float types.
var items = form.Fields["Items"].Value.AsList();
Assert.AreEqual(expectedItems.Count, items.Count);
for (var itemIndex = 0; itemIndex < items.Count; itemIndex++)
{
var receiptItemInfo = items[itemIndex].Value.AsDictionary();
receiptItemInfo.TryGetValue("Quantity", out var quantityField);
receiptItemInfo.TryGetValue("Name", out var nameField);
receiptItemInfo.TryGetValue("Price", out var priceField);
receiptItemInfo.TryGetValue("TotalPrice", out var totalPriceField);
var quantity = quantityField == null ? null : (float?)quantityField.Value.AsFloat();
var name = nameField == null ? null : nameField.Value.AsString();
var price = priceField == null ? null : (float?)priceField.Value.AsFloat();
var totalPrice = totalPriceField == null ? null : (float?)totalPriceField.Value.AsFloat();
var expectedItem = expectedItems[itemIndex];
Assert.AreEqual(expectedItem.Quantity, quantity, $"Quantity mismatch in item with index {itemIndex}.");
Assert.AreEqual(expectedItem.Name, name, $"Name mismatch in item with index {itemIndex}.");
Assert.That(price, Is.EqualTo(expectedItem.Price).Within(0.0001), $"Price mismatch in item with index {itemIndex}.");
Assert.That(totalPrice, Is.EqualTo(expectedItem.TotalPrice).Within(0.0001), $"Total price mismatch in item with index {itemIndex}.");
}
Assert.That(form.Fields["Subtotal"].Value.AsFloat(), Is.EqualTo(1098.99).Within(0.0001));
Assert.That(form.Fields["Tax"].Value.AsFloat(), Is.EqualTo(104.40).Within(0.0001));
Assert.That(form.Fields["Total"].Value.AsFloat(), Is.EqualTo(1203.39).Within(0.0001));
}
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsPopulatesExtractedReceiptPng(bool useStream)
{
var client = CreateFormRecognizerClient();
RecognizeReceiptsOperation operation;
if (useStream)
{
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptPng);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream);
}
}
else
{
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.ReceiptPng);
operation = await client.StartRecognizeReceiptsFromUriAsync(uri, default);
}
await operation.WaitForCompletionAsync();
Assert.IsTrue(operation.HasValue);
var form = operation.Value.Single();
Assert.NotNull(form);
ValidatePrebuiltForm(
form,
includeFieldElements: true,
expectedFirstPageNumber: 1,
expectedLastPageNumber: 1);
// The expected values are based on the values returned by the service, and not the actual
// values present in the receipt. We are not testing the service here, but the SDK.
Assert.AreEqual("prebuilt:receipt", form.FormType);
Assert.AreEqual(1, form.PageRange.FirstPageNumber);
Assert.AreEqual(1, form.PageRange.LastPageNumber);
Assert.NotNull(form.Fields);
Assert.True(form.Fields.ContainsKey("ReceiptType"));
Assert.True(form.Fields.ContainsKey("MerchantAddress"));
Assert.True(form.Fields.ContainsKey("MerchantName"));
Assert.True(form.Fields.ContainsKey("MerchantPhoneNumber"));
Assert.True(form.Fields.ContainsKey("TransactionDate"));
Assert.True(form.Fields.ContainsKey("TransactionTime"));
Assert.True(form.Fields.ContainsKey("Items"));
Assert.True(form.Fields.ContainsKey("Subtotal"));
Assert.True(form.Fields.ContainsKey("Tax"));
Assert.True(form.Fields.ContainsKey("Tip"));
Assert.True(form.Fields.ContainsKey("Total"));
Assert.AreEqual("Itemized", form.Fields["ReceiptType"].Value.AsString());
Assert.AreEqual("Contoso", form.Fields["MerchantName"].Value.AsString());
Assert.AreEqual("123 Main Street Redmond, WA 98052", form.Fields["MerchantAddress"].Value.AsString());
Assert.AreEqual("987-654-3210", form.Fields["MerchantPhoneNumber"].ValueData.Text);
var date = form.Fields["TransactionDate"].Value.AsDate();
var time = form.Fields["TransactionTime"].Value.AsTime();
Assert.AreEqual(10, date.Day);
Assert.AreEqual(6, date.Month);
Assert.AreEqual(2019, date.Year);
Assert.AreEqual(13, time.Hours);
Assert.AreEqual(59, time.Minutes);
Assert.AreEqual(0, time.Seconds);
var expectedItems = new List<(int? Quantity, string Name, float? Price, float? TotalPrice)>()
{
(1, "Cappuccino", null, 2.20f),
(1, "BACON & EGGS", null, 9.50f)
};
// Include a bit of tolerance when comparing float types.
var items = form.Fields["Items"].Value.AsList();
Assert.AreEqual(expectedItems.Count, items.Count);
for (var itemIndex = 0; itemIndex < items.Count; itemIndex++)
{
var receiptItemInfo = items[itemIndex].Value.AsDictionary();
receiptItemInfo.TryGetValue("Quantity", out var quantityField);
receiptItemInfo.TryGetValue("Name", out var nameField);
receiptItemInfo.TryGetValue("Price", out var priceField);
receiptItemInfo.TryGetValue("TotalPrice", out var totalPriceField);
var quantity = quantityField == null ? null : (float?)quantityField.Value.AsFloat();
var name = nameField == null ? null : nameField.Value.AsString();
var price = priceField == null ? null : (float?)priceField.Value.AsFloat();
var totalPrice = totalPriceField == null ? null : (float?)totalPriceField.Value.AsFloat();
var expectedItem = expectedItems[itemIndex];
Assert.AreEqual(expectedItem.Quantity, quantity, $"Quantity mismatch in item with index {itemIndex}.");
Assert.AreEqual(expectedItem.Name, name, $"Name mismatch in item with index {itemIndex}.");
Assert.That(price, Is.EqualTo(expectedItem.Price).Within(0.0001), $"Price mismatch in item with index {itemIndex}.");
Assert.That(totalPrice, Is.EqualTo(expectedItem.TotalPrice).Within(0.0001), $"Total price mismatch in item with index {itemIndex}.");
}
Assert.That(form.Fields["Subtotal"].Value.AsFloat(), Is.EqualTo(11.70).Within(0.0001));
Assert.That(form.Fields["Tax"].Value.AsFloat(), Is.EqualTo(1.17).Within(0.0001));
Assert.That(form.Fields["Tip"].Value.AsFloat(), Is.EqualTo(1.63).Within(0.0001));
Assert.That(form.Fields["Total"].Value.AsFloat(), Is.EqualTo(14.50).Within(0.0001));
}
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsCanParseMultipageForm(bool useStream)
{
var client = CreateFormRecognizerClient();
var options = new RecognizeReceiptsOptions() { IncludeFieldElements = true };
RecognizeReceiptsOperation operation;
if (useStream)
{
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceipMultipage);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, options);
}
}
else
{
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.ReceipMultipage);
operation = await client.StartRecognizeReceiptsFromUriAsync(uri, options);
}
RecognizedFormCollection recognizedForms = await operation.WaitForCompletionAsync();
Assert.AreEqual(2, recognizedForms.Count);
for (int formIndex = 0; formIndex < recognizedForms.Count; formIndex++)
{
var recognizedForm = recognizedForms[formIndex];
var expectedPageNumber = formIndex + 1;
Assert.NotNull(recognizedForm);
ValidatePrebuiltForm(
recognizedForm,
includeFieldElements: true,
expectedFirstPageNumber: expectedPageNumber,
expectedLastPageNumber: expectedPageNumber);
// Basic sanity test to make sure pages are ordered correctly.
var sampleField = recognizedForm.Fields["Total"];
Assert.IsNotNull(sampleField.ValueData);
if (formIndex == 0)
{
Assert.AreEqual("$14.50", sampleField.ValueData.Text);
}
else if (formIndex == 1)
{
Assert.AreEqual("$ 1203.39", sampleField.ValueData.Text);
}
}
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsCanParseBlankPage()
{
var client = CreateFormRecognizerClient();
var options = new RecognizeReceiptsOptions() { IncludeFieldElements = true };
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.Blank);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, options);
}
RecognizedFormCollection recognizedForms = await operation.WaitForCompletionAsync();
var blankForm = recognizedForms.Single();
ValidatePrebuiltForm(
blankForm,
includeFieldElements: true,
expectedFirstPageNumber: 1,
expectedLastPageNumber: 1);
Assert.AreEqual(0, blankForm.Fields.Count);
var blankPage = blankForm.Pages.Single();
Assert.AreEqual(0, blankPage.Lines.Count);
Assert.AreEqual(0, blankPage.Tables.Count);
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsCanParseMultipageFormWithBlankPage()
{
var client = CreateFormRecognizerClient();
var options = new RecognizeReceiptsOptions() { IncludeFieldElements = true };
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceipMultipageWithBlankPage);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, options);
}
RecognizedFormCollection recognizedForms = await operation.WaitForCompletionAsync();
Assert.AreEqual(3, recognizedForms.Count);
for (int formIndex = 0; formIndex < recognizedForms.Count; formIndex++)
{
var recognizedForm = recognizedForms[formIndex];
var expectedPageNumber = formIndex + 1;
Assert.NotNull(recognizedForm);
ValidatePrebuiltForm(
recognizedForm,
includeFieldElements: true,
expectedFirstPageNumber: expectedPageNumber,
expectedLastPageNumber: expectedPageNumber);
// Basic sanity test to make sure pages are ordered correctly.
if (formIndex == 0 || formIndex == 2)
{
var sampleField = recognizedForm.Fields["Total"];
var expectedValueData = formIndex == 0 ? "$14.50" : "$ 1203.39";
Assert.IsNotNull(sampleField.ValueData);
Assert.AreEqual(expectedValueData, sampleField.ValueData.Text);
}
}
var blankForm = recognizedForms[1];
Assert.AreEqual(0, blankForm.Fields.Count);
var blankPage = blankForm.Pages.Single();
Assert.AreEqual(0, blankPage.Lines.Count);
Assert.AreEqual(0, blankPage.Tables.Count);
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public void StartRecognizeReceiptsThrowsForDamagedFile()
{
var client = CreateFormRecognizerClient();
// First 4 bytes are PDF signature, but fill the rest of the "file" with garbage.
var damagedFile = new byte[] { 0x25, 0x50, 0x44, 0x46, 0x55, 0x55, 0x55 };
using var stream = new MemoryStream(damagedFile);
RequestFailedException ex = Assert.ThrowsAsync<RequestFailedException>(async () => await client.StartRecognizeReceiptsAsync(stream));
Assert.AreEqual("BadArgument", ex.ErrorCode);
}
/// <summary>
/// Verifies that the <see cref="FormRecognizerClient" /> is able to connect to the Form
/// Recognizer cognitive service and handle returned errors.
/// </summary>
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public void StartRecognizeReceiptsFromUriThrowsForNonExistingContent()
{
var client = CreateFormRecognizerClient();
var invalidUri = new Uri("https://idont.ex.ist");
RequestFailedException ex = Assert.ThrowsAsync<RequestFailedException>(async () => await client.StartRecognizeReceiptsFromUriAsync(invalidUri));
Assert.AreEqual("FailedToDownloadImage", ex.ErrorCode);
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsWithSupportedLocale()
{
var client = CreateFormRecognizerClient();
var options = new RecognizeReceiptsOptions()
{
IncludeFieldElements = true,
Locale = FormRecognizerLocale.EnUS
};
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptJpg);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, options);
}
RecognizedFormCollection recognizedForms = await operation.WaitForCompletionAsync();
var receipt = recognizedForms.Single();
ValidatePrebuiltForm(
receipt,
includeFieldElements: true,
expectedFirstPageNumber: 1,
expectedLastPageNumber: 1);
Assert.Greater(receipt.Fields.Count, 0);
var receiptPage = receipt.Pages.Single();
Assert.Greater(receiptPage.Lines.Count, 0);
Assert.AreEqual(0, receiptPage.SelectionMarks.Count);
Assert.AreEqual(0, receiptPage.Tables.Count);
}
[RecordedTest]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public void StartRecognizeReceiptsWithWrongLocale()
{
var client = CreateFormRecognizerClient();
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptJpg);
RequestFailedException ex;
using (Recording.DisableRequestBodyRecording())
{
ex = Assert.ThrowsAsync<RequestFailedException>(async () => await client.StartRecognizeReceiptsAsync(stream, new RecognizeReceiptsOptions() { Locale = "not-locale" }));
}
Assert.AreEqual("UnsupportedLocale", ex.ErrorCode);
}
[RecordedTest]
[TestCase("1", 1)]
[TestCase("1-2", 2)]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsWithOnePageArgument(string pages, int expected)
{
var client = CreateFormRecognizerClient();
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceipMultipage);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, new RecognizeReceiptsOptions() { Pages = { pages } });
}
RecognizedFormCollection forms = await operation.WaitForCompletionAsync();
Assert.AreEqual(expected, forms.Count);
}
[RecordedTest]
[TestCase("1", "3", 2)]
[TestCase("1-2", "3", 3)]
[ServiceVersion(Min = FormRecognizerClientOptions.ServiceVersion.V2_1)]
public async Task StartRecognizeReceiptsWithMultiplePageArgument(string page1, string page2, int expected)
{
var client = CreateFormRecognizerClient();
RecognizeReceiptsOperation operation;
using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceipMultipageWithBlankPage);
using (Recording.DisableRequestBodyRecording())
{
operation = await client.StartRecognizeReceiptsAsync(stream, new RecognizeReceiptsOptions() { Pages = { page1, page2 } });
}
RecognizedFormCollection forms = await operation.WaitForCompletionAsync();
Assert.AreEqual(expected, forms.Count);
}
}
}