Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Hubs.cs « HubConnectionHandlerTestUtils « test « SignalR « server « SignalR « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb2fef824439b1d09ca4314dba3fb271e20f0c78 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Globalization;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Channels;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http.Metadata;
using Newtonsoft.Json.Serialization;

namespace Microsoft.AspNetCore.SignalR.Tests;

public class MethodHub : TestHub
{
    public Task GroupRemoveMethod(string groupName)
    {
        return Groups.RemoveFromGroupAsync(Context.ConnectionId, groupName);
    }

    public Task ClientSendMethod(string userId, string message)
    {
        return Clients.User(userId).SendAsync("Send", message);
    }

    public Task SendToMultipleUsers(IReadOnlyList<string> userIds, string message)
    {
        return Clients.Users(userIds).SendAsync("Send", message);
    }

    public Task ConnectionSendMethod(string connectionId, string message)
    {
        return Clients.Client(connectionId).SendAsync("Send", message);
    }

    public Task SendToMultipleClients(string message, IReadOnlyList<string> connectionIds)
    {
        return Clients.Clients(connectionIds).SendAsync("Send", message);
    }

    public Task GroupAddMethod(string groupName)
    {
        return Groups.AddToGroupAsync(Context.ConnectionId, groupName);
    }

    public Task GroupSendMethod(string groupName, string message)
    {
        return Clients.Group(groupName).SendAsync("Send", message);
    }

    public Task GroupExceptSendMethod(string groupName, string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.GroupExcept(groupName, excludedConnectionIds).SendAsync("Send", message);
    }

    public Task SendToMultipleGroups(string message, IReadOnlyList<string> groupNames)
    {
        return Clients.Groups(groupNames).SendAsync("Send", message);
    }

    public Task SendToOthersInGroup(string groupName, string message)
    {
        return Clients.OthersInGroup(groupName).SendAsync("Send", message);
    }

    public Task BroadcastMethod(string message)
    {
        return Clients.All.SendAsync("Broadcast", message);
    }

    public Task BroadcastItem()
    {
        return Clients.All.SendAsync("Broadcast", new Result { Message = "test", paramName = "param" });
    }

    public Task SendArray()
    {
        return Clients.All.SendAsync("Array", new[] { 1, 2, 3 });
    }

    public Task<int> TaskValueMethod()
    {
        return Task.FromResult(42);
    }

    public int ValueMethod()
    {
        return 43;
    }

    public ValueTask ValueTaskMethod()
    {
        return new ValueTask(Task.CompletedTask);
    }

    public ValueTask<int> ValueTaskValueMethod()
    {
        return new ValueTask<int>(43);
    }

    [HubMethodName("RenamedMethod")]
    public int ATestMethodThatIsRenamedByTheAttribute()
    {
        return 43;
    }

    public string Echo(string data)
    {
        return data;
    }

    public void VoidMethod()
    {
    }

    public string ConcatString(byte b, int i, char c, string s)
    {
        return $"{b}, {i}, {c}, {s}";
    }

    public Task SendAnonymousObject()
    {
        return Clients.Client(Context.ConnectionId).SendAsync("Send", new { });
    }

    public override Task OnDisconnectedAsync(Exception e)
    {
        return Task.CompletedTask;
    }

    public void MethodThatThrows()
    {
        throw new InvalidOperationException("BOOM!");
    }

    public void ThrowHubException()
    {
        throw new HubException("This is a hub exception");
    }

    public Task MethodThatYieldsFailedTask()
    {
        return Task.FromException(new InvalidOperationException("BOOM!"));
    }

    public static void StaticMethod()
    {
    }

    [Authorize("test")]
    public void AuthMethod()
    {
    }

    [Authorize("test")]
    public void MultiParamAuthMethod(string s1, string s2)
    {
    }

    public Task SendToAllExcept(string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.AllExcept(excludedConnectionIds).SendAsync("Send", message);
    }

    public bool HasHttpContext()
    {
        return Context.GetHttpContext() != null;
    }

    public Task SendToOthers(string message)
    {
        return Clients.Others.SendAsync("Send", message);
    }

    public Task SendToCaller(string message)
    {
        return Clients.Caller.SendAsync("Send", message);
    }

    public Task ProtocolError()
    {
        return Clients.Caller.SendAsync("Send", new SelfRef());
    }

    public void InvalidArgument(CancellationToken token)
    {
    }

    public async Task<string> StreamingConcat(ChannelReader<string> source)
    {
        var sb = new StringBuilder();

        while (await source.WaitToReadAsync())
        {
            while (source.TryRead(out var item))
            {
                sb.Append(item);
            }
        }

        return sb.ToString();
    }

    public async Task StreamDontRead(ChannelReader<string> source)
    {
        while (await source.WaitToReadAsync())
        {
        }
    }

    public async Task<int> StreamingSum(ChannelReader<int> source)
    {
        var total = 0;
        while (await source.WaitToReadAsync())
        {
            while (source.TryRead(out var item))
            {
                total += item;
            }
        }
        return total;
    }

    public async Task<List<object>> UploadArray(ChannelReader<object> source)
    {
        var results = new List<object>();

        while (await source.WaitToReadAsync())
        {
            while (source.TryRead(out var item))
            {
                results.Add(item);
            }
        }

        return results;
    }

    [Authorize("test")]
    public async Task<List<object>> UploadArrayAuth(ChannelReader<object> source)
    {
        var results = new List<object>();

        while (await source.WaitToReadAsync())
        {
            while (source.TryRead(out var item))
            {
                results.Add(item);
            }
        }

        return results;
    }

    public async Task<string> TestTypeCastingErrors(ChannelReader<int> source)
    {
        try
        {
            await source.WaitToReadAsync();
        }
        catch (Exception)
        {
            return "error identified and caught";
        }

        return "wrong type accepted, this is bad";
    }

    public async Task<bool> TestCustomErrorPassing(ChannelReader<int> source)
    {
        try
        {
            await source.WaitToReadAsync();
        }
        catch (Exception ex)
        {
            return ex.Message == HubConnectionHandlerTests.CustomErrorMessage;
        }

        return false;
    }

    public Task UploadIgnoreItems(ChannelReader<string> source)
    {
        // Wait for an item to appear first then return from the hub method to end the invocation
        return source.WaitToReadAsync().AsTask();
    }

    public ChannelReader<string> StreamAndUploadIgnoreItems(ChannelReader<string> source)
    {
        var channel = Channel.CreateUnbounded<string>();
        _ = ChannelFunc(channel.Writer, source);

        return channel.Reader;

        async Task ChannelFunc(ChannelWriter<string> output, ChannelReader<string> input)
        {
            // Wait for an item to appear first then return from the hub method to end the invocation
            await input.WaitToReadAsync();
            output.Complete();
        }
    }

    public async Task UploadDoesWorkOnComplete(ChannelReader<string> source)
    {
        var tcs = new TaskCompletionSource<int>(TaskCreationOptions.RunContinuationsAsynchronously);
        Context.Items[nameof(UploadDoesWorkOnComplete)] = tcs.Task;

        try
        {
            while (await source.WaitToReadAsync())
            {
                while (source.TryRead(out var item))
                {
                }
            }
        }
        catch (Exception ex)
        {
            tcs.SetException(ex);
        }
        finally
        {
            tcs.TrySetResult(42);
        }
    }

    public async Task BlockingMethod()
    {
        var tcs = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously);
        Context.ConnectionAborted.Register(state => ((TaskCompletionSource)state).SetResult(), tcs);

        await tcs.Task;
    }

    public async Task<int> GetClientResult(int num)
    {
        var sum = await Clients.Caller.InvokeAsync<int>("Sum", num);
        return sum;
    }
}

internal class SelfRef
{
    public SelfRef()
    {
        Self = this;
    }

    public SelfRef Self { get; set; }
}

public abstract class TestHub : Hub
{
    public override Task OnConnectedAsync()
    {
        var tcs = (TaskCompletionSource)Context.Items["ConnectedTask"];
        tcs?.TrySetResult();
        return base.OnConnectedAsync();
    }
}

