forked from vikshanker/sponge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfsm_stream_reassembler_cap.cc
93 lines (65 loc) · 2.44 KB
/
fsm_stream_reassembler_cap.cc
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
#include "byte_stream.hh"
#include "fsm_stream_reassembler_harness.hh"
#include "stream_reassembler.hh"
#include "util.hh"
#include <exception>
#include <iostream>
using namespace std;
int main() {
try {
{
ReassemblerTestHarness test{2};
test.execute(SubmitSegment{"ab", 0});
test.execute(BytesAssembled(2));
test.execute(BytesAvailable("ab"));
test.execute(SubmitSegment{"cd", 2});
test.execute(BytesAssembled(4));
test.execute(BytesAvailable("cd"));
test.execute(SubmitSegment{"ef", 4});
test.execute(BytesAssembled(6));
test.execute(BytesAvailable("ef"));
}
cout << "testcase1 pass" << endl;
{
ReassemblerTestHarness test{2};
test.execute(SubmitSegment{"ab", 0});
test.execute(BytesAssembled(2));
test.execute(SubmitSegment{"cd", 2});
test.execute(BytesAssembled(2));
test.execute(BytesAvailable("ab"));
test.execute(BytesAssembled(2));
test.execute(SubmitSegment{"cd", 2});
test.execute(BytesAssembled(4));
test.execute(BytesAvailable("cd"));
}
cout << "testcase2 pass" << endl;
{
ReassemblerTestHarness test{1};
test.execute(SubmitSegment{"ab", 0});
test.execute(BytesAssembled(1));
test.execute(SubmitSegment{"ab", 0});
test.execute(BytesAssembled(1));
test.execute(BytesAvailable("a"));
test.execute(BytesAssembled(1));
test.execute(SubmitSegment{"abc", 0});
test.execute(BytesAssembled(2));
test.execute(BytesAvailable("b"));
test.execute(BytesAssembled(2));
}
cout << "testcase3 pass" << endl;
{
ReassemblerTestHarness test{3};
for (unsigned int i = 0; i < 99997; i += 3) {
const string segment = {char(i), char(i + 1), char(i + 2), char(i + 13), char(i + 47), char(i + 9)};
test.execute(SubmitSegment{segment, i});
test.execute(BytesAssembled(i + 3));
test.execute(BytesAvailable(segment.substr(0, 3)));
}
}
cout << "testcase4 pass" << endl;
} catch (const exception &e) {
cerr << "Exception: " << e.what() << endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}