/*************************************************************************** test_stringutils.h -------------------- begin : Jun 2020 copyright : (C) 2020 by Ivan Ivanov email : ivan@opengis.ch ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #define CATCH_CONFIG_MAIN #include "utils/stringutils.h" #include "catch2.h" TEST_CASE( "StringUtils" ) { SECTION( "InsertLinks" ) { REQUIRE( StringUtils::insertLinks( QStringLiteral( "http://osm.org/" ) ) == QStringLiteral( "http://osm.org/" ) ); REQUIRE( StringUtils::insertLinks( QStringLiteral( "https://osm.org/" ) ) == QStringLiteral( "https://osm.org/" ) ); REQUIRE( StringUtils::insertLinks( QStringLiteral( "before https://osm.org/ after" ) ) == QStringLiteral( "before https://osm.org/ after" ) ); REQUIRE( StringUtils::insertLinks( QStringLiteral( "before https://osm.org/path?resource=;or=this%20one after" ) ) == QStringLiteral( "before https://osm.org/path?resource=;or=this%20one after" ) ); } SECTION( "FuzzyMatch" ) { REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "Quercus rubra" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "quercus r" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "Pinus nigra" ) == false ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "Quercus" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "qUERCUS" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "ERcU" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "rubra" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "Rubra" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "bra" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra forma variegata", "rubra varieg" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra (forma variegata)", "quercus forma" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "q r" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "q r" ) == true ); REQUIRE( StringUtils::fuzzyMatch( "Quercus rubra", "q ubra" ) == false ); } }