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
|
#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_message()
* correctly unpacks standard GRAM2 messages
*
* STEPS:
* - Creates a message using server-side API.
* - Parses message to 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.
*/
static
int
unpack_test(void)
{
char * message;
globus_size_t message_size;
globus_hashtable_t hashtable;
globus_gram_protocol_extension_t * entry;
int rc;
char * expected[] =
{
"protocol-version",
"job-manager-url",
"status",
"failure-code"
};
int i;
rc = globus_gram_protocol_pack_status_update_message(
job_id,
GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
0,
(globus_byte_t **)&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_message(
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;
}
/* unpack_test() */
/*
* Test case:
*
* PURPOSE:
* Check that
* globus_gram_protocol_unpack_message()
* correctly unpacks standard GRAM2 messages with escaped extensions
*
* STEPS:
* - Creates a message using server-side API.
* - Parses message to 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.
*/
static
int
unpack_test_with_extensions(void)
{
char * message;
globus_size_t message_size;
globus_hashtable_t hashtable;
globus_gram_protocol_extension_t * entry;
int rc;
char ext_text[] = "extension: \"hello\\\"\"\r\n";
char * expected[] =
{
"protocol-version",
"job-manager-url",
"status",
"failure-code",
"extension"
};
int i;
rc = globus_gram_protocol_pack_status_update_message(
job_id,
GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
0,
(globus_byte_t **) &message,
&message_size);
test_assert(
rc == GLOBUS_SUCCESS,
("# Error constructing test message: %d (%s)\n",
rc,
globus_gram_protocol_error_string(rc)));
message = realloc(message, strlen(message) + strlen(ext_text) + 1);
test_assert(
message != NULL,
("# Error reallocing test message\n"));
strcat(message, ext_text);
message_size = strlen((char *) message)+1;
rc = globus_gram_protocol_unpack_message(
(char *) 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;
}
/* unpack_test() */
/* Test case:
* PURPOSE:
* Make sure
* globus_gram_protocol_unpack_status_update_message_with_extensions()
* handles NULL message or hashtable with the expected error.
* TEST STEPS:
* - Create message
* - Call globus_gram_protocol_unpack_status_update_message_with_extensions() with
* NULL message and verify that result is NULL_PARAM error
* - Call globus_gram_protocol_unpack_status_update_message_with_extensions() with
* NULL hashtable pointer and verify that result is NULL_PARAM error.
*/
int
unpack_null_param_test(void)
{
globus_byte_t * message;
globus_size_t message_size;
globus_hashtable_t hashtable;
int rc;
rc = globus_gram_protocol_pack_status_update_message(
job_id,
GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
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_message(
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_message(
(char *) 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;
}
/* unpack_null_param_test() */
/*
* PURPOSE:
* Verify that
* globus_gram_protocol_unpack_status_update_message_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_update_message() function.
* - Replace initial ":" with "\t"
* - Call globus_gram_protocol_unpack_status_update_message_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_update_message_with_extensions() and
* expect a UNPACK_FAILED error
*/
int
unpack_bad_message_test(void)
{
globus_byte_t * message;
globus_size_t message_size;
globus_hashtable_t hashtable;
char * ptr;
int rc;
rc = globus_gram_protocol_pack_status_update_message(
job_id,
GLOBUS_GRAM_PROTOCOL_JOB_STATE_ACTIVE,
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_update_message_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_update_message_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;
}
/* unpack_bad_message_test() */
int main(int argc, char * argv[])
{
test_case tests[] =
{
TEST_CASE(unpack_test),
TEST_CASE(unpack_test_with_extensions),
TEST_CASE(unpack_null_param_test),
TEST_CASE(unpack_bad_message_test)
};
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;
}
|