Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / Protocols / Raw / PacketSocketHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.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 /** \file
24     \brief PacketSocketHandle unit tests */
25
26 //#include "PacketSocketHandle.test.hh"
27 //#include "PacketSocketHandle.test.ih"
28
29 // Custom includes
30 #include <iostream>
31 #include <unistd.h>
32 #include "PacketSocketHandle.hh"
33
34 #include <senf/Utils/auto_unit_test.hh>
35 #include <boost/test/test_tools.hpp>
36
37 #define prefix_
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39
40 SENF_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         BOOST_CHECK( true );
46         return;
47     }
48
49     {
50         senf::PacketSocketHandle sock;
51
52         SENF_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("eth0")) );
53         senf::LLSocketAddress a;
54         SENF_CHECK_NO_THROW( sock.local(a) );
55         BOOST_CHECK_EQUAL( a.interface(), "eth0" );
56
57         // How am I supposed to test read and write .. grmpf ..
58
59         SENF_CHECK_NO_THROW( sock.protocol().mcAdd(
60                 "eth0", senf::MACAddress::from_string("01-02-03-04-05-06")) );
61         SENF_CHECK_NO_THROW( sock.protocol().mcDrop(
62                 "eth0", senf::MACAddress::from_string("01-02-03-04-05-06")) );
63
64         SENF_CHECK_NO_THROW( sock.protocol().promisc( "eth0", true) );
65         SENF_CHECK_NO_THROW( sock.protocol().promisc( "eth0", false));
66
67         SENF_CHECK_NO_THROW( sock.protocol().available() );
68         BOOST_CHECK( ! sock.eof() );
69     }
70 }
71
72 //-/////////////////////////////////////////////////////////////////////////////////////////////////
73 #undef prefix_
74
75 \f
76 // Local Variables:
77 // mode: c++
78 // fill-column: 100
79 // c-file-style: "senf"
80 // indent-tabs-mode: nil
81 // ispell-local-dictionary: "american"
82 // compile-command: "scons -u test"
83 // comment-column: 40
84 // End: