File: unpack-status-reply-with-extensions-test.c

package info (click to toggle)
globus-gram-protocol 13.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,004 kB
  • sloc: sh: 11,330; ansic: 7,500; perl: 972; makefile: 192
file content (474 lines) | stat: -rw-r--r-- 14,489 bytes parent folder | download | duplicates (7)
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
#include "globus_gram_protocol.h"
#include "globus_preload.h"

#define test_assert(assertion, message) \
    if (!(assertion)) \
    { \
        printf message; \
        return 1; \
    }

#define TEST_CASE(x) { #x, x }

#define ARRAY_LEN(x) ((int) (sizeof(x)/sizeof(x[0])))

typedef struct
{
    char * name;
    int (*test_function)(void);
}
test_case;

char *                                  job_id = "http://example.org:43343/1/2";

/*
 * Test case: 
 *
 * PURPOSE:
 *     Check that
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     correctly unpacks standard GRAM2 messages
 *
 * STEPS:
 *     - Creates a message using server-side API.
 *     - Parses message to extensions hash.
 *     - Verifies that all attributes we expect in the message are present in
 *       the parsed values.
 *     - Verifies that the number of attributes in the message match the count
 *       of ones we expect.
 */
int test_unpack_with_extensions(void)
{
    globus_byte_t *                     message;
    globus_size_t                       message_size;
    globus_hashtable_t                  hashtable;
    globus_gram_protocol_extension_t *  entry;
    int                                 rc;
    char *                              expected[] =
    {
            "protocol-version",
            "status",
            "failure-code",
            "job-failure-code"
    };
    int                                 i;

    rc = globus_gram_protocol_pack_status_reply(   
            GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
            0,
            0,
            &message,
            &message_size);
    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error constructing test message: %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            message,
            message_size,
            &hashtable);
    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error parsing test message: %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    /* check that expected attributes were parsed */
    for (i = 0; i < ARRAY_LEN(expected); i++)
    {
        entry = globus_hashtable_lookup(&hashtable, expected[i]);
        test_assert(
                entry != NULL,
                ("# Missing expected attribute %s\n", expected[i]));
    }

    test_assert(ARRAY_LEN(expected) == globus_hashtable_size(&hashtable),
            ("# Hash table contains %d entries, expected %d",
             globus_hashtable_size(&hashtable),
             ARRAY_LEN(expected)));

    globus_gram_protocol_hash_destroy(&hashtable);

    free(message);

    return 0;
}


/* Test case:
 * PURPOSE:
 *     Make sure
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     handles NULL message or hashtable with the expected error.
 * TEST STEPS:
 *   - Create message
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() with
 *     NULL message and verify that result is NULL_PARAM error
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() with
 *     NULL hashtable pointer and verify that result is NULL_PARAM error.
 */
int test_null_param(void)
{
    globus_byte_t *                     message;
    globus_size_t                       message_size;
    globus_hashtable_t                  hashtable;
    int                                 rc;

    rc = globus_gram_protocol_pack_status_reply(   
            GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
            0,
            0,
            &message,
            &message_size);

    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error constructing test message %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            NULL,
            message_size,
            &hashtable);
    test_assert(
            rc == GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETER,
            ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETER "
             "got %d (%s)\n",
             rc,
             globus_gram_protocol_error_string(rc)));

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            message,
            message_size,
            NULL);
    test_assert(
            rc == GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETER,
            ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_NULL_PARAMETER "
             "got %d (%s)\n",
             rc,
             globus_gram_protocol_error_string(rc)));

    free(message);

    return 0;
}

/*
 * PURPOSE:
 *     Verify that
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     catches protocol mismatch errors.
 * TEST STEPS:
 *   - Manually construct status update message with version equal to
 *     GLOBUS_GRAM_PROTOCOL_VERSION + 1
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() and
 *     expect a VERSION_MISMATCH error
 */
