]> git.ipfire.org Git - thirdparty/strongswan.git/blame - Source/charon/testcases/socket_test.c
- memory allocation tests removed
[thirdparty/strongswan.git] / Source / charon / testcases / socket_test.c
CommitLineData
45a07212
MW
1/**
2 * @file thread_pool_test.c
79538669 3 *
45a07212 4 * @brief Tests to test the Socket (type socket_t)
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>
94852e75 29#include <utils/allocator.h>
45a07212
MW
30
31/*
32 * Description in header file
33 */
34void test_socket(tester_t *tester)
79538669 35{
9317c2a1
MW
36 int packet_count = 5;
37 int current;
38 socket_t *skt = socket_create(4500);
39 packet_t *pkt = packet_create(AF_INET);
45a07212 40 char *test_string = "Testing functionality of socket_t";
79538669
JH
41
42
6c4b815f 43 pkt->data.ptr = allocator_alloc(strlen(test_string) + 1);
01d06501
JH
44 memcpy(pkt->data.ptr,test_string,strlen(test_string) + 1);
45 pkt->data.len = strlen(test_string) + 1;
79538669 46
9317c2a1 47 /* send to previously bound socket */
66e379a2 48 pkt->destination = host_create(AF_INET, "127.0.0.1", 4500);
9317c2a1
MW
49
50 /* send packet_count packets */
51 for (current = 0; current < packet_count; current++)
52 {
79538669 53 if (skt->send(skt, pkt) == FAILED)
9317c2a1
MW
54 {
55 tester->assert_true(tester, 0, "packet send");
56 }
57 }
45a07212 58 pkt->destroy(pkt);
79538669 59
9317c2a1
MW
60 /* receive packet_count packets */
61 for (current = 0; current < packet_count; current++)
62 {
63 skt->receive(skt, &pkt);
64 tester->assert_false(tester, strcmp(test_string, pkt->data.ptr), "packet exchange");
65 pkt->destroy(pkt);
66 }
79538669 67
d9b41b24
JH
68 tester->assert_true(tester, (skt->destroy(skt) == SUCCESS), "socket destroy call check");
69
45a07212 70}