dyntype_test.c
1.03 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
#include <stdio.h>
#include <string.h>
#include <json/json.h>
#include "bigpoint_cclass.h"
#include "bigpoint_dyntype.h"
#define TEST_STR "this is a foo string"
int
main(int argc, char * argv[])
{
struct json_object * json = json_object_new_int(123);
struct BIGPOINT_DYNTYPE * dyn = newFromJson(BIGPOINT_DYNTYPE, json);
printf("%d\n", (dyn->data)._int);
delete(dyn);
json_object_put(json);
dyn = new(BIGPOINT_DYNTYPE, BIGPOINT_DYNTYPE_INT, sizeof(int), 321);
json = toJson(dyn);
printf("%s\n", json_object_to_json_string(json));
delete(dyn);
json_object_put(json);
json = json_object_new_string(TEST_STR);
dyn = newFromJson(BIGPOINT_DYNTYPE, json);
printf("%s\n", (dyn->data)._string);
delete(dyn);
json_object_put(json);
dyn = new(BIGPOINT_DYNTYPE, BIGPOINT_DYNTYPE_STRING, strlen(TEST_STR), TEST_STR);
json = toJson(dyn);
printf("%s\n", json_object_to_json_string(json));
delete(dyn);
json_object_put(json);
return 0;
}
// vim: set et ts=4 sw=4: