lumiera_/tests/library/util-sanitised-identifier-test.cpp
Ichthyostega 3fa4f02737 Library: new thread-wrapper implementation complete
- relocate some code into a dedicated translation unit to reduce #includes
- actually set the thread-ID (the old implementation had only a TODO at that point)
2023-09-26 02:32:48 +02:00

62 lines
2.2 KiB
C++

/*
UtilSanitizedIdentifier(Test) - remove non-standard-chars and punctuation
Copyright (C) Lumiera.org
2008, Hermann Vosseler <Ichthyostega@web.de>
This program 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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* *****************************************************/
/** @file util-sanitised-identifier-test.cpp
** unit test \ref UtilSanitizedIdentifier_test
*/
#include "lib/test/run.hpp"
#include "lib/test/test-helper.hpp"
#include "lib/util.hpp"
#include <iostream>
using std::cout;
namespace util {
namespace test {
class UtilSanitizedIdentifier_test : public Test
{
virtual void run (Arg)
{
CHECK (sanitise ( "Word") == "Word"_expect);
CHECK (sanitise ( "a Sentence") == "a_Sentence"_expect);
CHECK (sanitise ( "trailing Withespace\n \t") == "trailing_Withespace"_expect);
CHECK (sanitise ("with a \t lot\n of Whitespace") == "with_a_lot_of_Whitespace"_expect);
CHECK (sanitise ( "@with\".\'much ($punctuation)[]!") == "@with.much_($punctuation)"_expect);
CHECK (sanitise ( "§&Ω%€ leading garbage") == "leading_garbage"_expect);
CHECK (sanitise ( "mixed Ω garbage") == "mixed_garbage"_expect);
CHECK (sanitise ( "Bääääh!!") == "Bh"_expect);
CHECK (sanitise ( "§&Ω%€") == ""_expect);
}
};
LAUNCHER (UtilSanitizedIdentifier_test, "unit common");
}} // namespace util::test