public class DynamicTestHub : DynamicHub
{
    public override Task OnConnectedAsync()
    {
        var tcs = (TaskCompletionSource)Context.Items["ConnectedTask"];
        tcs?.TrySetResult();
        return base.OnConnectedAsync();
    }

    public string Echo(string data)
    {
        return data;
    }

    public Task ClientSendMethod(string userId, string message)
    {
        return Clients.User(userId).Send(message);
    }

    public Task SendToMultipleUsers(List<string> userIds, string message)
    {
        return Clients.Users(userIds).Send(message);
    }

    public Task ConnectionSendMethod(string connectionId, string message)
    {
        return Clients.Client(connectionId).Send(message);
    }

    public Task SendToMultipleClients(string message, IReadOnlyList<string> connectionIds)
    {
        return Clients.Clients(connectionIds).Send(message);
    }

    public Task GroupAddMethod(string groupName)
    {
        return Groups.AddToGroupAsync(Context.ConnectionId, groupName);
    }

    public Task GroupSendMethod(string groupName, string message)
    {
        return Clients.Group(groupName).Send(message);
    }

    public Task GroupExceptSendMethod(string groupName, string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.GroupExcept(groupName, excludedConnectionIds).Send(message);
    }

    public Task SendToOthersInGroup(string groupName, string message)
    {
        return Clients.OthersInGroup(groupName).Send(message);
    }

    public Task SendToMultipleGroups(string message, IReadOnlyList<string> groupNames)
    {
        return Clients.Groups(groupNames).Send(message);
    }

    public Task BroadcastMethod(string message)
    {
        return Clients.All.Broadcast(message);
    }

    public Task SendToAllExcept(string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.AllExcept(excludedConnectionIds).Send(message);
    }

    public Task SendToOthers(string message)
    {
        return Clients.Others.Send(message);
    }

    public Task SendToCaller(string message)
    {
        return Clients.Caller.Send(message);
    }
}

public class HubT : Hub<ITest>
{
    public override Task OnConnectedAsync()
    {
        var tcs = (TaskCompletionSource)Context.Items["ConnectedTask"];
        tcs?.TrySetResult();
        return base.OnConnectedAsync();
    }

    public string Echo(string data)
    {
        return data;
    }

    public Task ClientSendMethod(string userId, string message)
    {
        return Clients.User(userId).Send(message);
    }

    public Task SendToMultipleUsers(List<string> userIds, string message)
    {
        return Clients.Users(userIds).Send(message);
    }

    public Task ConnectionSendMethod(string connectionId, string message)
    {
        return Clients.Client(connectionId).Send(message);
    }

    public Task SendToMultipleClients(string message, IReadOnlyList<string> connectionIds)
    {
        return Clients.Clients(connectionIds).Send(message);
    }

    public async Task DelayedSend(string connectionId, string message)
    {
        await Task.Delay(100);
        await Clients.Client(connectionId).Send(message);
    }

    public Task GroupAddMethod(string groupName)
    {
        return Groups.AddToGroupAsync(Context.ConnectionId, groupName);
    }

    public Task GroupSendMethod(string groupName, string message)
    {
        return Clients.Group(groupName).Send(message);
    }

    public Task GroupExceptSendMethod(string groupName, string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.GroupExcept(groupName, excludedConnectionIds).Send(message);
    }

    public Task SendToMultipleGroups(string message, IReadOnlyList<string> groupNames)
    {
        return Clients.Groups(groupNames).Send(message);
    }

    public Task SendToOthersInGroup(string groupName, string message)
    {
        return Clients.OthersInGroup(groupName).Send(message);
    }

    public Task BroadcastMethod(string message)
    {
        return Clients.All.Broadcast(message);
    }

    public Task SendToAllExcept(string message, IReadOnlyList<string> excludedConnectionIds)
    {
        return Clients.AllExcept(excludedConnectionIds).Send(message);
    }

    public Task SendToOthers(string message)
    {
        return Clients.Others.Send(message);
    }

    public Task SendToCaller(string message)
    {
        return Clients.Caller.Send(message);
    }

    public async Task<ClientResults> GetClientResultTwoWays(int clientValue, int callerValue) =>
        new ClientResults(
            await Clients.Client(Context.ConnectionId).GetClientResult(clientValue),
            await Clients.Caller.GetClientResult(callerValue));
}

public interface ITest
{
    Task Send(string message);
    Task Broadcast(string message);

    Task<int> GetClientResult(int value);
}

public record ClientResults(int ClientResult, int CallerResult);

public class OnConnectedThrowsHub : Hub
{
    public override Task OnConnectedAsync()
    {
        var tcs = new TaskCompletionSource();
        tcs.SetException(new InvalidOperationException("Hub OnConnected failed."));
        return tcs.Task;
    }
}

public class OnDisconnectedThrowsHub : TestHub
{
    public override Task OnDisconnectedAsync(Exception exception)
    {
        var tcs = new TaskCompletionSource();
        tcs.SetException(new InvalidOperationException("Hub OnDisconnected failed."));
        return tcs.Task;
    }
}

public class InheritedHub : BaseHub
{
    public override int VirtualMethod(int num)
    {
        return num - 10;
    }

    public override int VirtualMethodRenamed()
    {
        return 34;
    }
}

public class BaseHub : TestHub
{
    public string BaseMethod(string message)
    {
        return message;
    }

    public virtual int VirtualMethod(int num)
    {
        return num;
    }

    [HubMethodName("RenamedVirtualMethod")]
    public virtual int VirtualMethodRenamed()
    {
        return 43;
    }
}

public class InvalidHub : TestHub
{
    public void OverloadedMethod(int num)
    {
    }

    public void OverloadedMethod(string message)
    {
    }
}

public class GenericMethodHub : Hub
{
    public void GenericMethod<T>()
    {
    }
}

public class DisposeTrackingHub : TestHub
{
    private readonly TrackDispose _trackDispose;

    public DisposeTrackingHub(TrackDispose trackDispose)
    {
        _trackDispose = trackDispose;
    }

    protected override void Dispose(bool dispose)
    {
        if (dispose)
        {
            _trackDispose.DisposeCount++;
        }
    }
}

public class HubWithAsyncDisposable : TestHub
{
    private readonly AsyncDisposable _disposable;

    public HubWithAsyncDisposable(AsyncDisposable disposable)
    {
        _disposable = disposable;
    }

    public void Test()
    {

    }
}

public class AbortHub : Hub
{
    public void Kill()
    {
        Context.Abort();
    }
}

public class StreamingHub : TestHub
{
    public ChannelReader<string> CounterChannel(int count)
    {
        var channel = Channel.CreateUnbounded<string>();

        _ = Task.Run(async () =>
        {
            for (int i = 0; i < count; i++)
            {
                await channel.Writer.WriteAsync(i.ToString(CultureInfo.InvariantCulture));
            }
            channel.Writer.Complete();
        });

        return channel.Reader;
    }

    public async Task<ChannelReader<string>> CounterChannelAsync(int count)
    {
        await Task.Yield();
        return CounterChannel(count);
    }

    public async ValueTask<ChannelReader<string>> CounterChannelValueTaskAsync(int count)
    {
        await Task.Yield();
        return CounterChannel(count);
    }

    public async IAsyncEnumerable<string> CounterAsyncEnumerable(int count)
    {
        for (int i = 0; i < count; i++)
        {
            await Task.Yield();
            yield return i.ToString(CultureInfo.InvariantCulture);
        }
    }

    public async Task<IAsyncEnumerable<string>> CounterAsyncEnumerableAsync(int count)
    {
        await Task.Yield();
        return CounterAsyncEnumerable(count);
    }

    public AsyncEnumerableImpl<string> CounterAsyncEnumerableImpl(int count)
    {
        return new AsyncEnumerableImpl<string>(CounterAsyncEnumerable(count));
    }

    public AsyncEnumerableImplChannelThrows<string> AsyncEnumerableIsPreferredOverChannelReader(int count)
    {
        return new AsyncEnumerableImplChannelThrows<string>(CounterChannel(count));
    }

