aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/concurrent/test/test_parc_Thread.c
blob: 22ca31bf0487d11b806e90a34ed4df4bd02b63f8 (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
/*
 * 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 "../parc_ThreadPool.c"

#include <stdio.h>

#include <LongBow/testing.h>
#include <LongBow/debugging.h>

#include <parc/algol/parc_Memory.h>
#include <parc/algol/parc_SafeMemory.h>
#include <parc/algol/parc_DisplayIndented.h>

#include <parc/testing/parc_MemoryTesting.h>
#include <parc/testing/parc_ObjectTesting.h>

LONGBOW_TEST_RUNNER(parc_Thread)
{
    // 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(CreateAcquireRelease);
    LONGBOW_RUN_TEST_FIXTURE(Object);
    LONGBOW_RUN_TEST_FIXTURE(Specialization);
}

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

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

LONGBOW_TEST_FIXTURE(CreateAcquireRelease)
{
    LONGBOW_RUN_TEST_CASE(CreateAcquireRelease, CreateRelease);
}

LONGBOW_TEST_FIXTURE_SETUP(CreateAcquireRelease)
{
    longBowTestCase_SetInt(testCase, "initialAllocations", parcMemory_Outstanding());

    PARCBuffer *buffer = parcBuffer_Allocate(10);
    longBowTestCase_Set(testCase, "object", buffer);

    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_FIXTURE_TEARDOWN(CreateAcquireRelease)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    parcBuffer_Release(&buffer);

    uint32_t initialAllocations = (uint32_t) longBowTestCase_Get(testCase, "initialAllocations");
    if (!parcMemoryTesting_ExpectedOutstanding(initialAllocations, "%s leaked memory.", longBowTestCase_GetFullName(testCase))) {
        parcSafeMemory_ReportAllocation(1);
        return LONGBOW_STATUS_MEMORYLEAK;
    }

    return LONGBOW_STATUS_SUCCEEDED;
}

static void *
_function(PARCThread *thread, void *parameter)
{
    return NULL;
}

LONGBOW_TEST_CASE(CreateAcquireRelease, CreateRelease)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *thread = parcThread_Create(_function, buffer);

    assertNotNull(thread, "Expected non-null result from parcThread_Create();");

    parcObjectTesting_AssertAcquireReleaseContract(parcThread_Acquire, thread);

    parcThread_Release(&thread);
    assertNull(thread, "Expected null result from parcThread_Release();");
}

LONGBOW_TEST_FIXTURE(Object)
{
    LONGBOW_RUN_TEST_CASE(Object, parcThread_Compare);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_Copy);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_Display);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_Equals);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_HashCode);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_IsValid);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_ToJSON);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_ToString);
}

LONGBOW_TEST_FIXTURE_SETUP(Object)
{
    longBowTestCase_SetInt(testCase, "initialAllocations", parcMemory_Outstanding());
    PARCBuffer *buffer = parcBuffer_Allocate(10);
    longBowTestCase_Set(testCase, "object", buffer);

    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_FIXTURE_TEARDOWN(Object)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    parcBuffer_Release(&buffer);

    uint32_t initialAllocations = (uint32_t) longBowTestCase_Get(testCase, "initialAllocations");
    if (!parcMemoryTesting_ExpectedOutstanding(initialAllocations, "%s leaked memory.", longBowTestCase_GetFullName(testCase))) {
        parcSafeMemory_ReportAllocation(1);
        return LONGBOW_STATUS_MEMORYLEAK;
    }
    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_CASE(Object, parcThread_Compare)
{
//    testUnimplemented("");
}

LONGBOW_TEST_CASE(Object, parcThread_Copy)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *instance = parcThread_Create(_function, buffer);
    PARCThread *copy = parcThread_Copy(instance);

    assertTrue(parcThread_Equals(instance, copy), "Expected the copy to be equal to the original");

    parcThread_Release(&instance);
    parcThread_Release(&copy);
}

LONGBOW_TEST_CASE(Object, parcThread_Display)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *instance = parcThread_Create(_function, buffer);
    parcThread_Display(instance, 0);


    parcThread_Release(&instance);
}

LONGBOW_TEST_CASE(Object, parcThread_Equals)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *x = parcThread_Create(_function, buffer);
    PARCThread *y = parcThread_Create(_function, buffer);
    PARCThread *z = parcThread_Create(_function, buffer);

    parcObjectTesting_AssertEquals(x, y, z, NULL);

    parcThread_Release(&x);
    parcThread_Release(&y);
    parcThread_Release(&z);
}

LONGBOW_TEST_CASE(Object, parcThread_HashCode)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *x = parcThread_Create(_function, buffer);
    PARCThread *y = parcThread_Create(_function, buffer);

    parcObjectTesting_AssertHashCode(x, y);

    parcThread_Release(&x);
    parcThread_Release(&y);
}

LONGBOW_TEST_CASE(Object, parcThread_IsValid)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *instance = parcThread_Create(_function, buffer);
    assertTrue(parcThread_IsValid(instance), "Expected parcThread_Create to result in a valid instance.");


    parcThread_Release(&instance);
    assertFalse(parcThread_IsValid(instance), "Expected parcThread_Release to result in an invalid instance.");
}

LONGBOW_TEST_CASE(Object, parcThread_ToJSON)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *instance = parcThread_Create(_function, buffer);

    PARCJSON *json = parcThread_ToJSON(instance);

    parcJSON_Release(&json);


    parcThread_Release(&instance);
}

LONGBOW_TEST_CASE(Object, parcThread_ToString)
{
    PARCBuffer *buffer = longBowTestCase_Get(testCase, "object");
    PARCThread *instance = parcThread_Create(_function, buffer);

    char *string = parcThread_ToString(instance);

    assertNotNull(string, "Expected non-NULL result from parcThread_ToString");

    parcMemory_Deallocate((void **) &string);

    parcThread_Release(&instance);
}

LONGBOW_TEST_FIXTURE(Specialization)
{
    parcMemory_SetInterface(&PARCSafeMemoryAsPARCMemory);
    LONGBOW_RUN_TEST_CASE(Object, parcThread_Execute);
}

LONGBOW_TEST_FIXTURE_SETUP(Specialization)
{
    longBowTestCase_SetInt(testCase, "initialAllocations", parcMemory_Outstanding());
    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_FIXTURE_TEARDOWN(Specialization)
{
    uint32_t initialAllocations = (uint32_t) longBowTestCase_Get(testCase, "initialAllocations");
    if (!parcMemoryTesting_ExpectedOutstanding(initialAllocations, "%s leaked memory.", longBowTestCase_GetFullName(testCase))) {
        parcSafeMemory_ReportAllocation(1);
        return LONGBOW_STATUS_MEMORYLEAK;
    }

    return LONGBOW_STATUS_SUCCEEDED;
}

LONGBOW_TEST_CASE(Object, parcThread_Execute)
{
}

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