int test_version_mismatch(void)
{
    char *                              message;
    globus_size_t                       message_size;
    int                                 rc;
    globus_hashtable_t                  hashtable;

    message = globus_common_create_string(
        "protocol-version: %d\r\n"
        "status: %d\r\n"
        "failure-code: %d\r\n"
        "job-failure-code: %d\r\n",
        GLOBUS_GRAM_PROTOCOL_VERSION + 1,
        GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
        0,
        0);
    test_assert(message != NULL,
            ("# Error creating message (out of memory?)\n"));
    message_size = strlen(message) + 1;

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            (globus_byte_t *) message,
            message_size,
            &hashtable);
    test_assert(rc == GLOBUS_GRAM_PROTOCOL_ERROR_VERSION_MISMATCH,
            ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_VERSION_MISMATCH, "
            "got %d (%s)\n",
            rc, 
            globus_gram_protocol_error_string(rc)));

    if (hashtable != NULL)
    {
        globus_gram_protocol_hash_destroy(&hashtable);
    }
    free(message);

    return 0;
}

/*
 * PURPOSE:
 *     Verify that
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     deals with messages missing attributes from GRAM2 protocol.
 * TEST STEPS:
 *   - Manually construct status update messages with each piece of the GRAM2
 *     protocol missing
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() and
 *     expect an UNPACK_FAILED error
 */
int test_missing_attribute()
{
    char *                              message;
    globus_size_t                       message_size;
    int                                 rc;
    globus_hashtable_t                  hashtable;
    int                                 i;
    char *                              lines[] =
    {
        "protocol-version: 2\r\n",
        "status: 2\r\n",
        "failure-code: 0\r\n"
    };

    for (i = 0; i < ARRAY_LEN(lines); i++)
    {
        message = globus_common_create_string(
                "%s%s%s",
                lines[i % ARRAY_LEN(lines)],
                lines[(i+1) % ARRAY_LEN(lines)],
                lines[(i+2) % ARRAY_LEN(lines)]);

        test_assert(message != NULL,
                ("# Error creating message (out of memory?)\n"));
        message_size = strlen(message) + 1;

        rc = globus_gram_protocol_unpack_status_reply_with_extensions(
                (globus_byte_t *) message,
                message_size,
                &hashtable);
        test_assert(rc == GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED,
                ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED, "
                "got %d (%s)\n",
                rc, 
                globus_gram_protocol_error_string(rc)));
        free(message);
    }

    return 0;
}
/* int test_missing_attribute() */


/*
 * PURPOSE:
 *     Verify that
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     deals with messages containing extension attributes not defined in the
 *     GRAM2
 *     protocol.
 * TEST STEPS:
 *   - Construct a status update message with the
 *     globus_gram_protocol_pack_status_reply_with_extensions()
 *     function.
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() and
 *     expect a GLOBUS_SUCCESS
 *   - Check that our new attribute is in the hash
 */
int
test_extra_attributes(void)
{
    globus_byte_t *                     message;
    globus_size_t                       message_size;
    globus_hashtable_t                  hashtable;
    globus_gram_protocol_extension_t *  entry;
    int                                 rc;
    char *                              expected[] =
    {
            "protocol-version",
            "status",
            "failure-code",
            "job-failure-code",
            "attribute"
    };
    int                                 i;

    rc = globus_hashtable_init(
            &hashtable,
            89,
            globus_hashtable_string_hash,
            globus_hashtable_string_keyeq);
    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error initializing hashtable (out of memory?)\n"));
    entry = malloc(sizeof(globus_gram_protocol_extension_t));
    test_assert(entry != NULL,
            ("# Error allocating hash entry (out of memory?)\n"));
    entry->attribute = "attribute";
    entry->value = "value";
    rc = globus_hashtable_insert(&hashtable, entry->attribute, entry);

    rc = globus_gram_protocol_pack_status_reply_with_extensions(
            GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
            0,
            0,
            &hashtable,
            &message,
            &message_size);
    test_assert(rc == GLOBUS_SUCCESS,
            ("# Error packing status message: %d (%s)\n",
            rc, globus_gram_protocol_error_string(rc)));

    globus_hashtable_destroy(&hashtable);
    free(entry);
    hashtable = NULL;

    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error constructing test message: %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            message,
            message_size,
            &hashtable);
    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error parsing test message: %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    /* check that expected attributes were parsed */
    for (i = 0; i < ARRAY_LEN(expected); i++)
    {
        entry = globus_hashtable_lookup(&hashtable, expected[i]);
        test_assert(
                entry != NULL,
                ("# Missing expected attribute %s\n", expected[i]));
    }

    test_assert(ARRAY_LEN(expected) == globus_hashtable_size(&hashtable),
            ("# Hash table contains %d entries, expected %d",
             globus_hashtable_size(&hashtable),
             ARRAY_LEN(expected)));

    globus_gram_protocol_hash_destroy(&hashtable);

    free(message);

    return 0;
}

/*
 * PURPOSE:
 *     Verify that
 *     globus_gram_protocol_unpack_status_reply_with_extensions()
 *     deals with messages which are badly formatted: lines without ':', 
 *     values without terminating "\r\n"
 *     protocol.
 * TEST STEPS:
 *   - Construct a status update message with the
 *     globus_gram_protocol_pack_status_reply() function.
 *   - Replace initial ":" with "\t"
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() and
 *     expect a UNPACK_FAILED error
 *   - Replace "\t" with ":", then remove the training "\n" in the message
 *   - Call globus_gram_protocol_unpack_status_reply_with_extensions() and
 *     expect a UNPACK_FAILED error
 */
int
test_bad_message(void)
{
    globus_byte_t *                     message;
    globus_size_t                       message_size;
    globus_hashtable_t                  hashtable;
    char *                              ptr;
    int                                 rc;

    rc = globus_gram_protocol_pack_status_reply(   
            GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
            0,
            0,
            &message,
            &message_size);
    test_assert(
            rc == GLOBUS_SUCCESS,
            ("# Error constructing test message: %d (%s)\n",
            rc,
            globus_gram_protocol_error_string(rc)));

    ptr = strchr((char *) message, ':');
    test_assert(
            ptr != NULL,
            ("# Error locating \":\" in message\n"));
    *ptr = '\t';

    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            message,
            message_size,
            &hashtable);
    test_assert(
            rc == GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED,
            ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED, got "
             " %d (%s)\n",
             rc,
             globus_gram_protocol_error_string(rc)));

    *ptr = ':';
    message[message_size-2] = 0;
    rc = globus_gram_protocol_unpack_status_reply_with_extensions(
            message,
            message_size,
            &hashtable);
    test_assert(
            rc == GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED,
            ("# Expected GLOBUS_GRAM_PROTOCOL_ERROR_HTTP_UNPACK_FAILED, got "
             " %d (%s)\n",
             rc,
             globus_gram_protocol_error_string(rc)));

    free(message);

    return 0;
}


int main(int argc, char * argv[])
{
    test_case                           tests[] =
    {
        TEST_CASE(test_unpack_with_extensions),
        TEST_CASE(test_null_param),
        TEST_CASE(test_version_mismatch),
        TEST_CASE(test_missing_attribute),
        TEST_CASE(test_extra_attributes),
        TEST_CASE(test_bad_message)
    };
    int                                 i;
    int                                 rc;
    int                                 not_ok = 0;

    LTDL_SET_PRELOADED_SYMBOLS();
    printf("1..%d\n", ARRAY_LEN(tests));

    globus_module_activate(GLOBUS_GRAM_PROTOCOL_MODULE);
    for (i = 0; i < ARRAY_LEN(tests); i++)
    {
        rc = tests[i].test_function();

        if (rc != 0)
        {
            not_ok++;
            printf("not ok - %s\n", tests[i].name);
        }
        else
        {
            printf("ok - %s\n", tests[i].name);
        }
    }
    globus_module_deactivate(GLOBUS_GRAM_PROTOCOL_MODULE);

    return not_ok;
}