-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCppSandboxIntegrationTest.cs
199 lines (181 loc) · 11.1 KB
/
CppSandboxIntegrationTest.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
using NUnit.Framework;
namespace ProcessSandbox.Integration;
[TestFixture]
public class CppSandboxIntegrationTest : BaseSandboxIntegrationTest
{
protected override string Lang => "cpp";
[Test]
public void MemoryLimit()
{
// Given
var testName = "memory-limit";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo((int)SpecialExitCode.MemoryLimit), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThan(0), "Negative Memory Usage");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Empty, "The process output must be empty.");
Assert.That(error, Is.Empty, "The process error must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void ForkBomb()
{
// Given
var testName = "fork-bomb";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo((int)SpecialExitCode.HadChildren), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(output, Is.Empty, "The process output must be empty.");
Assert.That(error, Is.Empty, "The process error must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void ExecuteInSandbox()
{
// Given
var testName = "execute-in-sandbox";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo(0), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Not.Empty, "The process output must not be empty.");
Assert.That(error, Is.Empty, "The process error must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
Assert.That(output.Count(), Is.EqualTo(4), "Unexpected output.");
Assert.That(output.ElementAt(0), Is.EqualTo($"Real UID = {SANDBOX_USER_UID}"), "Real UID must be the sandbox user UID.");
Assert.That(output.ElementAt(1), Is.EqualTo($"Real GID = {SANDBOX_USER_GID}"), "Real GID must be the sandbox user GID.");
Assert.That(output.ElementAt(2), Is.EqualTo($"Effective UID = {SANDBOX_USER_UID}"), "Effective UID must be the sandbox user UID.");
Assert.That(output.ElementAt(3), Is.EqualTo($"Effective GID = {SANDBOX_USER_GID}"), "Effective GID must be the sandbox user GID.");
}
[Test]
public void DetectFork()
{
// Given
var testName = "detect-fork";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.HadChildren, Is.True, "The tested process must have children.");
Assert.That(output, Is.Empty, "The process output must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void InfiniteLoop()
{
// Given
var testName = "infinite-loop";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo((int)SpecialExitCode.CpuLimit), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThan(0), "Negative CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Empty, "The process output must be empty.");
Assert.That(error, Is.Empty, "The process error must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void InfiniteStdout()
{
// Given
var testName = "infinite-stdout";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo((int)SpecialExitCode.CpuLimit), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.StandardOutputLength, Is.GreaterThan(0), "Negative Standard Output Length.");
Assert.That(statistics.StandardOutputLimitExceeded, Is.True, "Standard Output must be exceeded.");
Assert.That(statistics.StandardErrorLength, Is.GreaterThan(0), "Negative Standard Output Length.");
Assert.That(statistics.StandardErrorLimitExceeded, Is.False, "Standard Error must not be exceeded.");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Not.Empty, "The process output must not be empty.");
Assert.That(string.Join("\n", output), Is.EqualTo("STDOUT: Lorem ipsum dolor sit amet"));
Assert.That(error, Is.Not.Empty, "The process error must not be empty.");
Assert.That(string.Join("\n", error), Is.EqualTo("STDERR: Lorem ipsum dolor sit amet, consectetur adipiscing elit."));
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void InfiniteStderr()
{
// Given
var testName = "infinite-stderr";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo((int)SpecialExitCode.CpuLimit), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.StandardOutputLength, Is.GreaterThan(0), "Negative Standard Output Length.");
Assert.That(statistics.StandardOutputLimitExceeded, Is.False, "Standard Output must not be exceeded.");
Assert.That(statistics.StandardErrorLength, Is.GreaterThan(0), "Negative Standard Output Length.");
Assert.That(statistics.StandardErrorLimitExceeded, Is.True, "Standard Error must be exceeded.");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Not.Empty, "The process output must not be empty.");
Assert.That(string.Join("\n", output), Is.EqualTo("STDOUT: Lorem ipsum dolor sit amet, consectetur adipiscing elit."));
Assert.That(error, Is.Not.Empty, "The process error must not be empty.");
Assert.That(string.Join("\n", error), Is.EqualTo("STDERR: Lorem ipsum dolor sit amet"));
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
[Test]
public void BigInput()
{
// Given
var testName = "big-input";
var statistics = ReadExecutionStatistics(testName);
var output = ReadOutFile(testName);
var error = ReadErrFile(testName);
var proc = ReadProcFile(testName);
// Then
Assert.That(statistics.ExitCode, Is.EqualTo(0), "Unexpected Exit Code.");
Assert.That(statistics.ElapsedTime, Is.GreaterThan(0), "Negative Elapsed Time.");
Assert.That(statistics.CpuUsage, Is.GreaterThanOrEqualTo(0), "Negative CPU Usage.");
Assert.That(statistics.ElapsedTime, Is.GreaterThanOrEqualTo(statistics.CpuUsage), "Elapsed Time must be greater than CPU Usage.");
Assert.That(statistics.MemoryUsage, Is.GreaterThanOrEqualTo(0), "Negative Memory Usage");
Assert.That(statistics.HadChildren, Is.False, "The tested process must not have children.");
Assert.That(output, Is.Not.Empty, "The process output must not be empty.");
Assert.That(output.First(), Is.EqualTo("10485760"), "The process output must not be empty.");
Assert.That(error, Is.Empty, "The process error must be empty.");
Assert.That(proc.Count() == NO_PROCESSES, Is.True, "The tested process has not been killed.");
}
}