-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
IndexingTests.cs
1706 lines (1532 loc) · 82.7 KB
/
IndexingTests.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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
using Azure.Core.Serialization;
using Azure.Core.TestFramework;
using Azure.Search.Documents.Models;
using NUnit.Framework;
namespace Azure.Search.Documents.Tests
{
public class IndexingTests : SearchTestBase
{
public IndexingTests(bool async, SearchClientOptions.ServiceVersion serviceVersion)
: base(async, serviceVersion, null /* RecordedTestMode.Record /* to re-record */)
{
}
#region Utilities
private static void AssertPartialFailure(
Response<IndexDocumentsResult> response,
params string[] expectedFailedKeys)
{
Assert.AreEqual(207, response.GetRawResponse().Status);
IEnumerable<string> actualFailedKeys = response.Value.Results.Where(r => !r.Succeeded).Select(r => r.Key);
CollectionAssert.AreEqual(expectedFailedKeys, actualFailedKeys);
}
private static void AssertActionFailed(
string key,
IndexingResult result,
string expectedMessage,
int expectedStatusCode)
{
Assert.AreEqual(key, result.Key);
Assert.IsFalse(result.Succeeded);
Assert.AreEqual(expectedMessage, result.ErrorMessage);
Assert.AreEqual(expectedStatusCode, result.Status);
}
private static void AssertActionSucceeded(
string key,
IndexingResult result,
int expectedStatusCode)
{
Assert.AreEqual(key, result.Key);
Assert.IsTrue(result.Succeeded);
Assert.IsNull(result.ErrorMessage);
Assert.AreEqual(expectedStatusCode, result.Status);
}
#endregion Utilities
[Test]
public async Task IndexingConveniences()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
// Upload
var doc1 = new SearchDocument
{
["hotelId"] = "1",
["hotelName"] = "Highway Hole in the Wall"
};
var doc2 = new SearchDocument
{
["hotelId"] = "2",
["hotelName"] = "Freeway Flophouse"
};
Response<IndexDocumentsResult> response = await client.UploadDocumentsAsync(new[] { doc1, doc2 });
Assert.AreEqual(2, response.Value.Results.Count);
AssertActionSucceeded("1", response.Value.Results[0], 201);
AssertActionSucceeded("2", response.Value.Results[1], 201);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(2L, count);
// Merge
response = await client.MergeDocumentsAsync(
new[]
{
new SearchDocument { ["hotelId"] = "1", ["hotelName"] = "Highway Haven" }
});
Assert.AreEqual(1, response.Value.Results.Count);
AssertActionSucceeded("1", response.Value.Results[0], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(2L, count);
SearchDocument merged = await client.GetDocumentAsync<SearchDocument>("1");
Assert.AreNotEqual(doc1["hotelName"], merged["hotelName"]);
// Upload or Merge
response = await client.MergeOrUploadDocumentsAsync(
new[]
{
new SearchDocument { ["hotelId"] = "2", ["hotelName"] = "Freeway Freedom" },
new SearchDocument { ["hotelId"] = "3", ["hotelName"] = "Basically a gas station bathroom, but with beds" },
});
Assert.AreEqual(2, response.Value.Results.Count);
AssertActionSucceeded("2", response.Value.Results[0], 200);
AssertActionSucceeded("3", response.Value.Results[1], 201);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(3L, count);
merged = await client.GetDocumentAsync<SearchDocument>("2");
Assert.AreNotEqual(doc2["hotelName"], merged["hotelName"]);
// Delete by document
response = await client.DeleteDocumentsAsync(new[] { doc1, doc2 });
Assert.AreEqual(2, response.Value.Results.Count);
AssertActionSucceeded("1", response.Value.Results[0], 200);
AssertActionSucceeded("2", response.Value.Results[1], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(1L, count);
// Delete by key
response = await client.DeleteDocumentsAsync("hotelId", new[] { "3" });
Assert.AreEqual(1, response.Value.Results.Count);
AssertActionSucceeded("3", response.Value.Results[0], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(0L, count);
}
[Test]
public async Task DynamicDocuments()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<SearchDocument> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(
new SearchDocument
{
["hotelId"] = "1",
["hotelName"] = "Secret Point Motel",
["description"] = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
["descriptionFr"] = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
["category"] = "Boutique",
["tags"] = new[] { "pool", "air conditioning", "concierge" },
["parkingIncluded"] = false,
["smokingAllowed"] = true,
["lastRenovationDate"] = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5)),
["rating"] = 4,
["location"] = TestExtensions.CreateDynamicPoint(-73.975403, 40.760586),
["geoLocation"] = TestExtensions.CreateDynamicGeoPoint(-73.975403, 40.760586),
["address"] = new SearchDocument()
{
["streetAddress"] = "677 5th Ave",
["city"] = "New York",
["stateProvince"] = "NY",
["country"] = "USA",
["postalCode"] = "10022"
},
["rooms"] = new[]
{
new SearchDocument()
{
["description"] = "Budget Room, 1 Queen Bed (Cityside)",
["descriptionFr"] = "Chambre Économique, 1 grand lit (côté ville)",
["type"] = "Budget Room",
["baseRate"] = 9.69,
["bedOptions"] = "1 Queen Bed",
["sleepsCount"] = 2,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd" }
},
new SearchDocument()
{
["description"] = "Budget Room, 1 King Bed (Mountain View)",
["descriptionFr"] = "Chambre Économique, 1 très grand lit (Mountain View)",
["type"] = "Budget Room",
["baseRate"] = 8.09,
["bedOptions"] = "1 King Bed",
["sleepsCount"] = 2,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd", "jacuzzi tub" }
}
}
}),
IndexDocumentsAction.Upload(
new SearchDocument
{
["hotelId"] = "2",
["hotelName"] = "Secret Point Motel",
["description"] = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
["descriptionFr"] = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
["category"] = "Boutique",
["tags"] = new[] { "pool", "air conditioning", "concierge" },
["parkingIncluded"] = false,
["smokingAllowed"] = true,
["lastRenovationDate"] = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5)),
["rating"] = 4,
["location"] = TestExtensions.CreateDynamicPoint(-73.975403, 40.760586),
["geoLocation"] = TestExtensions.CreateDynamicGeoPoint(-73.975403, 40.760586),
["address"] = new SearchDocument()
{
["streetAddress"] = "677 5th Ave",
["city"] = "New York",
["stateProvince"] = "NY",
["country"] = "USA",
["postalCode"] = "10022"
},
["rooms"] = new[]
{
new SearchDocument()
{
["description"] = "Budget Room, 1 Queen Bed (Cityside)",
["descriptionFr"] = "Chambre Économique, 1 grand lit (côté ville)",
["type"] = "Budget Room",
["baseRate"] = 9.69,
["bedOptions"] = "1 Queen Bed",
["sleepsCount"] = 2,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd" }
},
new SearchDocument()
{
["description"] = "Budget Room, 1 King Bed (Mountain View)",
["descriptionFr"] = "Chambre Économique, 1 très grand lit (Mountain View)",
["type"] = "Budget Room",
["baseRate"] = 8.09,
["bedOptions"] = "1 King Bed",
["sleepsCount"] = 2,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd", "jacuzzi tub" }
}
}
}),
IndexDocumentsAction.Merge(
new SearchDocument
{
["hotelId"] = "3",
["description"] = "Surprisingly expensive",
["lastRenovationDate"] = null
}),
IndexDocumentsAction.Delete("hotelId", "4"),
IndexDocumentsAction.MergeOrUpload(
new SearchDocument
{
["hotelId"] = "5",
["hotelName"] = null,
["address"] = new SearchDocument(),
["tags"] = new string[0],
["rooms"] = new[]
{
new SearchDocument()
{
["baseRate"] = double.NaN,
["tags"] = new string[0]
}
}
}));
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(5, response.Value.Results.Count);
AssertPartialFailure(response, "3");
List<IndexingResult> results = new List<IndexingResult>(response.Value.Results);
AssertActionSucceeded("1", results[0], 201);
AssertActionSucceeded("2", results[1], 201);
AssertActionFailed("3", results[2], "Document not found.", 404);
AssertActionSucceeded("4", results[3], 200);
AssertActionSucceeded("5", results[4], 201);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(3L, count);
}
[Test]
public async Task StaticDocuments()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(
new Hotel
{
HotelId = "1",
HotelName = "Secret Point Motel",
Description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
DescriptionFr = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
Category = "Boutique",
Tags = new[] { "pool", "air conditioning", "concierge" },
ParkingIncluded = false,
SmokingAllowed = true,
LastRenovationDate = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5)),
Rating = 4,
Location = TestExtensions.CreatePoint(-73.975403, 40.760586),
GeoLocation = TestExtensions.CreateGeoPoint(-73.975403, 40.760586),
Address = new HotelAddress
{
StreetAddress = "677 5th Ave",
City = "New York",
StateProvince = "NY",
Country = "USA",
PostalCode = "10022"
},
Rooms = new[]
{
new HotelRoom
{
Description = "Budget Room, 1 Queen Bed (Cityside)",
DescriptionFr = "Chambre Économique, 1 grand lit (côté ville)",
Type = "Budget Room",
BaseRate = 9.69,
BedOptions = "1 Queen Bed",
SleepsCount = 2,
SmokingAllowed = true,
Tags = new[] { "vcr/dvd" }
},
new HotelRoom
{
Description = "Budget Room, 1 King Bed (Mountain View)",
DescriptionFr = "Chambre Économique, 1 très grand lit (Mountain View)",
Type = "Budget Room",
BaseRate = 8.09,
BedOptions = "1 King Bed",
SleepsCount = 2,
SmokingAllowed = true,
Tags = new[] { "vcr/dvd", "jacuzzi tub" }
}
}
}),
IndexDocumentsAction.Upload(
new Hotel
{
HotelId = "2",
HotelName = "Countryside Hotel",
Description = "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.",
DescriptionFr = "Économisez jusqu'à 50% sur les hôtels traditionnels. WiFi gratuit, très bien situé près du centre-ville, cuisine complète, laveuse & sécheuse, support 24/7, bowling, centre de fitness et plus encore.",
Category = "Budget",
Tags = new[] { "24-hour front desk service", "coffee in lobby", "restaurant" },
ParkingIncluded = false,
SmokingAllowed = true,
LastRenovationDate = new DateTimeOffset(1999, 9, 6, 0, 0, 0, TimeSpan.Zero), //aka.ms/sre-codescan/disable
Rating = 3,
Location = TestExtensions.CreatePoint(-78.940483, 35.904160),
GeoLocation = TestExtensions.CreateGeoPoint(-78.940483, 35.904160),
Address = new HotelAddress()
{
StreetAddress = "6910 Fayetteville Rd",
City = "Durham",
StateProvince = "NC",
Country = "USA",
PostalCode = "27713"
},
Rooms = new[]
{
new HotelRoom
{
Description = "Suite, 1 King Bed (Amenities)",
DescriptionFr = "Suite, 1 très grand lit (Services)",
Type = "Suite",
BaseRate = 2.44,
BedOptions = "1 King Bed",
SleepsCount = 2,
SmokingAllowed = true,
Tags = new[] { "coffee maker" }
},
new HotelRoom
{
Description = "Budget Room, 1 Queen Bed (Amenities)",
DescriptionFr = "Chambre Économique, 1 grand lit (Services)",
Type = "Budget Room",
BaseRate = 7.69,
BedOptions = "1 Queen Bed",
SleepsCount = 2,
SmokingAllowed = false,
Tags = new[] { "coffee maker" }
}
}
}),
IndexDocumentsAction.Merge(
new Hotel
{
HotelId = "3",
Description = "Surprisingly expensive",
LastRenovationDate = null
}),
IndexDocumentsAction.Delete(new Hotel { HotelId = "4" }),
IndexDocumentsAction.MergeOrUpload(
new Hotel
{
HotelId = "5",
HotelName = null,
Address = new HotelAddress(),
Tags = new string[0],
Rooms = new[]
{
new HotelRoom
{
BaseRate = double.NaN,
Tags = new string[0]
}
}
}));
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(5, response.Value.Results.Count);
AssertPartialFailure(response, "3");
List<IndexingResult> results = new List<IndexingResult>(response.Value.Results);
AssertActionSucceeded("1", results[0], 201);
AssertActionSucceeded("2", results[1], 201);
AssertActionFailed("3", results[2], "Document not found.", 404);
AssertActionSucceeded("4", results[3], 200);
AssertActionSucceeded("5", results[4], 201);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(3L, count);
}
[Test]
public async Task StaticDocumentsWithCustomSerializer()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient(
new SearchClientOptions(ServiceVersion)
{
Serializer = new JsonObjectSerializer(
new JsonSerializerOptions()
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
})
});
UncasedHotel expected = new UncasedHotel
{
HotelId = "1",
HotelName = "Secret Point Motel",
Description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
DescriptionFr = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
Category = "Boutique",
Tags = new[] { "pool", "air conditioning", "concierge" },
ParkingIncluded = false,
SmokingAllowed = true,
LastRenovationDate = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5)),
Rating = 4,
Location = TestExtensions.CreatePoint(-73.975403, 40.760586),
GeoLocation = TestExtensions.CreateGeoPoint(-73.975403, 40.760586),
Address = new HotelAddress
{
StreetAddress = "677 5th Ave",
City = "New York",
StateProvince = "NY",
Country = "USA",
PostalCode = "10022"
},
Rooms = new[]
{
new HotelRoom
{
Description = "Budget Room, 1 Queen Bed (Cityside)",
DescriptionFr = "Chambre Économique, 1 grand lit (côté ville)",
Type = "Budget Room",
BaseRate = 9.69,
BedOptions = "1 Queen Bed",
SleepsCount = 2,
SmokingAllowed = true,
Tags = new[] { "vcr/dvd" }
},
new HotelRoom
{
Description = "Budget Room, 1 King Bed (Mountain View)",
DescriptionFr = "Chambre Économique, 1 très grand lit (Mountain View)",
Type = "Budget Room",
BaseRate = 8.09,
BedOptions = "1 King Bed",
SleepsCount = 2,
SmokingAllowed = true,
Tags = new[] { "vcr/dvd", "jacuzzi tub" }
}
}
};
IndexDocumentsBatch<UncasedHotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(expected));
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(1, response.Value.Results.Count);
List<IndexingResult> results = new List<IndexingResult>(response.Value.Results);
AssertActionSucceeded("1", results[0], 201);
await resources.WaitForIndexingAsync();
// Pull it back using the default serializer and compare
Hotel actual = await resources.GetQueryClient().GetDocumentAsync<Hotel>("1");
Assert.AreEqual(expected, actual);
}
internal struct SimpleStructHotel
{
[JsonPropertyName("hotelId")]
public string HotelId { get; set; }
[JsonPropertyName("hotelName")]
public string HotelName { get; set; }
[JsonPropertyName("description")]
public string Description { get; set; }
[JsonPropertyName("lastRenovationDate")]
public DateTimeOffset? LastRenovationDate { get; set; }
public override bool Equals(object obj) =>
obj is SimpleStructHotel h &&
h.HotelId == HotelId &&
h.HotelName == HotelName &&
h.Description == Description &&
h.LastRenovationDate == LastRenovationDate;
public override int GetHashCode() =>
HotelId.GetHashCode() ^
HotelName.GetHashCode() ^
Description.GetHashCode() ^
LastRenovationDate.GetHashCode();
}
[Test]
public async Task StructDocuments()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<SimpleStructHotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(
new SimpleStructHotel
{
HotelId = "1",
HotelName = "Secret Point Motel",
Description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
LastRenovationDate = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5))
}),
IndexDocumentsAction.Upload(
new SimpleStructHotel
{
HotelId = "2",
HotelName = "Countryside Hotel",
Description = "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.",
LastRenovationDate = new DateTimeOffset(1999, 9, 6, 0, 0, 0, TimeSpan.Zero), //aka.ms/sre-codescan/disable
}),
IndexDocumentsAction.Merge(
new SimpleStructHotel
{
HotelId = "3",
Description = "Surprisingly expensive",
LastRenovationDate = null
}),
IndexDocumentsAction.Delete(new SimpleStructHotel { HotelId = "4" }),
IndexDocumentsAction.MergeOrUpload(
new SimpleStructHotel
{
HotelId = "5",
HotelName = null
}));
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(5, response.Value.Results.Count);
AssertPartialFailure(response, "3");
List<IndexingResult> results = new List<IndexingResult>(response.Value.Results);
AssertActionSucceeded("1", results[0], 201);
AssertActionSucceeded("2", results[1], 201);
AssertActionFailed("3", results[2], "Document not found.", 404);
AssertActionSucceeded("4", results[3], 200);
AssertActionSucceeded("5", results[4], 201);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(3L, count);
}
[Test]
public async Task DoesNotThrowOnSuccess()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Upload(
new[] { new Hotel() { HotelId = "1" } });
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(1, response.Value.Results.Count);
AssertActionSucceeded("1", response.Value.Results[0], 201);
}
[Test]
public async Task DoesNotThrowOnPartialSuccess()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(new Hotel { HotelId = "1" }),
IndexDocumentsAction.Merge(new Hotel { HotelId = "2" }));
Response<IndexDocumentsResult> response = await client.IndexDocumentsAsync(batch);
AssertPartialFailure(response, "2");
Assert.AreEqual(2, response.Value.Results.Count);
AssertActionSucceeded("1", response.Value.Results[0], 201);
AssertActionFailed("2", response.Value.Results[1], "Document not found.", 404);
}
[Test]
public async Task ThrowsOnPartialSuccessWhenAsked()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(new Hotel { HotelId = "1", Category = "Luxury" }),
IndexDocumentsAction.Merge(new Hotel { HotelId = "2" }));
AggregateException ex = await CatchAsync<AggregateException>(
async () => await client.IndexDocumentsAsync(
batch,
new IndexDocumentsOptions { ThrowOnAnyError = true }));
RequestFailedException inner = ex.InnerException as RequestFailedException;
Assert.AreEqual(404, inner.Status);
Assert.AreEqual("Document not found.", inner.Message);
}
[Test]
public async Task ThrowsAggregateException()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Create(
IndexDocumentsAction.Upload(new Hotel { HotelId = "1", Category = "Luxury" }),
IndexDocumentsAction.Merge(new Hotel { HotelId = "2" }),
IndexDocumentsAction.Merge(new Hotel { HotelId = "3" }));
AggregateException ex = await CatchAsync<AggregateException>(
async () => await client.IndexDocumentsAsync(
batch,
new IndexDocumentsOptions { ThrowOnAnyError = true }));
StringAssert.StartsWith("Failed to index document(s): 2, 3.", ex.Message);
RequestFailedException inner = ex.InnerExceptions[0] as RequestFailedException;
Assert.AreEqual(404, inner.Status);
Assert.AreEqual("Document not found.", inner.Message);
inner = ex.InnerExceptions[1] as RequestFailedException;
Assert.AreEqual(404, inner.Status);
Assert.AreEqual("Document not found.", inner.Message);
}
[Test]
public async Task DoesNotThrowDeletingExtraStatic()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
Hotel document = new Hotel() { HotelId = "1", Category = "Luxury" };
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Upload(new[] { document });
await client.IndexDocumentsAsync(batch);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(1, count);
document.Category = "ignored";
batch = IndexDocumentsBatch.Delete(new[] { document });
IndexDocumentsResult result = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(1, result.Results.Count);
AssertActionSucceeded("1", result.Results[0], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(0, count);
}
[Test]
public async Task DoesNotThrowDeletingExtraDynamic()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
SearchDocument document = new SearchDocument() { ["hotelId"] = "1", ["category"] = "Luxury" };
IndexDocumentsBatch<SearchDocument> batch = IndexDocumentsBatch.Upload(new[] { document });
await client.IndexDocumentsAsync(batch);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(1, count);
document["category"] = "ignored";
batch = IndexDocumentsBatch.Delete(new[] { document });
IndexDocumentsResult result = await client.IndexDocumentsAsync(batch);
Assert.AreEqual(1, result.Results.Count);
AssertActionSucceeded("1", result.Results[0], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(0, count);
}
[Test]
public async Task DeleteByKeys()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<Hotel> batch = IndexDocumentsBatch.Upload(
new[]
{
new Hotel() { HotelId = "1" },
new Hotel() { HotelId = "2" }
});
await client.IndexDocumentsAsync(batch);
await resources.WaitForIndexingAsync();
long count = await client.GetDocumentCountAsync();
Assert.AreEqual(2, count);
IndexDocumentsBatch<SearchDocument> trash =
IndexDocumentsBatch.Delete("hotelId", new[] { "1", "2" });
IndexDocumentsResult result = await client.IndexDocumentsAsync(trash);
Assert.AreEqual(2, result.Results.Count);
AssertActionSucceeded("1", result.Results[0], 200);
AssertActionSucceeded("2", result.Results[1], 200);
await resources.WaitForIndexingAsync();
count = await client.GetDocumentCountAsync();
Assert.AreEqual(0, count);
}
/* TODO: Enable these Track 1 tests when we have support for index creation
public void CanIndexWithPascalCaseFields()
{
Run(() =>
{
SearchServiceClient serviceClient = Data.GetSearchServiceClient();
Index index = Book.DefineIndex();
serviceClient.Indexes.Create(index);
SearchClient indexClient = Data.GetSearchClient(index.Name);
var batch =
IndexBatch.Upload(new[]
{
new Book()
{
ISBN = "123",
Title = "Lord of the Rings",
Author = new Author()
{
FirstName = "J.R.R.",
LastName = "Tolkien"
}
}
});
DocumentIndexResult indexResponse = indexClient.Documents.Index(batch);
Assert.Equal(1, indexResponse.Results.Count);
AssertIndexActionSucceeded("123", indexResponse.Results[0], 201);
});
}
[Fact]
public void StaticallyTypedDateTimesRoundTripAsUtc()
{
Run(() =>
{
SearchServiceClient serviceClient = Data.GetSearchServiceClient();
Index index = Book.DefineIndex();
serviceClient.Indexes.Create(index);
SearchClient indexClient = Data.GetSearchClient(index.Name);
// Can't test local date time since we might be testing against a pre-recorded mock response.
var utcDateTime = new DateTime(2000, 1, 1, 0, 0, 0, DateTimeKind.Utc);
var unspecifiedDateTime = new DateTime(2000, 1, 1, 0, 0, 0, DateTimeKind.Unspecified);
var batch =
IndexBatch.Upload(
new[]
{
new Book() { ISBN = "1", PublishDate = utcDateTime },
new Book() { ISBN = "2", PublishDate = unspecifiedDateTime }
});
indexClient.Documents.Index(batch);
SearchTestUtilities.WaitForIndexing();
Book book = indexClient.Documents.Get<Book>("1");
Assert.Equal(utcDateTime, book.PublishDate);
book = indexClient.Documents.Get<Book>("2");
Assert.Equal(utcDateTime, book.PublishDate);
});
}
[Fact]
public void DynamicDocumentDateTimesRoundTripAsUtc()
{
Run(() =>
{
SearchServiceClient serviceClient = Data.GetSearchServiceClient();
Index index = Book.DefineIndex();
serviceClient.Indexes.Create(index);
SearchClient indexClient = Data.GetSearchClient(index.Name);
// Can't test local date time since we might be testing against a pre-recorded mock response.
var utcDateTime = new DateTime(2000, 1, 1, 0, 0, 0, DateTimeKind.Utc);
var unspecifiedDateTime = new DateTime(2000, 1, 1, 0, 0, 0, DateTimeKind.Unspecified);
var batch =
IndexBatch.Upload(
new[]
{
new Document() { ["ISBN"] = "1", ["PublishDate"] = utcDateTime },
new Document() { ["ISBN"] = "2", ["PublishDate"] = unspecifiedDateTime }
});
indexClient.Documents.Index(batch);
SearchTestUtilities.WaitForIndexing();
Document book = indexClient.Documents.Get("1");
Assert.Equal(new DateTimeOffset(utcDateTime), book["PublishDate"]);
book = indexClient.Documents.Get("2");
Assert.Equal(new DateTimeOffset(utcDateTime), book["PublishDate"]);
});
}
/**/
[Test]
public async Task ThrowsOnInvalidDocument()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
IndexDocumentsBatch<SearchDocument> batch = IndexDocumentsBatch.Upload(
new[] { new SearchDocument() });
RequestFailedException ex = await CatchAsync<RequestFailedException>(
async () => await client.IndexDocumentsAsync(
batch,
new IndexDocumentsOptions { ThrowOnAnyError = true }));
Assert.AreEqual(400, ex.Status);
StringAssert.StartsWith("The request is invalid.", ex.Message);
int errorJsonStartIndex = ex.Message.IndexOf("{");
int errorJsonEndIndex = ex.Message.LastIndexOf("}");
string errorJsonContent = ex.Message.Substring(errorJsonStartIndex, errorJsonEndIndex - errorJsonStartIndex + 1);
using var jsonDocument = JsonDocument.Parse(errorJsonContent);
JsonElement errorElement = jsonDocument.RootElement.GetProperty("error");
StringAssert.AreEqualIgnoringCase("OperationNotAllowed", errorElement.GetProperty("code").GetString());
StringAssert.StartsWith("The request is invalid.", errorElement.GetProperty("message").GetString());
JsonElement details = errorElement.GetProperty("details");
StringAssert.AreEqualIgnoringCase("MissingKeyField", details[0].GetProperty("code").GetString());
StringAssert.AreEqualIgnoringCase("0: Document key cannot be missing or empty. Parameters: actions", details[0].GetProperty("message").GetString());
}
[Test]
public async Task CountStartsAtZero()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
long count = await resources.GetSearchClient().GetDocumentCountAsync();
Assert.AreEqual(0, count);
}
[Test]
public async Task MergeDocumentsDynamic()
{
await using SearchResources resources = await SearchResources.CreateWithEmptyHotelsIndexAsync(this);
SearchClient client = resources.GetSearchClient();
SearchDocument original =
new SearchDocument
{
["hotelId"] = "1",
["hotelName"] = "Secret Point Motel",
["description"] = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
["descriptionFr"] = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
["category"] = "Boutique",
["tags"] = new[] { "pool", "air conditioning", "concierge" },
["parkingIncluded"] = false,
["smokingAllowed"] = true,
["lastRenovationDate"] = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.FromHours(-5)),
["rating"] = 4L,
["location"] = TestExtensions.CreateDynamicPoint(-73.975403, 40.760586),
["geoLocation"] = TestExtensions.CreateDynamicGeoPoint(-73.975403, 40.760586),
["address"] = new SearchDocument
{
["streetAddress"] = "677 5th Ave",
["city"] = "New York",
["stateProvince"] = "NY",
["country"] = "USA",
["postalCode"] = "10022"
},
["rooms"] = new[]
{
new SearchDocument
{
["description"] = "Budget Room, 1 Queen Bed (Cityside)",
["descriptionFr"] = "Chambre Économique, 1 grand lit (côté ville)",
["type"] = "Budget Room",
["baseRate"] = 9.69,
["bedOptions"] = "1 Queen Bed",
["sleepsCount"] = 2L,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd" }
},
new SearchDocument
{
["description"] = "Budget Room, 1 King Bed (Mountain View)",
["descriptionFr"] = "Chambre Économique, 1 très grand lit (Mountain View)",
["type"] = "Budget Room",
["baseRate"] = 8.09,
["bedOptions"] = "1 King Bed",
["sleepsCount"] = 2L,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd", "jacuzzi tub" }
}
}
};
SearchDocument updated =
new SearchDocument
{
["hotelId"] = "1",
["description"] = null,
["category"] = "Economy",
["tags"] = new[] { "pool", "air conditioning" },
["parkingIncluded"] = true,
["lastRenovationDate"] = null,
["rating"] = 3L,
["location"] = null,
["geoLocation"] = null,
["address"] = new SearchDocument(),
["rooms"] = new[]
{
new SearchDocument
{
["description"] = null,
["type"] = "Budget Room",
["baseRate"] = 10.5,
["bedOptions"] = "1 Queen Bed",
["sleepsCount"] = 2L,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd", "balcony" }
}
}
};
SearchDocument expected =
new SearchDocument()
{
["hotelId"] = "1",
["hotelName"] = "Secret Point Motel",
["description"] = null,
["descriptionFr"] = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
["category"] = "Economy",
["tags"] = new[] { "pool", "air conditioning" },
["parkingIncluded"] = true,
["smokingAllowed"] = true,
["lastRenovationDate"] = null,
["rating"] = 3L,
["location"] = null,
["geoLocation"] = null,
["address"] = new SearchDocument
{
["streetAddress"] = "677 5th Ave",
["city"] = "New York",
["stateProvince"] = "NY",
["country"] = "USA",
["postalCode"] = "10022"
},
["rooms"] = new[]
{
// This should look like the merged doc with
// unspecified fields as null because we don't support
// partial updates for complex collections.
new SearchDocument
{
["description"] = null,
["descriptionFr"] = null,
["type"] = "Budget Room",
["baseRate"] = 10.5,
["bedOptions"] = "1 Queen Bed",
["sleepsCount"] = 2L,
["smokingAllowed"] = true,
["tags"] = new[] { "vcr/dvd", "balcony" }
}
}
};
await client.IndexDocumentsAsync(
IndexDocumentsBatch.MergeOrUpload(new[] { original }));
await resources.WaitForIndexingAsync();
await client.IndexDocumentsAsync(
IndexDocumentsBatch.Merge(new[] { updated }));