forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.c
More file actions
74 lines (59 loc) · 2.15 KB
/
test.c
File metadata and controls
74 lines (59 loc) · 2.15 KB
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
/*
* Copyright 2013 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <uuid/uuid.h>
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <emscripten.h>
int isUUID(char* p, int upper) {
char* p1 = p;
do {
if (!(isxdigit(*p1) || (*p1 == '-')) || (upper && islower(*p1)) || (!upper && isupper(*p1))) {
return 0;
} else {
}
} while (*++p1 != 0);
if ((p[8] == '-') && (p[13] == '-') && (p[18] == '-') && (p[23] == '-')) {
return 1;
} else {
return 0;
}
}
int main() {
uuid_t uuid;
uuid_t uuid1;
uuid_t uuid2;
uuid_t empty_uuid = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
uuid_generate(uuid);
assert(uuid_is_null(uuid) == 0);
assert(uuid_type(uuid) == UUID_TYPE_DCE_RANDOM);
assert(uuid_variant(uuid) == UUID_VARIANT_DCE);
assert((uuid[8] & 0xC0) == 0x80); // RFC-4122 variant marker
char *generated = (char *)malloc(37*sizeof(char));
uuid_unparse(uuid, generated);
assert(isUUID(generated, 0) == 1); // Check it's a valid lower case UUID string.
printf("\nuuid = %s\n", generated);
assert(uuid_parse(generated, uuid1) == 0); // Check the generated UUID parses correctly into a compact UUID.
assert(uuid_compare(uuid1, uuid) == 0); // Compare the parsed UUID with the original.
uuid_unparse_lower(uuid, generated);
assert(isUUID(generated, 0) == 1); // Check it's a valid lower case UUID string.
printf("uuid = %s\n", generated);
uuid_unparse_upper(uuid, generated);
assert(isUUID(generated, 1) == 1); // Check it's a valid upper case UUID string.
printf("uuid = %s\n", generated);
uuid_copy(uuid2, uuid);
assert(uuid_compare(uuid2, uuid) == 0);
uuid_clear(uuid);
assert(uuid_compare(empty_uuid, uuid) == 0);
assert(uuid_is_null(uuid) == 1);
// The following lets the browser test exit cleanly.
#ifdef REPORT_RESULT
REPORT_RESULT(1);
#endif
exit(0);
}