78d547612cbaa9eea40061c68ab7e849a8f67761
[senf.git] / 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 "../../../Utils/auto_unit_test.hh"
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         SENF_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("eth0")) );
52         senf::LLSocketAddress a;
53         SENF_CHECK_NO_THROW( sock.local(a) );
54         BOOST_CHECK_EQUAL( a.interface(), "eth0" );
55
56         // How am I supposed to test read and write .. grmpf ..
57
58         SENF_CHECK_NO_THROW( sock.protocol().mcAdd(
59                 "eth0", senf::MACAddress::from_string("01-02-03-04-05-06")) );
60         SENF_CHECK_NO_THROW( sock.protocol().mcDrop(
61                 "eth0", senf::MACAddress::from_string("01-02-03-04-05-06")) );
62
63         SENF_CHECK_NO_THROW( sock.protocol().promisc( "eth0", true) );
64         SENF_CHECK_NO_THROW( sock.protocol().promisc( "eth0", false));
65                 
66         SENF_CHECK_NO_THROW( sock.protocol().available() );
67         BOOST_CHECK( ! sock.eof() );
68     }
69 }
70
71 ///////////////////////////////cc.e////////////////////////////////////////
72 #undef prefix_
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // comment-column: 40
83 // End: