bbac2008467a3be11fae6c5bbb8543f5aae0c516
[yazpp-moved-to-github.git] / zlint / test-init-02.cpp
1 /* This file is part of the yazpp toolkit.
2  * Copyright (C) 1998-2013 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_02::Zlint_test_init_02()
14 {
15 }
16
17 Zlint_test_init_02::~Zlint_test_init_02()
18 {
19 }
20
21 Zlint_code Zlint_test_init_02::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 V2 init");
28
29     ODR_MASK_ZERO(init->protocolVersion);
30     ODR_MASK_SET(init->protocolVersion, Z_ProtocolVersion_1);
31     ODR_MASK_SET(init->protocolVersion, Z_ProtocolVersion_2);
32
33     int r = z->send_Z_PDU(apdu, &len);
34     if (r < 0)
35     {
36         z->msg_check_fail("unable to send init request");
37         return TEST_FINISHED;
38     }
39     return TEST_CONTINUE;
40 }
41
42 Zlint_code Zlint_test_init_02::recv_gdu(Zlint *z, Z_GDU *gdu)
43 {
44     if (gdu->which == Z_GDU_Z3950 &&
45         gdu->u.z3950 && gdu->u.z3950->which == Z_APDU_initResponse)
46     {
47         Z_InitResponse *init = gdu->u.z3950->u.initResponse;
48         int ver = z->initResponseGetVersion(init);
49         if (ver != 2)
50             z->msg_check_fail("got version %d, expected 2", ver);
51         z->msg_check_ok();
52     }
53     else
54         z->msg_check_fail("did not receive init response as expected");
55     return TEST_FINISHED;
56 }
57
58
59
60 /*
61  * Local variables:
62  * c-basic-offset: 4
63  * c-file-style: "Stroustrup"
64  * indent-tabs-mode: nil
65  * End:
66  * vim: shiftwidth=4 tabstop=8 expandtab
67  */
68