xref: /freebsd/contrib/lutok/exceptions_test.cpp (revision c697fb7f7cc9bedc5beee44d35b771c4e87b335a)
1*c697fb7fSBrooks Davis // Copyright 2011 Google Inc.
2*c697fb7fSBrooks Davis // All rights reserved.
3*c697fb7fSBrooks Davis //
4*c697fb7fSBrooks Davis // Redistribution and use in source and binary forms, with or without
5*c697fb7fSBrooks Davis // modification, are permitted provided that the following conditions are
6*c697fb7fSBrooks Davis // met:
7*c697fb7fSBrooks Davis //
8*c697fb7fSBrooks Davis // * Redistributions of source code must retain the above copyright
9*c697fb7fSBrooks Davis //   notice, this list of conditions and the following disclaimer.
10*c697fb7fSBrooks Davis // * Redistributions in binary form must reproduce the above copyright
11*c697fb7fSBrooks Davis //   notice, this list of conditions and the following disclaimer in the
12*c697fb7fSBrooks Davis //   documentation and/or other materials provided with the distribution.
13*c697fb7fSBrooks Davis // * Neither the name of Google Inc. nor the names of its contributors
14*c697fb7fSBrooks Davis //   may be used to endorse or promote products derived from this software
15*c697fb7fSBrooks Davis //   without specific prior written permission.
16*c697fb7fSBrooks Davis //
17*c697fb7fSBrooks Davis // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*c697fb7fSBrooks Davis // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*c697fb7fSBrooks Davis // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*c697fb7fSBrooks Davis // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*c697fb7fSBrooks Davis // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*c697fb7fSBrooks Davis // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*c697fb7fSBrooks Davis // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*c697fb7fSBrooks Davis // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*c697fb7fSBrooks Davis // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*c697fb7fSBrooks Davis // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*c697fb7fSBrooks Davis // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*c697fb7fSBrooks Davis 
29*c697fb7fSBrooks Davis #include "exceptions.hpp"
30*c697fb7fSBrooks Davis 
31*c697fb7fSBrooks Davis #include <cstring>
32*c697fb7fSBrooks Davis 
33*c697fb7fSBrooks Davis #include <atf-c++.hpp>
34*c697fb7fSBrooks Davis 
35*c697fb7fSBrooks Davis #include "state.ipp"
36*c697fb7fSBrooks Davis 
37*c697fb7fSBrooks Davis 
38*c697fb7fSBrooks Davis ATF_TEST_CASE_WITHOUT_HEAD(error);
ATF_TEST_CASE_BODY(error)39*c697fb7fSBrooks Davis ATF_TEST_CASE_BODY(error)
40*c697fb7fSBrooks Davis {
41*c697fb7fSBrooks Davis     const lutok::error e("Some text");
42*c697fb7fSBrooks Davis     ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
43*c697fb7fSBrooks Davis }
44*c697fb7fSBrooks Davis 
45*c697fb7fSBrooks Davis 
46*c697fb7fSBrooks Davis ATF_TEST_CASE_WITHOUT_HEAD(api_error__explicit);
ATF_TEST_CASE_BODY(api_error__explicit)47*c697fb7fSBrooks Davis ATF_TEST_CASE_BODY(api_error__explicit)
48*c697fb7fSBrooks Davis {
49*c697fb7fSBrooks Davis     const lutok::api_error e("some_function", "Some text");
50*c697fb7fSBrooks Davis     ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
51*c697fb7fSBrooks Davis     ATF_REQUIRE_EQ("some_function", e.api_function());
52*c697fb7fSBrooks Davis }
53*c697fb7fSBrooks Davis 
54*c697fb7fSBrooks Davis 
55*c697fb7fSBrooks Davis ATF_TEST_CASE_WITHOUT_HEAD(api_error__from_stack);
ATF_TEST_CASE_BODY(api_error__from_stack)56*c697fb7fSBrooks Davis ATF_TEST_CASE_BODY(api_error__from_stack)
57*c697fb7fSBrooks Davis {
58*c697fb7fSBrooks Davis     lutok::state state;
59*c697fb7fSBrooks Davis     state.push_integer(123);
60*c697fb7fSBrooks Davis     state.push_string("The error message");
61*c697fb7fSBrooks Davis     const lutok::api_error e = lutok::api_error::from_stack(state,
62*c697fb7fSBrooks Davis                                                             "the_function");
63*c697fb7fSBrooks Davis     ATF_REQUIRE_EQ(1, state.get_top());
64*c697fb7fSBrooks Davis     ATF_REQUIRE_EQ(123, state.to_integer(-1));
65*c697fb7fSBrooks Davis     state.pop(1);
66*c697fb7fSBrooks Davis     ATF_REQUIRE(std::strcmp("The error message", e.what()) == 0);
67*c697fb7fSBrooks Davis     ATF_REQUIRE_EQ("the_function", e.api_function());
68*c697fb7fSBrooks Davis }
69*c697fb7fSBrooks Davis 
70*c697fb7fSBrooks Davis 
71*c697fb7fSBrooks Davis ATF_TEST_CASE_WITHOUT_HEAD(file_not_found_error);
ATF_TEST_CASE_BODY(file_not_found_error)72*c697fb7fSBrooks Davis ATF_TEST_CASE_BODY(file_not_found_error)
73*c697fb7fSBrooks Davis {
74*c697fb7fSBrooks Davis     const lutok::file_not_found_error e("missing-file");
75*c697fb7fSBrooks Davis     ATF_REQUIRE(std::strcmp("File 'missing-file' not found", e.what()) == 0);
76*c697fb7fSBrooks Davis     ATF_REQUIRE_EQ("missing-file", e.filename());
77*c697fb7fSBrooks Davis }
78*c697fb7fSBrooks Davis 
79*c697fb7fSBrooks Davis 
ATF_INIT_TEST_CASES(tcs)80*c697fb7fSBrooks Davis ATF_INIT_TEST_CASES(tcs)
81*c697fb7fSBrooks Davis {
82*c697fb7fSBrooks Davis     ATF_ADD_TEST_CASE(tcs, error);
83*c697fb7fSBrooks Davis 
84*c697fb7fSBrooks Davis     ATF_ADD_TEST_CASE(tcs, api_error__explicit);
85*c697fb7fSBrooks Davis     ATF_ADD_TEST_CASE(tcs, api_error__from_stack);
86*c697fb7fSBrooks Davis 
87*c697fb7fSBrooks Davis     ATF_ADD_TEST_CASE(tcs, file_not_found_error);
88*c697fb7fSBrooks Davis }
89