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
|
#include "Config.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "assert.h"
#include "Thread.h"
#include "Exception.h"
#include "SQLException.h"
#include "AssertException.h"
/**
* Exceptions handling unit tests
*/
#define THREADS 50
Exception_T A = {"AException"};
Exception_T B = {"BException"};
Exception_T C = {"CException"};
Exception_T D = {"DException"};
static void throwA(void) {
THROW(A, "A");
}
static void throwB(void) {
THROW(B, "B");
}
static void throwC(void) {
THROW(C, "C");
}
static void throwD(void) {
THROW(D, "D");
}
static void indirectA(void) {
throwA();
}
/* Throw and catch exceptions and check that we get the expected exception.
* If the exception stack is corrupt this should be detected
*/
static void *thread(void *args) {
TRY
THROW(A, "A");
assert(false); // Should not be reached
CATCH(A)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(D, "D");
assert(false); // Should not be reached
CATCH(D)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(C, "C");
assert(false); // Should not be reached
CATCH(C)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(A, "A");
assert(false); // Should not be reached
CATCH(A)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
throwA();
throwB();
throwC();
throwD();
CATCH(A)
// Ok
CATCH(B)
assert(false); // Should not be reached
CATCH(C)
assert(false); // Should not be reached
CATCH(D)
assert(false); // Should not be reached
END_TRY;
TRY
indirectA();
CATCH(A)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(A, "A");
assert(false); // Should not be reached
CATCH(A)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(B, "B");
assert(false); // Should not be reached
CATCH(B)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
THROW(D, "D");
assert(false); // Should not be reached
CATCH(D)
// Ok
ELSE
assert(false); // Should not be reached
END_TRY;
TRY
RETURN (NULL);
assert(false); // Should not be reached
CATCH(A)
assert(false); // Should not be reached
END_TRY;
return NULL;
}
int main(void) {
Exception_init();
printf("============> Start Exeption Tests\n\n");
printf("=> Test1: TRY-CATCH\n");
{
TRY
THROW(A, NULL);
assert(false); // Should not be reached
CATCH(A)
printf("\tResult: Ok\n");
END_TRY;
}
printf("=> Test1: OK\n\n");
printf("=> Test2: TRY-CATCH indirect throw\n");
{
TRY
indirectA();
assert(false); // Should not be reached
CATCH(A)
printf("\tResult: Ok\n");
END_TRY;
}
printf("=> Test2: OK\n\n");
printf("=> Test3: TRY-ELSE\n");
{
TRY
THROW(B, "B");
assert(false); // Should not be reached
ELSE
printf("\tResult: Ok\n");
END_TRY;
}
printf("=> Test3: OK\n\n");
printf("=> Test4: TRY-CATCH-ELSE\n");
{
TRY
throwB();
assert(false); // Should not be reached
CATCH(A)
assert(false); // Should not be reached
ELSE
printf("\tResult: Ok\n");
END_TRY;
}
printf("=> Test4: OK\n\n");
printf("=> Test5: TRY-FINALLY\n");
{
int i = 0;
TRY
i++;
FINALLY
printf("\tResult: ok\n");
assert(i==1);
END_TRY;
}
printf("=> Test5: OK\n\n");
printf("=> Test6: TRY-CATCH-FINALLY and volatile\n");
{
volatile int i = 0;
TRY
i++;
THROW(C, "C");
CATCH(C)
assert(i == 1);
i++;
FINALLY
printf("\tResult: ok\n");
assert(i == 2);
END_TRY;
}
printf("=> Test6: OK\n\n");
printf("=> Test7: CATCH SQLException\n");
{
TRY
THROW(SQLException, "SQLException");
assert(false); // Should not be reached
CATCH(SQLException)
printf("\tResult: ok got SQLException\n");
END_TRY;
}
printf("=> Test7: OK\n\n");
printf("=> Test8: CATCH AssertException\n");
{
TRY
assert(false); // Throws AssertException
printf("Test8 failed\n");
exit(1);
CATCH(AssertException)
printf("\tResult: ok got AssertException\n");
END_TRY;
}
printf("=> Test8: OK\n\n");
printf("=> Test9: Nested TRY-CATCH\n");
{
TRY
TRY
THROW(B, "B");
THROW(A, "A");
assert(false); // Should not be reached
CATCH(A)
assert(false); // Should not be reached
END_TRY;
CATCH(B)
printf("\tResult: ok\n");
END_TRY;
}
printf("=> Test9: OK\n\n");
printf("=> Test10: RETHROW\n");
{
TRY
TRY
THROW(A, "A");
assert(false); // Should not be reached
CATCH(A)
RETHROW;
END_TRY;
CATCH(A)
printf("\tResult: ok got Exception\n");
END_TRY;
}
printf("=> Test10: OK\n\n");
printf("=> Test11: No exception thrown\n");
{
TRY
(void)0;
ELSE
assert(false); // Should not be reached
END_TRY;
}
printf("=> Test11: OK\n\n");
printf("=> Test12: Test thread-safeness\n");
{
int i;
Thread_T threads[THREADS];
for (i = 0; i < THREADS; i++)
Thread_create(threads[i], thread, NULL);
for (i = 0; i < THREADS; i++)
Thread_join(threads[i]);
}
printf("=> Test12: OK\n\n");
printf("=> Test14: Double interpretation of format strings during RETHROW\n");
{
TRY
{
TRY
{
TRY
{
// Trigger exception
printf("\t1st level TRY: throw exception with string argument 'hello%%sally'\n");
THROW(AssertException, "1st level TRY: %s", "hello%sally");
}
END_TRY;
}
FINALLY
{
printf("\t2nd level TRY: FINALLY will rethrow the 1st level exception '%s'\n", Exception_frame.message);
// The FINALLY will RETHROW the exception, which leads to Exception_throw()
}
END_TRY;
}
ELSE
{
// Catch the exception
printf("\t3nd level TRY: catch the 1st level exception '%s'\n", Exception_frame.message);
assert(IS(Exception_frame.message, "1st level TRY: hello%sally"));
}
END_TRY;
}
printf("=> Test14: OK\n\n");
printf("============> Exception Tests: OK\n\n");
return 0;
}
|