Bump year
[yaz-moved-to-github.git] / test / tstodr.c
1 /*
2  * Copyright (C) 1995-2005, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: tstodr.c,v 1.3 2005-01-15 19:47:15 adam Exp $
6  *
7  */
8 #include <stdio.h>
9 #include <yaz/odr.h>
10 #include "tstodrcodec.h"
11
12 void tst_MySequence1(ODR encode, ODR decode)
13 {
14     char *ber_buf;
15     int ber_len;
16     Yc_MySequence *s = odr_malloc(encode, sizeof(*s));
17     Yc_MySequence *t;
18
19     s->first = odr_intdup(encode, 12345);
20     s->second = odr_malloc(encode, sizeof(*s->second));
21     s->second->buf = "hello";
22     s->second->len = 5;
23     s->second->size = 0;
24     s->third = odr_intdup(encode, 1);
25     s->fourth = odr_nullval();
26     s->fifth = odr_intdup(encode, YC_MySequence_enum1);
27
28     if (!yc_MySequence(encode, &s, 0, 0))
29         exit(1);
30     
31     ber_buf = odr_getbuf(encode, &ber_len, 0);
32
33     odr_setbuf(decode, ber_buf, ber_len, 0);
34
35     if (!yc_MySequence(decode, &t, 0, 0))
36         exit(2);
37     if (!t->first || *t->first != 12345)
38         exit(3);
39     if (!t->second || !t->second->buf || t->second->len != 5)
40         exit(4);
41     if (memcmp(t->second->buf, "hello", t->second->len))
42         exit(5);
43     if (!t->third || *t->third != 1)
44         exit(6);
45     if (!t->fourth)
46         exit(7);
47     if (!t->fifth || *t->fifth != YC_MySequence_enum1)
48         exit(8);
49 }
50
51 void tst_MySequence2(ODR encode, ODR decode)
52 {
53     Yc_MySequence *s = odr_malloc(encode, sizeof(*s));
54
55     s->first = 0;  /* deliberately miss this .. */
56     s->second = odr_malloc(encode, sizeof(*s->second));
57     s->second->buf = "hello";
58     s->second->len = 5;
59     s->second->size = 0;
60     s->third = odr_intdup(encode, 1);
61     s->fourth = odr_nullval();
62     s->fifth = odr_intdup(encode, YC_MySequence_enum1);
63
64     if (yc_MySequence(encode, &s, 0, 0)) /* should fail */
65         exit(9);
66     if (odr_geterror(encode) != OREQUIRED)
67         exit(10);
68     if (strcmp(odr_getelement(encode), "first"))
69         exit(11);
70     odr_reset(encode);
71
72     if (odr_geterror(encode) != ONONE)
73         exit(12);
74     if (strcmp(odr_getelement(encode), ""))
75         exit(13);
76 }
77
78 void tst_MySequence3(ODR encode, ODR decode)
79 {
80     char buf[40];
81     int i;
82     Yc_MySequence *t;
83
84     srand(123);
85     for (i = 0; i<1000; i++)
86     {
87         int j;
88         for (j = 0; j<sizeof(buf); j++)
89             buf[j] = rand();
90
91         for (j = 1; j<sizeof(buf); j++)
92         {
93             odr_setbuf(decode, buf, j, 0);
94             yc_MySequence(decode, &t, 0, 0);
95             odr_reset(decode);
96         }
97     }
98 }
99
100 int main(int argc, char **argv)
101 {
102     ODR odr_encode = odr_createmem(ODR_ENCODE);
103     ODR odr_decode = odr_createmem(ODR_DECODE);
104
105     tst_MySequence1(odr_encode, odr_decode);
106     tst_MySequence2(odr_encode, odr_decode);
107     tst_MySequence3(odr_encode, odr_decode);
108
109     odr_destroy(odr_encode);
110     odr_destroy(odr_decode);
111     exit(0);
112 }