/* FormatCOUT(Test) - validate automatic string conversion in output Copyright (C) 2016, Hermann Vosseler   **Lumiera** is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License as published by the   Free Software Foundation; either version 2 of the License, or (at your   option) any later version. See the file COPYING for further details. * *****************************************************************/ /** @file format-cout-test.cpp ** unit test \ref FormatCOUT_test */ #include "lib/test/run.hpp" #include "lib/p.hpp" #include "lib/diff/gen-node.hpp" #include "lib/meta/util.hpp" #include "lib/meta/trait.hpp" #include "lib/format-cout.hpp" #include using lib::P; using lib::makeP; using lib::diff::GenNode; using std::string; namespace util { namespace test { namespace { // test fixture /** opaque class without string conversion */ class Reticent { uint neigh_ = 42; }; using lib::meta::is_basically; using lib::meta::is_StringLike; using lib::meta::can_lexical2string; using lib::meta::can_convertToString; using lib::meta::use_StringConversion4Stream; template using BasicallyString = is_basically; template using BasicallyCString = std::is_convertible; #define SHOW_CHECK(_EXPR_) cout << STRINGIFY(_EXPR_) << "\t : " << (_EXPR_::value? "Yes":"No") << endl; #define ANALYSE(_TYPE_) \ cout << "Type: " STRINGIFY(_TYPE_) " ......"<); \ SHOW_CHECK (BasicallyString<_TYPE_>); \ SHOW_CHECK (BasicallyCString<_TYPE_>); \ SHOW_CHECK (std::is_arithmetic<_TYPE_>); \ SHOW_CHECK (can_lexical2string<_TYPE_>); \ SHOW_CHECK (can_convertToString<_TYPE_>); \ SHOW_CHECK (use_StringConversion4Stream<_TYPE_>); void showTraits() { using CharLit = decltype("literal"); using CharPtr = const char*; using StringPtr = string *; using StringRef = string &; using StringRRef = string &&; using StrConstRef = string const&; using GenNodePtr = GenNode*; using GenNodeRef = GenNode&; using GenNodeRRef = GenNode&&; ANALYSE (int); ANALYSE (char); ANALYSE (double); ANALYSE (int64_t); ANALYSE (string); ANALYSE (StringPtr); ANALYSE (StringRef); ANALYSE (StringRRef); ANALYSE (StrConstRef); ANALYSE (CharLit); ANALYSE (CharPtr) ANALYSE (Reticent) ANALYSE (P) ANALYSE (GenNode) ANALYSE (GenNodePtr) ANALYSE (GenNodeRef) ANALYSE (GenNodeRRef) ANALYSE (P) cout << "───────────────────────────╼━━━━━━━━━━╾───────────────────────────"<` in this category, which allows us * at least to show a type name as fallback * - distill an essential version of `enable_if`, which can be inlined. * This allowed us to get rid of `boost::enable_if` finally. * - build a sensible `operator string()` for our `lib::P` based on this * - and _finally_, to come up with a templated version of the `ostream` * inserter `operator<<`, which does not cause too much havoc when * used by default. The greatest challenge here is to avoid ambiguous * overloads, yet also to deal with references, `void` and arrays. * * @see format-cout.hpp * @see FormatHelper_test */ class FormatCOUT_test : public Test { void run (Arg) { showTraits(); auto silent = makeP(); auto chatty = makeP("Hui", "Buh"); cout << "smart-ptr, no string conv..." << silent <