    public ChannelReader<string> BlockingStream()
    {
        return Channel.CreateUnbounded<string>().Reader;
    }

    public ChannelReader<int> ExceptionStream()
    {
        var channel = Channel.CreateUnbounded<int>();
        channel.Writer.TryComplete(new Exception("Exception from channel"));
        return channel.Reader;
    }

    public ChannelReader<int> ThrowStream()
    {
        throw new Exception("Throw from hub method");
    }

    public ChannelReader<int> NullStream()
    {
        return null;
    }

    public int NonStream()
    {
        return 42;
    }

    public ChannelReader<string> StreamEcho(ChannelReader<string> source)
    {
        Channel<string> output = Channel.CreateUnbounded<string>();

        _ = Task.Run(async () =>
        {
            while (await source.WaitToReadAsync())
            {
                while (source.TryRead(out string item))
                {
                    await output.Writer.WriteAsync("echo:" + item);
                }
            }

            output.Writer.TryComplete();
        });

        return output.Reader;
    }

    public async IAsyncEnumerable<string> DerivedParameterInterfaceAsyncEnumerable(IDerivedParameterTestObject param)
    {
        await Task.Yield();
        yield return param.Value;
    }

    public async IAsyncEnumerable<string> DerivedParameterBaseClassAsyncEnumerable(DerivedParameterTestObjectBase param)
    {
        await Task.Yield();
        yield return param.Value;
    }

    public async IAsyncEnumerable<string> DerivedParameterInterfaceAsyncEnumerableWithCancellation(IDerivedParameterTestObject param, [EnumeratorCancellation] CancellationToken token)
    {
        await Task.Yield();
        yield return param.Value;
    }

    public async IAsyncEnumerable<string> DerivedParameterBaseClassAsyncEnumerableWithCancellation(DerivedParameterTestObjectBase param, [EnumeratorCancellation] CancellationToken token)
    {
        await Task.Yield();
        yield return param.Value;
    }

    public class AsyncEnumerableImpl<T> : IAsyncEnumerable<T>
    {
        private readonly IAsyncEnumerable<T> _inner;

        public AsyncEnumerableImpl(IAsyncEnumerable<T> inner)
        {
            _inner = inner;
        }

        public IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)
        {
            return _inner.GetAsyncEnumerator(cancellationToken);
        }
    }

    public class AsyncEnumerableImplChannelThrows<T> : ChannelReader<T>, IAsyncEnumerable<T>
    {
        private readonly ChannelReader<T> _inner;

        public AsyncEnumerableImplChannelThrows(ChannelReader<T> inner)
        {
            _inner = inner;
        }

        public override bool TryRead(out T item)
        {
            // Not implemented to verify this is consumed as an IAsyncEnumerable<T> instead of a ChannelReader<T>.
            throw new NotImplementedException();
        }

        public override ValueTask<bool> WaitToReadAsync(CancellationToken cancellationToken = default)
        {
            // Not implemented to verify this is consumed as an IAsyncEnumerable<T> instead of a ChannelReader<T>.
            throw new NotImplementedException();
        }

        public IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)
        {
            return new ChannelAsyncEnumerator(_inner, cancellationToken);
        }

        // Copied from AsyncEnumeratorAdapters
        private class ChannelAsyncEnumerator : IAsyncEnumerator<T>
        {
            /// <summary>The channel being enumerated.</summary>
            private readonly ChannelReader<T> _channel;
            /// <summary>Cancellation token used to cancel the enumeration.</summary>
            private readonly CancellationToken _cancellationToken;
            /// <summary>The current element of the enumeration.</summary>
            private T _current;

            public ChannelAsyncEnumerator(ChannelReader<T> channel, CancellationToken cancellationToken)
            {
                _channel = channel;
                _cancellationToken = cancellationToken;
            }

            public T Current => _current;

            public ValueTask<bool> MoveNextAsync()
            {
                var result = _channel.ReadAsync(_cancellationToken);

                if (result.IsCompletedSuccessfully)
                {
                    _current = result.Result;
                    return new ValueTask<bool>(true);
                }

                return new ValueTask<bool>(MoveNextAsyncAwaited(result));
            }

            private async Task<bool> MoveNextAsyncAwaited(ValueTask<T> channelReadTask)
            {
                try
                {
                    _current = await channelReadTask;
                }
                catch (ChannelClosedException ex) when (ex.InnerException == null)
                {
                    return false;
                }

                return true;
            }

            public ValueTask DisposeAsync()
            {
                return default;
            }
        }
    }

    public interface IDerivedParameterTestObject
    {
        public string Value { get; set; }
    }

    public abstract class DerivedParameterTestObjectBase : IDerivedParameterTestObject
    {
        public string Value { get; set; }
    }

    public class DerivedParameterTestObject : DerivedParameterTestObjectBase { }

    public class DerivedParameterKnownTypesBinder : ISerializationBinder
    {
        private static readonly IEnumerable<Type> _knownTypes = new List<Type>()
            {
                typeof(DerivedParameterTestObject)
            };

        public static ISerializationBinder Instance { get; } = new DerivedParameterKnownTypesBinder();

        public void BindToName(Type serializedType, out string assemblyName, out string typeName)
        {
            assemblyName = null;
            typeName = serializedType.Name;
        }

        public Type BindToType(string assemblyName, string typeName) =>
            _knownTypes.Single(type => type.Name == typeName);
    }
}

public class SimpleHub : Hub
{
    public override async Task OnConnectedAsync()
    {
        await Clients.All.SendAsync("Send", $"{Context.ConnectionId} joined");
        await base.OnConnectedAsync();
    }
}

public class SimpleVoidReturningTypedHub : Hub<IVoidReturningTypedHubClient>
{
    public override Task OnConnectedAsync()
    {
        // Derefernce Clients, to force initialization of the TypedHubClient
        Clients.All.Send("herp");
        return Task.CompletedTask;
    }
}

public class SimpleTypedHub : Hub<ITypedHubClient>
{
    public override async Task OnConnectedAsync()
    {
        await Clients.All.Send($"{Context.ConnectionId} joined");
        await base.OnConnectedAsync();
    }
}

public class LongRunningHub : Hub
{
    private readonly TcsService _tcsService;

    public LongRunningHub(TcsService tcsService)
    {
        _tcsService = tcsService;
    }

    public async Task<int> LongRunningMethod()
    {
        _tcsService.StartedMethod.TrySetResult(null);
        await _tcsService.EndMethod.Task;
        return 12;
    }

    public async Task<ChannelReader<string>> LongRunningStream()
    {
        _tcsService.StartedMethod.TrySetResult(null);
        await _tcsService.EndMethod.Task;
        // Never ending stream
        return Channel.CreateUnbounded<string>().Reader;
    }

    public ChannelReader<int> CancelableStreamSingleParameter(CancellationToken token)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(async () =>
        {
            _tcsService.StartedMethod.SetResult(null);
            await token.WaitForCancellationAsync();
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(null);
        });

