aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/algol/test/test_parc_EventBuffer.c
blob: c0b8d8c9b0c5938fb8adecffa2fe1e314f548f63 (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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <config.h>
#include <stdio.h>
#include <pthread.h>

#include <arpa/inet.h>

#include <LongBow/unit-test.h>

#include <parc/algol/parc_SafeMemory.h>
#include <parc/algol/parc_EventBuffer.h>

// Include the file(s) containing the functions to be tested.
// This permits internal static functions to be visible to this Test Framework.
#include "../parc_EventBuffer.c"

LONGBOW_TEST_RUNNER(parc_EventBuffer)
{
    // The following Test Fixtures will run their corresponding Test Cases.
    // Test Fixtures are run in the order specified, but all tests should be idempotent.
    // Never rely on the execution order of tests or share state between them.
    LONGBOW_RUN_TEST_FIXTURE(Global);
}

// The Test Runner calls this function once before any Test Fixtures are run.
LONGBOW_TEST_RUNNER_SETUP(parc_EventBuffer)
{
    return LONGBOW_STATUS_SUCCEEDED;
}

// The Test Runner calls this function once after all the Test Fixtures are run.
LONGBOW_TEST_RUNNER_TEARDOWN(parc_EventBuffer)
{
    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_FIXTURE(Global)
{
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_Create_Destroy);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_GetLength_Append);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_Prepend_Pullup);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_ReadIntoBuffer);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_AppendBuffer);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_Read);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_WriteToFileDescriptor);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_ReadFromFileDescriptor);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_ReadLine_FreeLine);
    LONGBOW_RUN_TEST_CASE(Global, parc_EventBuffer_GetQueueBuffer);
}

LONGBOW_TEST_FIXTURE_SETUP(Global)
{
    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_FIXTURE_TEARDOWN(Global)
{
    uint32_t outstandingAllocations = parcSafeMemory_ReportAllocation(STDERR_FILENO);
    if (outstandingAllocations != 0) {
        printf("%s leaks memory by %d allocations\n", longBowTestCase_GetName(testCase), outstandingAllocations);
        return LONGBOW_STATUS_MEMORYLEAK;
    }
    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_Create_Destroy)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
    parcEventBuffer_DisableDebug();
}

static int _dataLength = 8192;

LONGBOW_TEST_CASE(Global, parc_EventBuffer_GetLength_Append)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char data[_dataLength];
    parcEventBuffer_Append(parcEventBuffer, data, _dataLength);
    assertTrue(parcEventBuffer_GetLength(parcEventBuffer) == _dataLength, "Buffer length does not match length of appended data");

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

static uint8_t prependedDataValue = '1';

LONGBOW_TEST_CASE(Global, parc_EventBuffer_Prepend_Pullup)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char data[_dataLength];
    data[0] = 2;
    parcEventBuffer_Append(parcEventBuffer, data, _dataLength);
    assertTrue(parcEventBuffer_GetLength(parcEventBuffer) == _dataLength, "Buffer length does not match length of appended data");

    uint8_t prependedData[1];
    prependedData[0] = prependedDataValue;
    parcEventBuffer_Prepend(parcEventBuffer, prependedData, sizeof(uint8_t));
    size_t bufferSize = parcEventBuffer_GetLength(parcEventBuffer);
    assertTrue(bufferSize == (_dataLength + 1), "Buffer length does not match length plus prepended data length");

    uint8_t *completeBuffer = parcEventBuffer_Pullup(parcEventBuffer, -1);
    assertTrue(completeBuffer[0] == prependedDataValue, "Prepended data doesn't match %d != %d", completeBuffer[0], prependedDataValue);
    assertTrue(completeBuffer[1] == 2, "Consolidated data doesn't match %d != %d", completeBuffer[1], 2);

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_ReadIntoBuffer)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBufferSource = parcEventBuffer_Create();
    assertNotNull(parcEventBufferSource, "parcEventBuffer_Create returned a null reference");
    char sourceData[_dataLength];
    parcEventBuffer_Append(parcEventBufferSource, sourceData, _dataLength);

    PARCEventBuffer *parcEventBufferDestination = parcEventBuffer_Create();
    assertNotNull(parcEventBufferDestination, "parcEventBuffer_Create returned a null reference");
    char destinationData[_dataLength];
    parcEventBuffer_Append(parcEventBufferDestination, destinationData, _dataLength);

    parcEventBuffer_ReadIntoBuffer(parcEventBufferSource, parcEventBufferDestination, -1);
    size_t bufferSize = parcEventBuffer_GetLength(parcEventBufferDestination);
    assertTrue(bufferSize == (_dataLength * 2), "Destination buffer size doesn't match expected length");

    parcEventBuffer_Destroy(&parcEventBufferSource);
    parcEventBuffer_Destroy(&parcEventBufferDestination);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_AppendBuffer)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBufferSource = parcEventBuffer_Create();
    assertNotNull(parcEventBufferSource, "parcEventBuffer_Create returned a null reference");
    char sourceData[_dataLength];
    parcEventBuffer_Append(parcEventBufferSource, sourceData, _dataLength);

    PARCEventBuffer *parcEventBufferDestination = parcEventBuffer_Create();
    assertNotNull(parcEventBufferDestination, "parcEventBuffer_Create returned a null reference");
    char destinationData[_dataLength];
    parcEventBuffer_Append(parcEventBufferDestination, destinationData, _dataLength);

    parcEventBuffer_AppendBuffer(parcEventBufferSource, parcEventBufferDestination);
    size_t bufferSize = parcEventBuffer_GetLength(parcEventBufferDestination);
    assertTrue(bufferSize == (_dataLength * 2), "Destination buffer size doesn't match expected length, %zu != %d", bufferSize, _dataLength * 2);

    parcEventBuffer_Destroy(&parcEventBufferSource);
    parcEventBuffer_Destroy(&parcEventBufferDestination);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_Read)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char sourceData[64] = "This is a test";
    parcEventBuffer_Append(parcEventBuffer, sourceData, 64);

    char readDataBuffer[64];
    int length = parcEventBuffer_Read(parcEventBuffer, readDataBuffer, 32);

    assertTrue(strncmp(sourceData, readDataBuffer, 32) == 0,
               "Buffer contents written do not match contents read");
    assertTrue(length == 32, "parcEventBuffer_Read length unexpected %d != 32\n", length);

    length = parcEventBuffer_Read(parcEventBuffer, NULL, 64);
    assertTrue(length == 0, "Drain of parcEventBuffer returned %d", length);

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_WriteToFileDescriptor)
{
    int fds[2];
    int result = socketpair(AF_LOCAL, SOCK_DGRAM, 0, fds);
    assertFalse(result, "Socketpair creation failed.\n");

    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char sourceData[100] = "This is a test";
    parcEventBuffer_Append(parcEventBuffer, sourceData, 64);
    size_t written = parcEventBuffer_WriteToFileDescriptor(parcEventBuffer, fds[0], 64);

    assertTrue(written == 64, "Length written does not match buffer length.");
    assertTrue(read(fds[1], sourceData, 100) == 64, "Length read does not match length written.");

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
    close(fds[0]);
    close(fds[1]);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_ReadFromFileDescriptor)
{
    int fds[2];
    int result = socketpair(AF_LOCAL, SOCK_DGRAM, 0, fds);
    assertFalse(result, "Socketpair creation failed.\n");

    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char sourceData[64] = "This is a test";
    parcEventBuffer_Append(parcEventBuffer, sourceData, 64);

    size_t written = parcEventBuffer_WriteToFileDescriptor(parcEventBuffer, fds[0], 64);
    assertTrue(written == 64, "Length written does not match buffer length.");
    size_t read = parcEventBuffer_ReadFromFileDescriptor(parcEventBuffer, fds[1], -1);

    assertTrue(read == 64, "Length read does not match amount written.");

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
    close(fds[0]);
    close(fds[1]);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_ReadLine_FreeLine)
{
    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventBuffer *parcEventBuffer = parcEventBuffer_Create();
    assertNotNull(parcEventBuffer, "parcEventBuffer_Create returned a null reference");

    char sourceData[64] = "This is a test\n";
    parcEventBuffer_Append(parcEventBuffer, sourceData, 64);
    assertTrue(parcEventBuffer_GetLength(parcEventBuffer) == 64, "parcEventBuffer has wrong length %zu.", parcEventBuffer_GetLength(parcEventBuffer));

    size_t bytesRead;
    char *lineRead = parcEventBuffer_ReadLine(parcEventBuffer, &bytesRead);
    // read up to newline and terminate, so we read the newline but don't return it in the result
    assertTrue(parcEventBuffer_GetLength(parcEventBuffer) == (64 - (bytesRead + 1)),
               "parcEventBuffer has wrong length %zu != %zu.",
               (64 - (bytesRead + 1)), parcEventBuffer_GetLength(parcEventBuffer));
    assertTrue(strncmp(sourceData, lineRead, bytesRead) == 0, "Line read doesn't match %s != %s", sourceData, lineRead);
    assertTrue((strlen(sourceData) - strlen(lineRead)) == 1, "Line length doesn't match %zu != %zu", strlen(sourceData), strlen(lineRead));

    parcEventBuffer_FreeLine(parcEventBuffer, &lineRead);

    parcEventBuffer_Destroy(&parcEventBuffer);
    parcEventScheduler_Destroy(&parcEventScheduler);
}

LONGBOW_TEST_CASE(Global, parc_EventBuffer_GetQueueBuffer)
{
    int fds[2];
    int result = socketpair(AF_LOCAL, SOCK_DGRAM, 0, fds);
    assertFalse(result, "Socketpair creation failed.\n");

    PARCEventScheduler *parcEventScheduler = parcEventScheduler_Create();
    assertNotNull(parcEventScheduler, "parcEventScheduler_Create returned a null reference");

    parcEventBuffer_EnableDebug(parcEventScheduler_GetLogger(parcEventScheduler));

    PARCEventQueue *parcEventQueue = parcEventQueue_Create(parcEventScheduler, fds[0], 0);
    assertNotNull(parcEventQueue, "parcEventQueue_Create returned a null reference");

    PARCEventBuffer *parcEventBuffer_Output = parcEventBuffer_GetQueueBufferOutput(parcEventQueue);
    assertNotNull(parcEventBuffer_Output, "Received null output buffer from queue");

    PARCEventBuffer *parcEventBuffer_Input = parcEventBuffer_GetQueueBufferInput(parcEventQueue);
    assertNotNull(parcEventBuffer_Input, "Received null input buffer from queue");

    parcEventBuffer_Destroy(&parcEventBuffer_Output);
    parcEventBuffer_Destroy(&parcEventBuffer_Input);
    parcEventQueue_Destroy(&parcEventQueue);
    parcEventScheduler_Destroy(&parcEventScheduler);
    close(fds[0]);
    close(fds[1]);
}

int
main(int argc, char *argv[])
{
    LongBowRunner *testRunner = LONGBOW_TEST_RUNNER_CREATE(parc_EventBuffer);
    int exitStatus = LONGBOW_TEST_MAIN(argc, argv, testRunner);
    longBowTestRunner_Destroy(&testRunner);
    exit(exitStatus);
}