Socket/Protocols/INet: Change INet4Address to use a boost::array for storage
[senf.git] / Socket / FileHandle.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 "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 <boost/test/auto_unit_test.hpp>
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                     throw senf::SystemException(errno);
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             while (write(fds[1],buffer,1024) == 1024) ;
101
102             FHandle fh2(fds[1]);
103             BOOST_CHECK(!fh.writeable());
104         }
105     }
106     catch (std::exception const & ex) {
107         BOOST_FAIL(ex.what());
108     }
109 }
110
111 ///////////////////////////////cc.e////////////////////////////////////////
112 #undef prefix_
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // c-file-style: "senf"
119 // indent-tabs-mode: nil
120 // ispell-local-dictionary: "american"
121 // compile-command: "scons -u test"
122 // comment-column: 40
123 // End: