blob: 50d252ac020905ea6dde0428610da99c0ad1b3a6 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*********************************************************************************************************
2* Software License Agreement (BSD License) *
3* Author: Sebastien Decugis <sdecugis@freediameter.net> *
4* *
5* Copyright (c) 2013, WIDE Project and NICT *
6* All rights reserved. *
7* *
8* Redistribution and use of this software in source and binary forms, with or without modification, are *
9* permitted provided that the following conditions are met: *
10* *
11* * Redistributions of source code must retain the above *
12* copyright notice, this list of conditions and the *
13* following disclaimer. *
14* *
15* * Redistributions in binary form must reproduce the above *
16* copyright notice, this list of conditions and the *
17* following disclaimer in the documentation and/or other *
18* materials provided with the distribution. *
19* *
20* * Neither the name of the WIDE Project or NICT nor the *
21* names of its contributors may be used to endorse or *
22* promote products derived from this software without *
23* specific prior written permission of WIDE Project and *
24* NICT. *
25* *
26* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
27* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
28* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
29* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
30* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
31* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
32* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
33* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
34*********************************************************************************************************/
35
36#include "tests.h"
37
38const char * ids[] = { "b11", "b14", "b1", "b4" };
39#define DomainName "localdomain"
40
41/* Main test routine */
42int main(int argc, char *argv[])
43{
44 /* First, initialize the daemon modules */
45 INIT_FD();
46
47 /* Create 4 peers with these ids */
48 {
49 int i;
50 struct peer_info inf;
51 char locid[255];
52 memset(&inf, 0, sizeof(inf));
53 inf.pi_diamid = (char *)locid;
54 for (i=0; i < sizeof(ids) / sizeof(ids[0]); i++) {
55 snprintf(locid, sizeof(locid), "%s." DomainName, ids[i]);
56 CHECK( 0, fd_peer_add(&inf, __FILE__, NULL, NULL));
57 }
58 }
59 fd_log_debug("%s", fd_peer_dump_list(FD_DUMP_TEST_PARAMS, 0));
60 /* Check we are able to find again any of these */
61 {
62 int i;
63 char locid[255];
64 struct peer_hdr *p;
65 for (i=0; i < sizeof(ids) / sizeof(ids[0]); i++) {
66 snprintf(locid, sizeof(locid), "%s." DomainName, ids[i]);
67 CHECK( 0, fd_peer_getbyid((DiamId_t)locid, strlen((char *)locid), 0, &p));
68 CHECK( 0, strcmp((char *)locid, p->info.pi_diamid));
69 CHECK( 0, fd_peer_getbyid((DiamId_t)locid, strlen((char *)locid), 1, &p));
70 CHECK( 0, strcmp((char *)locid, p->info.pi_diamid));
71 }
72 }
73
74
75 /* That's all for the tests yet */
76 PASSTEST();
77}
78