1// Copyright 2012 The Kyua Authors.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9//   notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright
11//   notice, this list of conditions and the following disclaimer in the
12//   documentation and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors
14//   may be used to endorse or promote products derived from this software
15//   without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29#include "utils/config/exceptions.hpp"
30
31#include <cstring>
32
33#include <atf-c++.hpp>
34
35#include "utils/config/tree.ipp"
36
37namespace config = utils::config;
38namespace detail = utils::config::detail;
39
40
41ATF_TEST_CASE_WITHOUT_HEAD(error);
42ATF_TEST_CASE_BODY(error)
43{
44    const config::error e("Some text");
45    ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
46}
47
48
49ATF_TEST_CASE_WITHOUT_HEAD(bad_combination_error);
50ATF_TEST_CASE_BODY(bad_combination_error)
51{
52    detail::tree_key key;
53    key.push_back("first");
54    key.push_back("second");
55
56    const config::bad_combination_error e(key, "Failed to combine '%s'");
57    ATF_REQUIRE(std::strcmp("Failed to combine 'first.second'", e.what()) == 0);
58}
59
60
61ATF_TEST_CASE_WITHOUT_HEAD(invalid_key_error);
62ATF_TEST_CASE_BODY(invalid_key_error)
63{
64    const config::invalid_key_error e("Some text");
65    ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
66}
67
68
69ATF_TEST_CASE_WITHOUT_HEAD(invalid_key_value);
70ATF_TEST_CASE_BODY(invalid_key_value)
71{
72    detail::tree_key key;
73    key.push_back("1");
74    key.push_back("two");
75
76    const config::invalid_key_value e(key, "foo bar");
77    ATF_REQUIRE(std::strcmp("Invalid value for property '1.two': foo bar",
78                            e.what()) == 0);
79}
80
81
82ATF_TEST_CASE_WITHOUT_HEAD(syntax_error);
83ATF_TEST_CASE_BODY(syntax_error)
84{
85    const config::syntax_error e("Some text");
86    ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
87}
88
89
90ATF_TEST_CASE_WITHOUT_HEAD(unknown_key_error__default_message);
91ATF_TEST_CASE_BODY(unknown_key_error__default_message)
92{
93    detail::tree_key key;
94    key.push_back("1");
95    key.push_back("two");
96
97    const config::unknown_key_error e(key);
98    ATF_REQUIRE(std::strcmp("Unknown configuration property '1.two'",
99                            e.what()) == 0);
100}
101
102
103ATF_TEST_CASE_WITHOUT_HEAD(unknown_key_error__custom_message);
104ATF_TEST_CASE_BODY(unknown_key_error__custom_message)
105{
106    detail::tree_key key;
107    key.push_back("1");
108    key.push_back("two");
109
110    const config::unknown_key_error e(key, "The test '%s' string");
111    ATF_REQUIRE(std::strcmp("The test '1.two' string", e.what()) == 0);
112}
113
114
115ATF_TEST_CASE_WITHOUT_HEAD(value_error);
116ATF_TEST_CASE_BODY(value_error)
117{
118    const config::value_error e("Some text");
119    ATF_REQUIRE(std::strcmp("Some text", e.what()) == 0);
120}
121
122
123ATF_INIT_TEST_CASES(tcs)
124{
125    ATF_ADD_TEST_CASE(tcs, error);
126    ATF_ADD_TEST_CASE(tcs, bad_combination_error);
127    ATF_ADD_TEST_CASE(tcs, invalid_key_error);
128    ATF_ADD_TEST_CASE(tcs, invalid_key_value);
129    ATF_ADD_TEST_CASE(tcs, syntax_error);
130    ATF_ADD_TEST_CASE(tcs, unknown_key_error__default_message);
131    ATF_ADD_TEST_CASE(tcs, unknown_key_error__custom_message);
132    ATF_ADD_TEST_CASE(tcs, value_error);
133}
134