        return channel.Reader;
    }

    public ChannelReader<int> CancelableStreamMultiParameter(int ignore, int ignore2, CancellationToken token)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(async () =>
        {
            _tcsService.StartedMethod.SetResult(null);
            await token.WaitForCancellationAsync();
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(null);
        });

        return channel.Reader;
    }

    public ChannelReader<int> CancelableStreamNullableParameter(int x, string y, CancellationToken token)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(async () =>
        {
            _tcsService.StartedMethod.SetResult(x);
            await token.WaitForCancellationAsync();
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(y);
        });

        return channel.Reader;
    }

    public ChannelReader<int> StreamNullableParameter(int x, int? input)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(() =>
        {
            _tcsService.StartedMethod.SetResult(x);
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(input);
            return Task.CompletedTask;
        });

        return channel.Reader;
    }

    public ChannelReader<int> CancelableStreamMiddleParameter(int ignore, CancellationToken token, int ignore2)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(async () =>
        {
            _tcsService.StartedMethod.SetResult(null);
            await token.WaitForCancellationAsync();
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(null);
        });

        return channel.Reader;
    }

    public async IAsyncEnumerable<int> CancelableStreamGeneratedAsyncEnumerable([EnumeratorCancellation] CancellationToken token)
    {
        _tcsService.StartedMethod.SetResult(null);
        await token.WaitForCancellationAsync();
        _tcsService.EndMethod.SetResult(null);
        yield break;
    }

    public async IAsyncEnumerable<int> CountingCancelableStreamGeneratedAsyncEnumerable(int count, [EnumeratorCancellation] CancellationToken token)
    {
        for (int i = 0; i < count; i++)
        {
            await Task.Yield();
            yield return i;
        }
        _tcsService.StartedMethod.SetResult(null);
        await token.WaitForCancellationAsync();
        _tcsService.EndMethod.SetResult(null);
        yield break;
    }

    public ChannelReader<int> CountingCancelableStreamGeneratedChannel(int count, CancellationToken token)
    {
        var channel = Channel.CreateBounded<int>(10);

        Task.Run(async () =>
        {
            for (int i = 0; i < count; i++)
            {
                await Task.Yield();
                await channel.Writer.WriteAsync(i);
            }
            _tcsService.StartedMethod.SetResult(null);
            await token.WaitForCancellationAsync();
            channel.Writer.TryComplete();
            _tcsService.EndMethod.SetResult(null);
        });

        return channel.Reader;
    }

    public IAsyncEnumerable<int> CancelableStreamCustomAsyncEnumerable()
    {
        return new CustomAsyncEnumerable(_tcsService);
    }

    public int SimpleMethod()
    {
        return 21;
    }

    public async Task Upload(ChannelReader<string> stream)
    {
        _tcsService.StartedMethod.SetResult(null);
        _ = await stream.ReadAndCollectAllAsync();
        _tcsService.EndMethod.SetResult(null);
    }

    private class CustomAsyncEnumerable : IAsyncEnumerable<int>
    {
        private readonly TcsService _tcsService;

        public CustomAsyncEnumerable(TcsService tcsService)
        {
            _tcsService = tcsService;
        }

        public IAsyncEnumerator<int> GetAsyncEnumerator(CancellationToken cancellationToken = default)
        {
            return new CustomAsyncEnumerator(_tcsService, cancellationToken);
        }

        private class CustomAsyncEnumerator : IAsyncEnumerator<int>
        {
            private readonly TcsService _tcsService;
            private readonly CancellationToken _cancellationToken;

            public CustomAsyncEnumerator(TcsService tcsService, CancellationToken cancellationToken)
            {
                _tcsService = tcsService;
                _cancellationToken = cancellationToken;
            }

            public int Current => throw new NotImplementedException();

            public ValueTask DisposeAsync()
            {
                return default;
            }

            public async ValueTask<bool> MoveNextAsync()
            {
                _tcsService.StartedMethod.SetResult(null);
                await _cancellationToken.WaitForCancellationAsync();
                _tcsService.EndMethod.SetResult(null);
                return false;
            }
        }
    }
}

public class TcsService
{
    public TaskCompletionSource<object> StartedMethod;
    public TaskCompletionSource<object> EndMethod;

    public TcsService()
    {
        Reset();
    }

    public void Reset()
    {
        StartedMethod = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
        EndMethod = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
    }
}

public interface ITypedHubClient
{
    Task Send(string message);
}

public interface IVoidReturningTypedHubClient
{
    void Send(string message);
}

public class ErrorInAbortedTokenHub : Hub
{
    public override Task OnConnectedAsync()
    {
        Context.Items[nameof(OnConnectedAsync)] = true;

        Context.ConnectionAborted.Register(() =>
        {
            throw new InvalidOperationException("BOOM");
        });

        return base.OnConnectedAsync();
    }

    public override Task OnDisconnectedAsync(Exception exception)
    {
        Context.Items[nameof(OnDisconnectedAsync)] = true;

        return base.OnDisconnectedAsync(exception);
    }
}

public class ConnectionLifetimeHub : Hub
{
    private readonly ConnectionLifetimeState _state;

