switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / Exception.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
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 Exception unit tests */
30
31 //#include "Exception.test.hh"
32 //#include "Exception.test.ih"
33
34 // Custom includes
35 #include "Exception.hh"
36 #include <boost/format.hpp>
37 #include <errno.h>
38
39 #include <senf/Utils/auto_unit_test.hh>
40 #include <boost/test/test_tools.hpp>
41
42 #define prefix_
43 //-/////////////////////////////////////////////////////////////////////////////////////////////////
44
45 SENF_AUTO_UNIT_TEST(wrapException)
46 {
47     bool bad_cast (false);
48
49     try {
50         try {
51             try {
52                 try {
53                     try {
54                         throw std::bad_cast();
55                     }
56                     SENF_WRAP_EXC(std::bad_cast)
57                 }
58                 SENF_WRAP_EXC(std::bad_cast)
59             }
60             catch (senf::ExceptionMixin & ex) {
61                 ex << "\nspecial exception";
62                 throw;
63             }
64         }
65         catch (std::exception const & ex) {
66 #ifdef SENF_DEBUG
67             BOOST_CHECK( std::string(ex.what()).find("-- \n") != std::string::npos );
68 #endif
69             BOOST_CHECK( std::string(ex.what()).find("special exception") != std::string::npos );
70             throw;
71         }
72     }
73     catch (std::bad_cast &) {
74         bad_cast = true;
75     }
76     BOOST_CHECK( bad_cast );
77 }
78
79 SENF_AUTO_UNIT_TEST(errnoException)
80 {
81     try {
82         try {
83             throw senf::SystemException("::open()", ENOENT) << "\nmore";
84         }
85         catch(senf::Exception & e) {
86             e << "\nx=" << 1 << boost::format("\ny=%d") % 2;
87             throw;
88         }
89     }
90     catch (senf::SystemException & e) {
91         BOOST_CHECK_EQUAL( e.errorNumber(), ENOENT );
92         BOOST_CHECK_EQUAL( e.errorString(), "No such file or directory" );
93         std::string what (e.what());
94         std::string::size_type pos (what.find("-- \n"));
95         if (pos != std::string::npos)
96             what = std::string(what, pos+4);
97         BOOST_CHECK_EQUAL( what, "[No such file or directory] ::open()\nmore\nx=1\ny=2" );
98     }
99 }
100
101 //-/////////////////////////////////////////////////////////////////////////////////////////////////
102 #undef prefix_
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // comment-column: 40
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -u test"
113 // End: