Renamed namespaces satcom::lib and satcom::pkf to senf
[senf.git] / Socket / PacketSocketHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 // Unit tests
24
25 //#include "PacketSocketHandle.test.hh"
26 //#include "PacketSocketHandle.test.ih"
27
28 #include "PacketSocketHandle.hh"
29
30 // Custom includes
31 #include <iostream>
32 #include <unistd.h>
33
34 #include <boost/test/auto_unit_test.hpp>
35 #include <boost/test/test_tools.hpp>
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 BOOST_AUTO_UNIT_TEST(packetSocketHandle)
41 {
42     // We have a Problem here .. packet sockets are only allowed for root
43     if (getuid() != 0) {
44         BOOST_WARN_MESSAGE(false, "Cannot test senf::PacketSocketHandle as non-root user");
45         return;
46     }
47
48     {
49         senf::PacketSocketHandle sock;
50         
51         BOOST_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("lo")) );
52         senf::LLSocketAddress a;
53         BOOST_CHECK_NO_THROW( sock.local(a) );
54         BOOST_CHECK_EQUAL( a.interface(), "lo" );
55
56         // How am I supposed to test read and write .. grmpf ..
57         
58         // BUG: There are some failures here ... need to investigate
59         /*
60         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
61                                   "lo",senf::PacketProtocol::Promiscuous) );
62         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
63                                   "lo",senf::PacketProtocol::AllMulticast) );
64         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
65                                   "lo",senf::PacketProtocol::None) );
66         */
67         
68         BOOST_CHECK_NO_THROW( sock.protocol().mcAdd(
69                                   "lo",senf::llAddress("01-02-03-04-05-06")) );
70         BOOST_CHECK_NO_THROW( sock.protocol().mcDrop(
71                                   "lo",senf::llAddress("01-02-03-04-05-06")) );
72
73         BOOST_CHECK_NO_THROW( sock.protocol().available() );
74         BOOST_CHECK( ! sock.eof() );
75     }
76 }
77
78 ///////////////////////////////cc.e////////////////////////////////////////
79 #undef prefix_
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // c-file-style: "senf"
85 // End: