switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Socket / FileHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief FileHandle unit tests */
30
31 //#include "FileHandle.test.hh"
32 //#include "FileHandle.test.ih"
33
34 // Custom includes
35 #include <iostream>
36 #include <fcntl.h>
37 #include <unistd.h>
38 #include "FileHandle.hh"
39
40 #include <senf/Utils/auto_unit_test.hh>
41 #include <boost/test/test_tools.hpp>
42
43 #define prefix_
44 //-/////////////////////////////////////////////////////////////////////////////////////////////////
45
46 namespace {
47     class FHandle : public senf::FileHandle
48     {
49     public:
50         FHandle() {}
51         FHandle(int fd)
52             : senf::FileHandle(std::auto_ptr<senf::FileBody>(
53                                           new senf::FileBody(fd))) {}
54         FHandle(std::string const & name)
55             : senf::FileHandle(std::auto_ptr<senf::FileBody>(
56                                           new senf::FileBody()))
57             {
58                 int rv = ::open(name.c_str(),O_RDWR|O_NONBLOCK) ;
59                 if (rv<0)
60                     throw senf::SystemException();
61                 fd(rv);
62             }
63     };
64 }
65
66 SENF_AUTO_UNIT_TEST(fileHandle)
67 {
68     try {
69         {
70             FHandle fh("/dev/null");
71             BOOST_CHECK(fh.fd() != -1);
72             BOOST_CHECK(fh.valid());
73             BOOST_CHECK(fh);
74             BOOST_CHECK(!!fh);
75
76             FHandle fh2;
77             BOOST_CHECK( ! fh2.valid() );
78             fh2 = fh;
79             BOOST_CHECK_EQUAL(fh.fd(), fh2.fd());
80
81             BOOST_CHECK(fh.writeable());
82             SENF_CHECK_NO_THROW(fh.close());
83             BOOST_CHECK_THROW(fh.close(),senf::SystemException);
84             SENF_CHECK_NO_THROW(fh.terminate());
85         }
86
87         {
88             FHandle fh("/dev/zero");
89             BOOST_CHECK(fh.readable());
90         }
91
92         {
93             int fds[2];
94             BOOST_REQUIRE(pipe(fds) == 0);
95
96             FHandle fh(fds[0]);
97             BOOST_CHECK(!fh.readable());
98
99             // Set non-blocking IO and fill the pipe buffer
100             int flags = fcntl(fds[1],F_GETFL,0);
101             if (flags == -1)
102                 BOOST_FAIL(strerror(errno));
103             if (fcntl(fds[1],F_SETFL,flags|O_NONBLOCK) == -1)
104                 BOOST_FAIL(strerror(errno));
105             char buffer[1024];
106             ::memset(buffer, 0, sizeof(buffer));
107             while (write(fds[1],buffer,1024) == 1024) ;
108
109             FHandle fh2(fds[1]);
110             BOOST_CHECK(!fh.writeable());
111         }
112     }
113     catch (std::exception const & ex) {
114         BOOST_FAIL(ex.what());
115     }
116 }
117
118 //-/////////////////////////////////////////////////////////////////////////////////////////////////
119 #undef prefix_
120
121 \f
122 // Local Variables:
123 // mode: c++
124 // fill-column: 100
125 // c-file-style: "senf"
126 // indent-tabs-mode: nil
127 // ispell-local-dictionary: "american"
128 // compile-command: "scons -u test"
129 // comment-column: 40
130 // End: