/* * Copyright (c) 2013-2014, Roland Bock * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SQLPP_MOCK_DB_H #define SQLPP_MOCK_DB_H #include #include #include template struct MockDbT: public sqlpp::connection { using _traits = ::sqlpp::make_traits<::sqlpp::no_value_t, ::sqlpp::tag_if<::sqlpp::tag::enforce_null_result_treatment, enforceNullResultTreatment> >; struct _serializer_context_t { std::ostringstream _os; _serializer_context_t() = default; _serializer_context_t(const _serializer_context_t& rhs) { _os << rhs._os.str(); } std::string str() const { return _os.str(); } void reset() { _os.str(""); } template std::ostream& operator<<(T t) { return _os << t; } static std::string escape(std::string arg) { return sqlpp::serializer_context_t::escape(arg); } }; using _interpreter_context_t = _serializer_context_t; _serializer_context_t get_serializer_context() { return {}; } template static _serializer_context_t& _serialize_interpretable(const T& t, _serializer_context_t& context) { sqlpp::serialize(t, context); return context; } template static _serializer_context_t& _interpret_interpretable(const T& t, _interpreter_context_t& context) { sqlpp::serialize(t, context); return context; } class result_t { public: constexpr bool operator==(const result_t& rhs) const { return true; } template void next(ResultRow& result_row) { result_row._invalidate(); }; }; // Directly executed statements start here template auto operator() (const T& t) -> decltype(t._run(*this)) { return t._run(*this); } template size_t insert(const Insert& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return 0; } template size_t update(const Update& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return 0; } template size_t remove(const Remove& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return 0; } template result_t select(const Select& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return {}; } // Prepared statements start here using _prepared_statement_t = std::nullptr_t; template auto prepare(const T& t) -> decltype(t._prepare(*this)) { return t._prepare(*this); } template _prepared_statement_t prepare_insert(Insert& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return nullptr; } template size_t run_prepared_insert(const PreparedInsert& x) { return 0; } template _prepared_statement_t prepare_select(Select& x) { _serializer_context_t context; ::sqlpp::serialize(x, context); return nullptr; } template result_t run_prepared_select(PreparedSelect& x) { return {}; } }; using MockDb = MockDbT; using EnforceDb = MockDbT; #endif