]> git.ipfire.org Git - thirdparty/strongswan.git/blame - programs/charon/testing/socket_test.c
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / charon / testing / socket_test.c
CommitLineData
45a07212 1/**
ed37dee6 2 * @file socket_test.c
79538669 3 *
ed37dee6 4 * @brief Tests for the socket_t class.
79538669 5 *
45a07212
MW
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>
fd9cabd4
JH
25
26#include "socket_test.h"
88878242 27
716abc9f 28#include <network/socket.h>
e168ee17 29#include <utils/logger.h>
45a07212
MW
30
31/*
32 * Description in header file
33 */
51d56047 34void test_socket(protected_tester_t *tester)
79538669 35{
e168ee17 36 int packet_count = 10;
9317c2a1 37 int current;
e168ee17 38 socket_t *skt = socket_create(500);
9317c2a1 39 packet_t *pkt = packet_create(AF_INET);
e168ee17
MW
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;
79538669 54
9317c2a1 55 /* send to previously bound socket */
e168ee17
MW
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));
9317c2a1
MW
59
60 /* send packet_count packets */
61 for (current = 0; current < packet_count; current++)
e168ee17 62 {
79538669 63 if (skt->send(skt, pkt) == FAILED)
9317c2a1
MW
64 {
65 tester->assert_true(tester, 0, "packet send");
66 }
67 }
45a07212 68 pkt->destroy(pkt);
e168ee17 69
79538669 70
9317c2a1
MW
71 /* receive packet_count packets */
72 for (current = 0; current < packet_count; current++)
73 {
74 skt->receive(skt, &pkt);
e168ee17
MW
75 received = pkt->get_data(pkt);
76 tester->assert_false(tester, memcmp(received.ptr, data.ptr, max(received.len, data.len)), "packet exchange");
9317c2a1
MW
77 pkt->destroy(pkt);
78 }
79538669 79
df3c59d0 80 skt->destroy(skt);
d9b41b24 81
45a07212 82}