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