]> git.ipfire.org Git - thirdparty/strongswan.git/blob - Source/testing/socket_test.c
- renamed get_block_size of hasher
[thirdparty/strongswan.git] / Source / testing / socket_test.c
1 /**
2 * @file socket_test.c
3 *
4 * @brief Tests for the socket_t class.
5 *
6 */
7
8 /*
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 */
22
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "socket_test.h"
27
28 #include <network/socket.h>
29 #include <utils/logger.h>
30
31 /*
32 * Description in header file
33 */
34 void test_socket(protected_tester_t *tester)
35 {
36 int packet_count = 10;
37 int current;
38 socket_t *skt = socket_create(500);
39 packet_t *pkt = packet_create(AF_INET);
40 char test_data[] = {
41 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03, /* spi */
42 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, /* spi */
43 0x05, /* next payload */
44 0x20, /* IKE version */
45 0x00, /* exchange type */
46 0x00, /* flags */
47 0x00,0x00,0x00,0x01, /* message id */
48 0x00,0x00,0x00,0x24, /* length */
49 0x12,0x34,0x56,0x67, /* some data */
50 0x12,0x34,0x56,0x67,
51 };
52 chunk_t data = chunk_from_buf(test_data);
53 chunk_t received;
54
55 /* send to previously bound socket */
56 pkt->set_destination(pkt, host_create(AF_INET, "127.0.0.1", 500));
57 pkt->set_source(pkt, host_create(AF_INET, "127.0.0.1", 500));
58 pkt->set_data(pkt, chunk_clone(data));
59
60 /* send packet_count packets */
61 for (current = 0; current < packet_count; current++)
62 {
63 if (skt->send(skt, pkt) == FAILED)
64 {
65 tester->assert_true(tester, 0, "packet send");
66 }
67 }
68 pkt->destroy(pkt);
69
70
71 /* receive packet_count packets */
72 for (current = 0; current < packet_count; current++)
73 {
74 skt->receive(skt, &pkt);
75 received = pkt->get_data(pkt);
76 tester->assert_false(tester, memcmp(received.ptr, data.ptr, max(received.len, data.len)), "packet exchange");
77 pkt->destroy(pkt);
78 }
79
80 skt->destroy(skt);
81
82 }