This repository was archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathRequestStreamFixture.cs
More file actions
589 lines (472 loc) · 18.4 KB
/
RequestStreamFixture.cs
File metadata and controls
589 lines (472 loc) · 18.4 KB
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
namespace Nancy.Tests.Unit.IO
{
using System;
using System.IO;
using FakeItEasy;
using Nancy.IO;
using Xunit;
public class RequestStreamFixture
{
[Fact]
public void Should_not_dispose_wrapped_stream_when_not_switched()
{
// Given
var stream = new ConfigurableMemoryStream();
var instance = RequestStream.FromStream(stream, 0, 1, true);
// When
instance.Dispose();
// Then
stream.HasBeenDisposed.ShouldBeFalse();
}
[Fact]
public void Should_move_stream_out_of_memory_if_longer_than_threshold_and_stream_switching_is_enabled()
{
// Given
var inputStream = new MemoryStream(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
// When
var result = RequestStream.FromStream(inputStream, 0, 4, false);
result.BufferStream();
// Then
result.IsInMemory.ShouldBeFalse();
}
[Fact]
public void Should_not_move_stream_out_of_memory_if_longer_than_threshold_and_stream_switching_is_disabled()
{
// Given
var inputStream = new MemoryStream(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
// When
var result = RequestStream.FromStream(inputStream, 0, 4, true);
result.BufferStream();
// Then
result.IsInMemory.ShouldBeTrue();
}
[Fact]
public void Should_throw_invalidoperationexception_when_created_with_non_readable_stream()
{
// Given
var stream = new ConfigurableMemoryStream(Readable: false);
// When
var exception = Record.Exception(() => RequestStream.FromStream(stream));
// Then
exception.ShouldBeOfType<InvalidOperationException>();
}
[Fact]
public void Should_throw_argumentoutofrangeexception_when_expected_lenght_is_less_than_zero()
{
// Given
var stream = new ConfigurableMemoryStream();
const int expectedLength = -1;
// When
var exception = Record.Exception(() => RequestStream.FromStream(stream, expectedLength));
// Then
exception.ShouldBeOfType<ArgumentOutOfRangeException>();
}
[Fact]
public void Should_throw_argumentoutofrangeexception_when_thresholdLength_is_less_than_zero()
{
// Given
var stream = new ConfigurableMemoryStream();
const int tresholdLength = -1;
// When
var exception = Record.Exception(() => RequestStream.FromStream(stream, 0, tresholdLength));
// Then
exception.ShouldBeOfType<ArgumentOutOfRangeException>();
}
[Fact]
public void Should_work_even_with_a_non_seekable_stream()
{
// Given
var stream = new ConfigurableMemoryStream(Seekable: false);
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.CanRead;
// Then
result.ShouldBeTrue();
}
[Fact]
public void Should_return_true_when_queried_about_supporting_reading()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.CanRead;
// Then
result.ShouldBeTrue();
}
[Fact]
public void Should_return_false_when_queried_about_supporting_writing()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.CanWrite;
// Then
result.ShouldBeFalse();
}
[Fact]
public void Should_return_false_when_queried_about_supporting_seeking()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.CanSeek;
// Then
result.ShouldBeFalse();
}
[Fact]
public void Should_return_true_when_queried_about_supporting_seeking_if_buffered()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
request.BufferStream();
// When
var result = request.CanSeek;
// Then
result.ShouldBeTrue();
}
[Fact]
public void Should_return_underlaying_stream_when_queried_about_supporting_timeout()
{
// Given
var stream = new ConfigurableMemoryStream(Timeoutable: true);
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.CanTimeout;
// Then
result.ShouldBeTrue();
}
[Fact]
public void Should_return_length_of_underlaying_stream()
{
// Given
var stream = new ConfigurableMemoryStream(Length: 1234L);
var request = RequestStream.FromStream(stream, 0, 1235, false);
// When
var result = request.Length;
// Then
result.ShouldEqual(1234L);
}
[Fact]
public void Should_return_position_of_underlaying_stream()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
stream.Position = 1234L;
// When
var result = request.Position;
// Then
result.ShouldEqual(1234L);
}
[Fact]
public void Should_set_position_of_underlaying_stream()
{
// Given
var stream = new ConfigurableMemoryStream(Length: 2000L);
var request = RequestStream.FromStream(stream, 2000L, 2001L, false);
// When
request.Position = 1234L;
// Then
stream.Position.ShouldEqual(1234L);
}
[Fact]
public void Should_throw_argumentoutofrangexception_when_setting_position_to_less_than_zero()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 2000L, 2001L, false);
// When
var exception = Record.Exception(() => request.Position = -1);
// Then
exception.ShouldBeOfType<InvalidOperationException>();
}
[Fact]
public void Should_throw_invalidoperationexception_when_position_is_set_to_greater_than_length_of_stream()
{
// Given
var stream = new ConfigurableMemoryStream(Length: 100L);
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var exception = Record.Exception(() => request.Position = 1000);
// Then
exception.ShouldBeOfType<InvalidOperationException>();
}
[Fact]
public void Should_throw_on_flush()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var exception = Record.Exception(() => request.Flush());
// Then
exception.ShouldBeOfType<NotSupportedException>();
}
[Fact]
public void Should_throw_notsupportedexception_when_setting_length()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var exception = Record.Exception(() => request.SetLength(10L));
// Then
exception.ShouldBeOfType<NotSupportedException>();
}
[Fact]
public void Should_throw_when_seek_is_called()
{
// Given
var stream = new ConfigurableMemoryStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var exception = Record.Exception(() => request.Seek(10L, SeekOrigin.Current));
// Then
exception.ShouldBeOfType<NotSupportedException>();
}
[Fact]
public void Should_read_byte_from_underlaying_stream_when_reading_byte()
{
// Given
var stream = CreateFakeStream();
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
request.ReadByte();
// Then
A.CallTo(() => stream.ReadByte()).MustHaveHappened();
}
[Fact]
public void Should_return_read_byte_from_underlaying_stream_when_readbyte_is_called()
{
// Given
var stream = CreateFakeStream();
A.CallTo(() => stream.ReadByte()).Returns(5);
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var result = request.ReadByte();
// Then
result.ShouldEqual(5);
}
[Fact]
public void Should_read_from_underlaying_stream_when_read_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[1];
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
request.Read(buffer, 0, buffer.Length);
// Then
A.CallTo(() => stream.Read(buffer, 0, buffer.Length)).MustHaveHappened();
}
[Fact]
public void Should_return_result_from_reading_underlaying_stream()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[1];
var request = RequestStream.FromStream(stream, 0, 1, false);
A.CallTo(() => stream.Read(buffer, 0, buffer.Length)).Returns(3);
// When
var result = request.Read(buffer, 0, buffer.Length);
// Then
result.ShouldEqual(3);
}
[Fact]
public void Should_throw_when_write_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[1];
var request = RequestStream.FromStream(stream, 0, 1, false);
// When
var exception = Record.Exception(() => request.Write(buffer, 0, buffer.Length));
// Then
exception.ShouldBeOfType<NotSupportedException>();
}
[Fact]
public void Should_no_longer_be_in_memory_if_expected_length_is_greater_or_equal_to_threshold_length()
{
// Given
var stream = CreateFakeStream();
// When
var request = RequestStream.FromStream(stream, 1, 0, false);
// Then
request.IsInMemory.ShouldBeFalse();
}
[Fact]
public void Should_call_beginread_on_underlaying_stream_when_beginread_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[10];
AsyncCallback callback = x => { };
var state = new object();
var request = RequestStream.FromStream(stream, 0, 10, true);
// When
request.BeginRead(buffer, 0, buffer.Length, callback, state);
// Then
A.CallTo(() => stream.BeginRead(buffer, 0, buffer.Length, callback, state)).MustHaveHappened();
}
[Fact]
public void Should_return_result_from_underlaying_beginread_when_beginread_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[10];
var asyncResult = A.Fake<IAsyncResult>();
AsyncCallback callback = x => { };
var state = new object();
var request = RequestStream.FromStream(stream, 0, 10, true);
A.CallTo(() => stream.BeginRead(buffer, 0, buffer.Length, callback, state)).Returns(asyncResult);
// When
var result = request.BeginRead(buffer, 0, buffer.Length, callback, state);
// Then
result.ShouldBeSameAs(asyncResult);
}
[Fact]
public void Should_call_beginwrite_on_underlaying_stream_when_beginwrite_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[10];
AsyncCallback callback = x => { };
var state = new object();
var request = RequestStream.FromStream(stream, 0, 10, true);
// When
request.BeginWrite(buffer, 0, buffer.Length, callback, state);
// Then
A.CallTo(() => stream.BeginWrite(buffer, 0, buffer.Length, callback, state)).MustHaveHappened();
}
[Fact]
public void Should_return_result_from_underlaying_beginwrite_when_beginwrite_is_called()
{
// Given
var stream = CreateFakeStream();
var buffer = new byte[10];
var asyncResult = A.Fake<IAsyncResult>();
AsyncCallback callback = x => { };
var state = new object();
var request = RequestStream.FromStream(stream, 0, 10, true);
A.CallTo(() => stream.BeginWrite(buffer, 0, buffer.Length, callback, state)).Returns(asyncResult);
// When
var result = request.BeginWrite(buffer, 0, buffer.Length, callback, state);
// Then
result.ShouldBeSameAs(asyncResult);
}
[Fact]
public void Should_call_endread_on_underlaying_stream_when_endread_is_called()
{
// Given
var stream = CreateFakeStream();
var asyncResult = A.Fake<IAsyncResult>();
var request = RequestStream.FromStream(stream, 0, 10, true);
// When
request.EndRead(asyncResult);
// Then
A.CallTo(() => stream.EndRead(asyncResult)).MustHaveHappened();
}
[Fact]
public void Should_return_result_from_underlaying_endread_when_endread_is_called()
{
// Given
var stream = CreateFakeStream();
var asyncResult = A.Fake<IAsyncResult>();
var request = RequestStream.FromStream(stream, 0, 10, true);
A.CallTo(() => stream.EndRead(A<IAsyncResult>.Ignored)).Returns(4);
// When
var result = request.EndRead(asyncResult);
// Then
result.ShouldEqual(4);
}
[Fact]
public void Should_throw_when_endwrite_is_called()
{
// Given
var stream = CreateFakeStream();
var asyncResult = A.Fake<IAsyncResult>();
var request = RequestStream.FromStream(stream, 0, 10, true);
// When
var exception = Record.Exception(() => request.EndWrite(asyncResult));
// Then
exception.ShouldBeOfType<NotSupportedException>();
}
private static Stream CreateFakeStream()
{
var stream = A.Fake<Stream>(x =>
{
x.Implements(typeof(IDisposable));
});
A.CallTo(() => stream.CanRead).Returns(true);
A.CallTo(() => stream.CanSeek).Returns(true);
A.CallTo(() => stream.CanTimeout).Returns(true);
A.CallTo(() => stream.CanWrite).Returns(true);
return stream;
}
private class ConfigurableMemoryStream : MemoryStream
{
private readonly bool readable;
private readonly bool seekable;
private readonly bool timeoutable;
private readonly bool writable;
private readonly long length;
private long position;
public bool HasBeenDisposed { get; private set; }
public bool HasBeenFlushed { get; private set; }
public bool HasBeenSeeked { get; private set; }
public ConfigurableMemoryStream(bool Readable = true, bool Seekable = true, bool Timeoutable = true, bool Writable = true, long Length = 0, long Position = 0)
{
this.readable = Readable;
this.seekable = Seekable;
this.timeoutable = Timeoutable;
this.writable = Writable;
this.length = Length;
this.position = Position;
}
public override bool CanRead
{
get { return this.readable; }
}
public override bool CanSeek
{
get { return this.seekable; }
}
public override bool CanTimeout
{
get { return this.timeoutable; }
}
public override bool CanWrite
{
get { return this.writable; }
}
public override long Length
{
get { return this.length; }
}
public override long Position
{
get { return this.position; }
set { this.position = value; }
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
this.HasBeenDisposed = true;
}
public override void Flush()
{
base.Flush();
this.HasBeenFlushed = true;
}
public override long Seek(long offset, SeekOrigin loc)
{
this.HasBeenSeeked = true;
return base.Seek(offset, loc);
}
}
}
}