    public ConnectionLifetimeHub(ConnectionLifetimeState state)
    {
        _state = state;
    }

    public override Task OnConnectedAsync()
    {
        _state.TokenStateInConnected = Context.ConnectionAborted.IsCancellationRequested;

        Context.ConnectionAborted.Register(() =>
        {
            _state.TokenCallbackTriggered = true;
        });

        return base.OnConnectedAsync();
    }

    public Task ProtocolErrorSelf()
    {
        return Clients.Caller.SendAsync("Send", new SelfRef());
    }

    public Task ProtocolErrorAll()
    {
        return Clients.All.SendAsync("Send", new SelfRef());
    }

    public override Task OnDisconnectedAsync(Exception exception)
    {
        _state.TokenStateInDisconnected = Context.ConnectionAborted.IsCancellationRequested;
        _state.DisconnectedException = exception;

        return base.OnDisconnectedAsync(exception);
    }
}

public class ConnectionLifetimeState
{
    public bool TokenCallbackTriggered { get; set; }

    public bool TokenStateInConnected { get; set; }

    public bool TokenStateInDisconnected { get; set; }

    public Exception DisconnectedException { get; set; }
}

public class OnConnectedClientResultHub : Hub
{
    public override async Task OnConnectedAsync()
    {
        await Clients.Caller.InvokeAsync<int>("Test");
    }
}

public class OnDisconnectedClientResultHub : Hub
{
    public override async Task OnDisconnectedAsync(Exception ex)
    {
        await Clients.Caller.InvokeAsync<int>("Test");
    }
}

public class CallerServiceHub : Hub
{
    private readonly CallerService _service;

    public CallerServiceHub(CallerService service)
    {
        _service = service;
    }

    public override Task OnConnectedAsync()
    {
        _service.SetCaller(Clients.Caller);
        var tcs = (TaskCompletionSource)Context.Items["ConnectedTask"];
        tcs?.TrySetResult();
        return base.OnConnectedAsync();
    }
}

public class CallerService
{
    public IClientProxy Caller { get; private set; }

    public void SetCaller(IClientProxy caller)
    {
        Caller = caller;
    }
}

[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)]
public class FromService : Attribute, IFromServiceMetadata
{ }
public class Service1
{ }
public class Service2
{ }
public class Service3
{ }

public class ServicesHub : TestHub
{
    public bool SingleService([FromService] Service1 service)
    {
        return true;
    }

    public bool MultipleServices([FromService] Service1 service, [FromService] Service2 service2, [FromService] Service3 service3)
    {
        return true;
    }

    public async Task<int> ServicesAndParams(int value, [FromService] Service1 service, ChannelReader<int> channelReader, [FromService] Service2 service2, bool value2)
    {
        int total = 0;
        while (await channelReader.WaitToReadAsync())
        {
            total += await channelReader.ReadAsync();
        }
        return total + value;
    }

    public int ServiceWithoutAttribute(Service1 service)
    {
        return 1;
    }

    public int ServiceWithAndWithoutAttribute(Service1 service, [FromService] Service2 service2)
    {
        return 1;
    }

    public async Task Stream(ChannelReader<int> channelReader)
    {
        while (await channelReader.WaitToReadAsync())
        {
            await channelReader.ReadAsync();
        }
    }
}

public class TooManyParamsHub : Hub
{
    public void ManyParams(int a1, string a2, bool a3, float a4, string a5, int a6, int a7, int a8, int a9, int a10, int a11,
        int a12, int a13, int a14, int a15, int a16, int a17, int a18, int a19, int a20, int a21, int a22, int a23, int a24,
        int a25, int a26, int a27, int a28, int a29, int a30, int a31, int a32, int a33, int a34, int a35, int a36, int a37,
        int a38, int a39, int a40, int a41, int a42, int a43, int a44, int a45, int a46, int a47, int a48, int a49, int a50,
        int a51, int a52, int a53, int a54, int a55, int a56, int a57, int a58, int a59, int a60, int a61, int a62, int a63,
        int a64, [FromService] Service1 service)
    { }
}