mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-07-03 14:14:11 +00:00
Add unit test for tag splitting
This commit is contained in:
parent
9f6bc67c06
commit
b6953eeaa1
3 changed files with 113 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
||||||
#include <boost/utility/string_ref.hpp>
|
#include <boost/utility/string_ref.hpp>
|
||||||
#include <boost/range/adaptor/transformed.hpp>
|
#include <boost/range/adaptor/transformed.hpp>
|
||||||
#include <boost/range/adaptor/filtered.hpp>
|
#include <boost/range/adaptor/filtered.hpp>
|
||||||
|
#include <ciso646>
|
||||||
|
|
||||||
namespace din {
|
namespace din {
|
||||||
std::vector<boost::string_ref> split_tags (const std::string& parCommaSeparatedList) {
|
std::vector<boost::string_ref> split_tags (const std::string& parCommaSeparatedList) {
|
||||||
|
|
|
@ -4,6 +4,8 @@ add_executable(${PROJECT_NAME}
|
||||||
${CMAKE_SOURCE_DIR}/src/main/damerau_levenshtein.c
|
${CMAKE_SOURCE_DIR}/src/main/damerau_levenshtein.c
|
||||||
${CMAKE_SOURCE_DIR}/src/main/utf8_ops.c
|
${CMAKE_SOURCE_DIR}/src/main/utf8_ops.c
|
||||||
test_damerau_levenshtein.cpp
|
test_damerau_levenshtein.cpp
|
||||||
|
${CMAKE_SOURCE_DIR}/src/tag/split_tags.cpp
|
||||||
|
test_tag_splitting.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(${PROJECT_NAME}
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
|
110
test/unit_cli/test_tag_splitting.cpp
Normal file
110
test/unit_cli/test_tag_splitting.cpp
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
/* Copyright 2015, 2016, Michele Santullo
|
||||||
|
* This file is part of "dindexer".
|
||||||
|
*
|
||||||
|
* "dindexer" 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* "dindexer" 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 "dindexer". If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <sstream>
|
||||||
|
#include <boost/lexical_cast.hpp>
|
||||||
|
#include "tag/split_tags.hpp"
|
||||||
|
|
||||||
|
TEST(cli_main, split_tags) {
|
||||||
|
using din::split_tags;
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = "tag1,tag2";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(2), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(2), tags.size());
|
||||||
|
EXPECT_EQ("tag1", tags[0]);
|
||||||
|
EXPECT_EQ("tag2", tags[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = " ";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_TRUE(tags.empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags;
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_TRUE(tags.empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = ",,,,,, ,,,, , , , ";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_TRUE(tags.empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = ",,,a, , ";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(1), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(1), tags.size());
|
||||||
|
EXPECT_EQ("a", tags[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = ",,,test1,,,DuckZ , King_DuckZ , ";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(3), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(3), tags.size());
|
||||||
|
EXPECT_EQ("test1", tags[0]);
|
||||||
|
EXPECT_EQ("DuckZ", tags[1]);
|
||||||
|
EXPECT_EQ("King_DuckZ", tags[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = "test1";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(1), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(1), tags.size());
|
||||||
|
EXPECT_EQ("test1", tags[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = " test1";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(1), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(1), tags.size());
|
||||||
|
EXPECT_EQ("test1", tags[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const std::string test_tags = "test1 ";
|
||||||
|
const auto tags = split_tags(test_tags);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(1), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(1), tags.size());
|
||||||
|
EXPECT_EQ("test1", tags[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const int count = 1500;
|
||||||
|
std::ostringstream oss;
|
||||||
|
for (int z = 0; z < count; ++z) {
|
||||||
|
oss << z << " , ";
|
||||||
|
}
|
||||||
|
const std::string data = oss.str();
|
||||||
|
const auto tags = split_tags(data);
|
||||||
|
EXPECT_EQ(static_cast<size_t>(count), tags.size());
|
||||||
|
ASSERT_GE(static_cast<size_t>(count), tags.size());
|
||||||
|
for (int z = 0; z < count; ++z) {
|
||||||
|
EXPECT_FALSE(tags[z].empty());
|
||||||
|
EXPECT_EQ(boost::lexical_cast<std::string>(z), tags[z]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue