removed some errors, added basic unit tests
[senf.git] / Socket / Protocols / UN / UNAddressing.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief UNAddressing.test unit tests */
22
23 //#include "UNAddressing.test.hh"
24 //#include "UNAddressing.test.ih"
25
26 // Custom includes
27 #include "UNAddressing.hh"
28
29 #include <boost/test/auto_unit_test.hpp>
30 #include <boost/test/test_tools.hpp>
31
32 #include <sys/socket.h>
33 #include <sys/un.h>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 BOOST_AUTO_UNIT_TEST(unSocketAddress)
39 {
40     std::string testS = "/tmp/senfTestSocket";
41     senf::UNSocketAddress addr (testS) ; 
42     int mySock = socket(AF_UNIX, SOCK_DGRAM, 0); 
43     if (bind(mySock, addr.sockaddr_p(), addr.sockaddr_len())) { 
44         std::cout << "Error while binding name to unix socket" << std::endl;
45     }
46
47 }
48
49 ///////////////////////////////cc.e////////////////////////////////////////
50 #undef prefix_
51
52 \f
53 // Local Variables:
54 // mode: c++
55 // fill-column: 100
56 // comment-column: 40
57 // c-file-style: "senf"
58 // indent-tabs-mode: nil
59 // ispell-local-dictionary: "american"
60 // compile-command: "scons -u test"
61 // End: