forked from teamnwah/openmw-tes3coop
UnitTests: add tests for KeywordSearch conflict resolution
This commit is contained in:
parent
9d07edda13
commit
1b302b750c
2 changed files with 49 additions and 0 deletions
|
@ -5,6 +5,7 @@ if (GTEST_FOUND)
|
|||
|
||||
file(GLOB UNITTEST_SRC_FILES
|
||||
components/misc/test_*.cpp
|
||||
mwdialogue/test_*.cpp
|
||||
)
|
||||
|
||||
source_group(apps\\openmw_test_suite FILES openmw_test_suite.cpp ${UNITTEST_SRC_FILES})
|
||||
|
|
48
apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp
Normal file
48
apps/openmw_test_suite/mwdialogue/test_keywordsearch.cpp
Normal file
|
@ -0,0 +1,48 @@
|
|||
#include <gtest/gtest.h>
|
||||
#include "apps/openmw/mwdialogue/keywordsearch.hpp"
|
||||
|
||||
struct KeywordSearchTest : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
virtual void SetUp()
|
||||
{
|
||||
}
|
||||
|
||||
virtual void TearDown()
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
TEST_F(KeywordSearchTest, keyword_test_conflict_resolution)
|
||||
{
|
||||
// test to make sure the longest keyword in a chain of conflicting keywords gets chosen
|
||||
MWDialogue::KeywordSearch<std::string, int> search;
|
||||
search.seed("foo bar", 0);
|
||||
search.seed("bar lock", 0);
|
||||
search.seed("lock switch", 0);
|
||||
|
||||
std::string text = "foo bar lock switch";
|
||||
|
||||
std::vector<MWDialogue::KeywordSearch<std::string, int>::Match> matches;
|
||||
search.highlightKeywords(text.begin(), text.end(), matches);
|
||||
|
||||
// Should contain: "foo bar", "lock switch"
|
||||
ASSERT_TRUE (matches.size() == 2);
|
||||
ASSERT_TRUE (std::string(matches.front().mBeg, matches.front().mEnd) == "foo bar");
|
||||
ASSERT_TRUE (std::string(matches.rbegin()->mBeg, matches.rbegin()->mEnd) == "lock switch");
|
||||
}
|
||||
|
||||
TEST_F(KeywordSearchTest, keyword_test_conflict_resolution2)
|
||||
{
|
||||
MWDialogue::KeywordSearch<std::string, int> search;
|
||||
search.seed("the dwemer", 0);
|
||||
search.seed("dwemer language", 0);
|
||||
|
||||
std::string text = "the dwemer language";
|
||||
|
||||
std::vector<MWDialogue::KeywordSearch<std::string, int>::Match> matches;
|
||||
search.highlightKeywords(text.begin(), text.end(), matches);
|
||||
|
||||
ASSERT_TRUE (matches.size() == 1);
|
||||
ASSERT_TRUE (std::string(matches.front().mBeg, matches.front().mEnd) == "dwemer language");
|
||||
}
|
Loading…
Reference in a new issue