| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /***************************************************************************
- 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( "<a href=\"http://osm.org/\">http://osm.org/</a>" ) );
- REQUIRE( StringUtils::insertLinks( QStringLiteral( "https://osm.org/" ) ) == QStringLiteral( "<a href=\"https://osm.org/\">https://osm.org/</a>" ) );
- REQUIRE( StringUtils::insertLinks( QStringLiteral( "before https://osm.org/ after" ) ) == QStringLiteral( "before <a href=\"https://osm.org/\">https://osm.org/</a> after" ) );
- REQUIRE( StringUtils::insertLinks( QStringLiteral( "before https://osm.org/path?resource=;or=this%20one after" ) ) == QStringLiteral( "before <a href=\"https://osm.org/path?resource=;or=this%20one\">https://osm.org/path?resource=;or=this%20one</a> 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 );
- }
- }
|