31593eb760e267be1a203263789cb1f14c7e3a73
[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 // 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 "../../../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         BOOST_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("eth0")) );
52         senf::LLSocketAddress a;
53         BOOST_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         BOOST_CHECK_NO_THROW( sock.protocol().mcAdd(
59                                   "eth0",senf::MACAddress::from_string("01-02-03-04-05-06")) );
60         BOOST_CHECK_NO_THROW( sock.protocol().mcDrop(
61                                   "eth0",senf::MACAddress::from_string("01-02-03-04-05-06")) );
62
63         BOOST_CHECK_NO_THROW( sock.protocol().available() );
64         BOOST_CHECK( ! sock.eof() );
65     }
66 }
67
68 ///////////////////////////////cc.e////////////////////////////////////////
69 #undef prefix_
70
71 \f
72 // Local Variables:
73 // mode: c++
74 // fill-column: 100
75 // c-file-style: "senf"
76 // indent-tabs-mode: nil
77 // ispell-local-dictionary: "american"
78 // compile-command: "scons -u test"
79 // comment-column: 40
80 // End: