-
Notifications
You must be signed in to change notification settings - Fork 487
/
Copy pathTeamsInfoTests.cs
1758 lines (1552 loc) · 80.7 KB
/
TeamsInfoTests.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.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Bot.Builder.Tests;
using Microsoft.Bot.Connector;
using Microsoft.Bot.Connector.Authentication;
using Microsoft.Bot.Schema;
using Microsoft.Bot.Schema.Teams;
using Microsoft.Rest;
using Moq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Xunit;
namespace Microsoft.Bot.Builder.Teams.Tests
{
public class TeamsInfoTests
{
[Fact]
public async Task TestSendMessageToTeamsChannelAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler(), false);
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("https://test.coffee"), MicrosoftAppCredentials.Empty, customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToTeamsChannelAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
};
var turnContext = new TurnContext(new BotFrameworkAdapter(new SimpleCredentialProvider(), customHttpClient: customHttpClient), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
turnContext.Activity.ServiceUrl = "https://test.coffee";
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestSendMessageToTeamsChannel2Async()
{
// Arrange
var expectedTeamsChannelId = "teams-channel-id";
var expectedAppId = "app-id";
var expectedServiceUrl = "service-url";
var expectedActivityId = "activity-id";
var expectedConversationId = "conversation-id";
var requestActivity = new Activity { ServiceUrl = expectedServiceUrl };
var adapter = new TestCreateConversationAdapter(expectedActivityId, expectedConversationId);
var turnContextMock = new Mock<ITurnContext>();
turnContextMock.Setup(tc => tc.Activity).Returns(requestActivity);
turnContextMock.Setup(tc => tc.Adapter).Returns(adapter);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToTeamsChannelAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
};
// Act
var r = await TeamsInfo.SendMessageToTeamsChannelAsync(turnContextMock.Object, activity, expectedTeamsChannelId, expectedAppId, CancellationToken.None);
// Assert
Assert.Equal(expectedConversationId, r.Item1.Conversation.Id);
Assert.Equal(expectedActivityId, r.Item2);
Assert.Equal(expectedAppId, adapter.AppId);
Assert.Equal(Channels.Msteams, adapter.ChannelId);
Assert.Equal(expectedServiceUrl, adapter.ServiceUrl);
Assert.Null(adapter.Audience);
var channelData = adapter.ConversationParameters.ChannelData;
var channel = channelData.GetType().GetProperty("Channel").GetValue(channelData, null);
var id = channel.GetType().GetProperty("Id").GetValue(channel, null);
Assert.Equal(expectedTeamsChannelId, id);
Assert.Equal(adapter.ConversationParameters.Activity, activity);
}
[Fact]
public async Task TestGetMeetingInfoAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetMeetingInfoAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Meeting = new TeamsMeetingInfo
{
Id = "meeting-id"
}
},
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGetTeamDetailsAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetTeamDetailsAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestTeamGetMembersAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-Team-GetMembersAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGroupChatGetMembersAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GroupChat-GetMembersAsync",
ChannelId = Channels.Msteams,
Conversation = new ConversationAccount { Id = "conversation-id" },
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGetChannelsAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetChannelsAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
ServiceUrl = "https://test.coffee",
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGetParticipantAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetParticipantAsync",
ChannelId = Channels.Msteams,
From = new ChannelAccount { AadObjectId = "participantId-1" },
ChannelData = new TeamsChannelData
{
Meeting = new TeamsMeetingInfo
{
Id = "meetingId-1"
},
Tenant = new TenantInfo
{
Id = "tenantId-1"
},
},
ServiceUrl = "https://test.coffee",
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGetMemberAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetGetMemberAsync",
ChannelId = Channels.Msteams,
ChannelData = new TeamsChannelData
{
Team = new TeamInfo
{
Id = "team-id",
},
},
ServiceUrl = "https://test.coffee",
From = new ChannelAccount() { Id = "id-1" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Fact]
public async Task TestGetMemberNoTeamAsync()
{
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetGetMemberAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount() { Id = "id-1" },
Conversation = new ConversationAccount() { Id = "conversation-id" },
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("202")]
[InlineData("207")]
[InlineData("400")]
[InlineData("403")]
public async Task TestSendMeetingNotificationAsync(string statusCode)
{
// 202: accepted
// 207: if the notifications are sent only to parital number of recipients because
// the validation on some recipients’ ids failed or some recipients were not found in the roster.
// • In this case, SMBA will return the user MRIs of those failed recipients in a format that was given to a bot
// (ex: if a bot sent encrypted user MRIs, return encrypted one).
// 400: when Meeting Notification request payload validation fails. For instance,
// • Recipients: # of recipients is greater than what the API allows || all of recipients’ user ids were invalid
// • Surface:
// o Surface list is empty or null
// o Surface type is invalid
// o Duplicative surface type exists in one payload
// 403: if the bot is not allowed to send the notification.
// In this case, the payload should contain more detail error message.
// There can be many reasons: bot disabled by tenant admin, blocked during live site mitigation,
// the bot does not have a correct RSC permission for a specific surface type, etc
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "targetedMeetingNotification",
Text = "Test-SendMeetingNotificationAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("201")]
[InlineData("400")]
[InlineData("403")]
[InlineData("429")]
public async Task TestSendMessageToListOfUsersAsync(string statusCode)
{
// 201: created
// 400: when send message to list of users request payload validation fails.
// 403: if the bot is not allowed to send messages.
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToListOfUsersAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("201")]
[InlineData("400")]
[InlineData("403")]
[InlineData("429")]
public async Task TestSendMessageToAllUsersInTenantAsync(string statusCode)
{
// 201: created
// 400: when send message to list of users request payload validation fails.
// 403: if the bot is not allowed to send messages.
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToAllUsersInTenantAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("201")]
[InlineData("400")]
[InlineData("403")]
[InlineData("404")]
[InlineData("429")]
public async Task TestSendMessageToAllUsersInTeamAsync(string statusCode)
{
// 201: created
// 400: when send message to list of users request payload validation fails.
// 403: if the bot is not allowed to send messages.
// 404: when Team is not found.
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToAllUsersInTeamAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("201")]
[InlineData("400")]
[InlineData("403")]
[InlineData("429")]
public async Task TestSendMessageToListOfChannelsAsync(string statusCode)
{
// 201: created
// 400: when send message to list of channels request payload validation fails.
// 403: if the bot is not allowed to send messages.
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-SendMessageToListOfChannelsAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("200")]
[InlineData("400")]
[InlineData("429")]
public async Task TestGetOperationStateAsync(string statusCode)
{
// 200: ok
// 400: for requests with invalid operationId (Which should be of type GUID).
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetOperationStateAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("200")]
[InlineData("400")]
[InlineData("429")]
public async Task TestGetPagedFailedEntriesAsync(string statusCode)
{
// 200: ok
// 400: for requests with invalid operationId (Which should be of type GUID).
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-GetPagedFailedEntriesAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
[Theory]
[InlineData("200")]
[InlineData("400")]
[InlineData("429")]
public async Task TestCancelOperationAsync(string statusCode)
{
// 200: Ok for successful cancelled operations (Operations in state completed, or failed will not change state to cancel but still return 200)
// 400: for requests with invalid operationId (Which should be of type GUID).
// 429: too many requests for throttled requests.
var baseUri = new Uri("https://test.coffee");
var customHttpClient = new HttpClient(new RosterHttpMessageHandler());
// Set a special base address so then we can make sure the connector client is honoring this http client
customHttpClient.BaseAddress = baseUri;
var connectorClient = new ConnectorClient(new Uri("http://localhost/"), new MicrosoftAppCredentials(string.Empty, string.Empty), customHttpClient);
var activity = new Activity
{
Type = "message",
Text = "Test-CancelOperationAsync",
ChannelId = Channels.Msteams,
ServiceUrl = "https://test.coffee",
From = new ChannelAccount()
{
Id = "id-1",
// Hack for test. use the Name field to pass expected status code to test code
Name = statusCode
},
Conversation = new ConversationAccount() { Id = "conversation-id" }
};
var turnContext = new TurnContext(new SimpleAdapter(), activity);
turnContext.TurnState.Add<IConnectorClient>(connectorClient);
var handler = new TestTeamsActivityHandler();
await handler.OnTurnAsync(turnContext);
}
private class TestTeamsActivityHandler : TeamsActivityHandler
{
public override async Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default)
{
await base.OnTurnAsync(turnContext, cancellationToken);
switch (turnContext.Activity.Text)
{
case "Test-GetTeamDetailsAsync":
await CallGetTeamDetailsAsync(turnContext);
break;
case "Test-Team-GetMembersAsync":
await CallTeamGetMembersAsync(turnContext);
break;
case "Test-GroupChat-GetMembersAsync":
await CallGroupChatGetMembersAsync(turnContext);
break;
case "Test-GetChannelsAsync":
await CallGetChannelsAsync(turnContext);
break;
case "Test-SendMessageToTeamsChannelAsync":
await CallSendMessageToTeamsChannelAsync(turnContext);
break;
case "Test-GetGetMemberAsync":
await CallTeamGetMemberAsync(turnContext);
break;
case "Test-GetParticipantAsync":
await CallTeamsInfoGetParticipantAsync(turnContext);
break;
case "Test-GetMeetingInfoAsync":
await CallTeamsInfoGetMeetingInfoAsync(turnContext);
break;
case "Test-SendMeetingNotificationAsync":
await CallSendMeetingNotificationAsync(turnContext);
break;
case "Test-SendMessageToListOfUsersAsync":
await CallSendMessageToListOfUsersAsync(turnContext);
break;
case "Test-SendMessageToAllUsersInTenantAsync":
await CallSendMessageToAllUsersInTenantAsync(turnContext);
break;
case "Test-SendMessageToAllUsersInTeamAsync":
await CallSendMessageToAllUsersInTeamAsync(turnContext);
break;
case "Test-SendMessageToListOfChannelsAsync":
await CallSendMessageToListOfChannelsAsync(turnContext);
break;
case "Test-GetOperationStateAsync":
await CallGetOperationStateAsync(turnContext);
break;
case "Test-GetPagedFailedEntriesAsync":
await CallGetPagedFailedEntriesAsync(turnContext);
break;
case "Test-CancelOperationAsync":
await CallCancelOperationAsync(turnContext);
break;
default:
Assert.True(false);
break;
}
}
private async Task CallSendMessageToTeamsChannelAsync(ITurnContext turnContext)
{
var message = MessageFactory.Text("hi");
var channelId = "channelId123";
var creds = new MicrosoftAppCredentials(string.Empty, string.Empty);
var cancelToken = new CancellationToken();
var reference = await TeamsInfo.SendMessageToTeamsChannelAsync(turnContext, message, channelId, creds, cancelToken);
Assert.Equal("activityId123", reference.Item1.ActivityId);
Assert.Equal(channelId, reference.Item1.ChannelId);
Assert.Equal(turnContext.Activity.ServiceUrl, reference.Item1.ServiceUrl);
Assert.Equal("activityId123", reference.Item2);
}
private async Task CallGetTeamDetailsAsync(ITurnContext turnContext)
{
var teamDetails = await TeamsInfo.GetTeamDetailsAsync(turnContext);
Assert.Equal("team-id", teamDetails.Id);
Assert.Equal("team-name", teamDetails.Name);
Assert.Equal("team-aadgroupid", teamDetails.AadGroupId);
}
private async Task CallTeamGetMembersAsync(ITurnContext turnContext)
{
var members = (await TeamsInfo.GetMembersAsync(turnContext)).ToArray();
Assert.Equal("id-1", members[0].Id);
Assert.Equal("name-1", members[0].Name);
Assert.Equal("givenName-1", members[0].GivenName);
Assert.Equal("surname-1", members[0].Surname);
Assert.Equal("userPrincipalName-1", members[0].UserPrincipalName);
Assert.Equal("id-2", members[1].Id);
Assert.Equal("name-2", members[1].Name);
Assert.Equal("givenName-2", members[1].GivenName);
Assert.Equal("surname-2", members[1].Surname);
Assert.Equal("userPrincipalName-2", members[1].UserPrincipalName);
}
private async Task CallTeamGetMemberAsync(ITurnContext turnContext)
{
var member = await TeamsInfo.GetMemberAsync(turnContext, turnContext.Activity.From.Id);
Assert.Equal("id-1", member.Id);
Assert.Equal("name-1", member.Name);
Assert.Equal("givenName-1", member.GivenName);
Assert.Equal("surname-1", member.Surname);
Assert.Equal("userPrincipalName-1", member.UserPrincipalName);
}
private async Task CallTeamsInfoGetParticipantAsync(ITurnContext turnContext)
{
var participant = await TeamsInfo.GetMeetingParticipantAsync(turnContext);
Assert.Equal("Organizer", participant.Meeting.Role);
Assert.Equal("meetigConversationId-1", participant.Conversation.Id);
Assert.Equal("userPrincipalName-1", participant.User.UserPrincipalName);
}
private async Task CallTeamsInfoGetMeetingInfoAsync(ITurnContext turnContext)
{
var meeting = await TeamsInfo.GetMeetingInfoAsync(turnContext);
Assert.Equal("meeting-id", meeting.Details.Id);
Assert.Equal("organizer-id", meeting.Organizer.Id);
Assert.Equal("meetingConversationId-1", meeting.Conversation.Id);
}
private MeetingNotificationBase GetTargetedMeetingNotification(ChannelAccount from)
{
var recipients = new List<string> { from.Id };
if (from.Name == "207")
{
recipients.Add("failingid");
}
var meetingStageSurface = new MeetingStageSurface<TaskModuleContinueResponse>
{
Content = new TaskModuleContinueResponse
{
Value = new TaskModuleTaskInfo
{
Title = "title here",
Height = 3,
Width = 2,
}
},
ContentType = ContentType.Task
};
var meetingTabIconSurface = new MeetingTabIconSurface
{
TabEntityId = "test tab entity id"
};
var value = new TargetedMeetingNotificationValue
{
Recipients = recipients,
Surfaces = new List<Surface> { meetingStageSurface, meetingTabIconSurface }
};
var obo = new OnBehalfOf
{
DisplayName = from.Name,
Mri = from.Id
};
var channelData = new MeetingNotificationChannelData
{
OnBehalfOfList = new[] { obo }
};
return new TargetedMeetingNotification
{
Value = value,
ChannelData = channelData
};
}
private async Task CallSendMeetingNotificationAsync(ITurnContext turnContext)
{
var from = turnContext.Activity.From;
try
{
var failedParticipants = await TeamsInfo.SendMeetingNotificationAsync(turnContext, GetTargetedMeetingNotification(from), "meeting-id").ConfigureAwait(false);
switch (from.Name)
{
case "207":
Assert.Equal("failingid", failedParticipants.RecipientsFailureInfo.First().RecipientMri);
break;
case "202":
Assert.Null(failedParticipants);
break;
default:
throw new InvalidOperationException($"Expected {nameof(HttpOperationException)} with response status code {from.Name}.");
}
}
catch (HttpOperationException ex)
{
Assert.Equal(from.Name, ((int)ex.Response.StatusCode).ToString());
var errorResponse = JsonConvert.DeserializeObject<ErrorResponse>(ex.Response.Content);
switch (from.Name)
{
case "400":
Assert.Equal("BadSyntax", errorResponse.Error.Code);
break;
case "403":
Assert.Equal("BotNotInConversationRoster", errorResponse.Error.Code);
break;
default:
throw new InvalidOperationException($"Expected {nameof(HttpOperationException)} with response status code {from.Name}.");
}
}
}
private async Task CallGroupChatGetMembersAsync(ITurnContext turnContext)
{
var members = (await TeamsInfo.GetMembersAsync(turnContext)).ToArray();
Assert.Equal("id-3", members[0].Id);
Assert.Equal("name-3", members[0].Name);
Assert.Equal("givenName-3", members[0].GivenName);
Assert.Equal("surname-3", members[0].Surname);
Assert.Equal("userPrincipalName-3", members[0].UserPrincipalName);
Assert.Equal("id-4", members[1].Id);
Assert.Equal("name-4", members[1].Name);
Assert.Equal("givenName-4", members[1].GivenName);
Assert.Equal("surname-4", members[1].Surname);
Assert.Equal("userPrincipalName-4", members[1].UserPrincipalName);
}
private async Task CallGetChannelsAsync(ITurnContext turnContext)
{
var channels = (await TeamsInfo.GetTeamChannelsAsync(turnContext)).ToArray();
Assert.Equal("channel-id-1", channels[0].Id);
Assert.Equal("channel-id-2", channels[1].Id);
Assert.Equal("channel-name-2", channels[1].Name);
Assert.Equal("channel-id-3", channels[2].Id);
Assert.Equal("channel-name-3", channels[2].Name);
}
private async Task CallSendMessageToListOfUsersAsync(ITurnContext turnContext)
{
var from = turnContext.Activity.From;
var members = new List<TeamMember>()
{
new TeamMember("member-1"),
new TeamMember("member-2"),
new TeamMember("member-3"),
};
var tenantId = "tenant-id";
try
{
var operationId = await TeamsInfo.SendMessageToListOfUsersAsync(turnContext, turnContext.Activity, members, tenantId).ConfigureAwait(false);
switch (from.Name)
{
case "201":
Assert.Equal("operation-1", operationId);
break;
default:
throw new InvalidOperationException($"Expected {nameof(HttpOperationException)} with response status code {from.Name}.");
}
}
catch (AggregateException ex)
{
var firstException = ex.InnerExceptions.First();
var httpException = new HttpOperationException();
var errorResponse = new ErrorResponse();
switch (from.Name)
{
case "400":
Assert.Single(ex.InnerExceptions);
httpException = (HttpOperationException)firstException;
errorResponse = JsonConvert.DeserializeObject<ErrorResponse>(httpException.Response.Content.ToString());
Assert.Equal("BadSyntax", errorResponse.Error.Code);
break;
case "403":
Assert.Single(ex.InnerExceptions);
httpException = (HttpOperationException)firstException;
errorResponse = JsonConvert.DeserializeObject<ErrorResponse>(httpException.Response.Content.ToString());
Assert.Equal("Forbidden", errorResponse.Error.Code);
break;
case "429":
Assert.Equal(11, ex.InnerExceptions.Count);
break;
default:
throw new InvalidOperationException($"Expected {nameof(HttpOperationException)} with response status code {from.Name}.");
}
}
}
private async Task CallSendMessageToAllUsersInTenantAsync(ITurnContext turnContext)
{
var from = turnContext.Activity.From;
var tenantId = "tenant-id";