NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Socket / FileHandle.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 "FileHandle.test.hh"
26 //#include "FileHandle.test.ih"
27
28 // Custom includes
29 #include <iostream>
30 #include <fcntl.h>
31 #include <unistd.h>
32 #include "FileHandle.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 namespace {
41     class FHandle : public senf::FileHandle
42     {
43     public:
44         FHandle() {}
45         FHandle(int fd)
46             : senf::FileHandle(std::auto_ptr<senf::FileBody>(
47                                           new senf::FileBody(fd))) {}
48         FHandle(std::string const & name)
49             : senf::FileHandle(std::auto_ptr<senf::FileBody>(
50                                           new senf::FileBody()))
51             {
52                 int rv = ::open(name.c_str(),O_RDWR|O_NONBLOCK) ;
53                 if (rv<0)
54                     senf::throwErrno();
55                 fd(rv);
56             }
57     };
58 }
59
60 BOOST_AUTO_UNIT_TEST(fileHandle)
61 {
62     try {
63         {
64             FHandle fh("/dev/null");
65             BOOST_CHECK(fh.fd() != -1);
66             BOOST_CHECK(fh.valid());
67             BOOST_CHECK(fh);
68             BOOST_CHECK(!!fh);
69
70             FHandle fh2;
71             BOOST_CHECK( ! fh2.valid() );
72             fh2 = fh;
73             BOOST_CHECK_EQUAL(fh.fd(), fh2.fd());
74
75             BOOST_CHECK(fh.writeable());
76             BOOST_CHECK_NO_THROW(fh.close());
77             BOOST_CHECK_THROW(fh.close(),senf::SystemException);
78             BOOST_CHECK_NO_THROW(fh.terminate());
79         }
80
81         {
82             FHandle fh("/dev/zero");
83             BOOST_CHECK(fh.readable());
84         }
85
86         {
87             int fds[2];
88             BOOST_REQUIRE(pipe(fds) == 0);
89
90             FHandle fh(fds[0]);
91             BOOST_CHECK(!fh.readable());
92
93             // Set non-blocking IO and fill the pipe buffer
94             int flags = fcntl(fds[1],F_GETFL,0);
95             if (flags == -1)
96                 BOOST_FAIL(strerror(errno));
97             if (fcntl(fds[1],F_SETFL,flags|O_NONBLOCK) == -1)
98                 BOOST_FAIL(strerror(errno));
99             char buffer[1024];
100             ::memset(buffer, 0, sizeof(buffer));
101             while (write(fds[1],buffer,1024) == 1024) ;
102
103             FHandle fh2(fds[1]);
104             BOOST_CHECK(!fh.writeable());
105         }
106     }
107     catch (std::exception const & ex) {
108         BOOST_FAIL(ex.what());
109     }
110 }
111
112 ///////////////////////////////cc.e////////////////////////////////////////
113 #undef prefix_
114
115 \f
116 // Local Variables:
117 // mode: c++
118 // fill-column: 100
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // comment-column: 40
124 // End: