Fixed whitespace in all files (no tabs)
[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         /*
59         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
60                                   "lo",senf::PacketProtocol::Promiscuous) );
61         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
62                                   "lo",senf::PacketProtocol::AllMulticast) );
63         BOOST_CHECK_NO_THROW( sock.protocol().promisc(
64                                   "lo",senf::PacketProtocol::None) );
65         */
66
67         BOOST_CHECK_NO_THROW( sock.protocol().mcAdd(
68                                   "lo",senf::llAddress("01-02-03-04-05-06")) );
69         BOOST_CHECK_NO_THROW( sock.protocol().mcDrop(
70                                   "lo",senf::llAddress("01-02-03-04-05-06")) );
71
72         BOOST_CHECK_NO_THROW( sock.protocol().available() );
73         BOOST_CHECK( ! sock.eof() );
74     }
75 }
76
77 ///////////////////////////////cc.e////////////////////////////////////////
78 #undef prefix_
79
80 \f
81 // Local Variables:
82 // mode: c++
83 // fill-column: 100
84 // c-file-style: "senf"
85 // indent-tabs-mode: nil
86 // ispell-local-dictionary: "american"
87 // End: