034e4501188df23cbbf4deccc35f3f0916ea8d04
[yazpp-moved-to-github.git] / zlint / test-init-03.cpp
1 /* This file is part of the yazpp toolkit.
2  * Copyright (C) Index Data and Mike Taylor
3  * See the file LICENSE for details.
4  */
5
6 #if HAVE_CONFIG_H
7 #include <config.h>
8 #endif
9 #include <yaz/log.h>
10
11 #include <zlint.h>
12
13 Zlint_test_init_03::Zlint_test_init_03()
14 {
15 }
16
17 Zlint_test_init_03::~Zlint_test_init_03()
18 {
19 }
20
21 Zlint_code Zlint_test_init_03::init(Zlint *z)
22 {
23     int len;
24     Z_APDU *apdu = z->create_Z_PDU(Z_APDU_initRequest);
25     Z_InitRequest *init = apdu->u.initRequest;
26
27     z->msg_check_for("for V9 init");
28
29     ODR_MASK_ZERO(init->protocolVersion);
30     int i;
31     for (i = 0; i< 9; i++)
32         ODR_MASK_SET(init->protocolVersion, i);
33
34     int r = z->send_Z_PDU(apdu, &len);
35     if (r < 0)
36     {
37         z->msg_check_fail("unable to send init request");
38         return TEST_FINISHED;
39     }
40     return TEST_CONTINUE;
41 }
42
43 Zlint_code Zlint_test_init_03::recv_gdu(Zlint *z, Z_GDU *gdu)
44 {
45     if (gdu->which == Z_GDU_Z3950 &&
46         gdu->u.z3950 && gdu->u.z3950->which == Z_APDU_initResponse)
47     {
48         Z_InitResponse *init = gdu->u.z3950->u.initResponse;
49         int ver = z->initResponseGetVersion(init);
50
51         if (ver < 2 || ver > 5)
52             z->msg_check_fail("%sgot version %d, expected 2-5", ver);
53         z->msg_check_ok();
54     }
55     else
56         z->msg_check_fail("did not receive init response as expected");
57     return TEST_FINISHED;
58 }
59
60
61 /*
62  * Local variables:
63  * c-basic-offset: 4
64  * c-file-style: "Stroustrup"
65  * indent-tabs-mode: nil
66  * End:
67  * vim: shiftwidth=4 tabstop=8 expandtab
68  */
69