YouCompleteMe/cpp/tests/Completer_test.cpp

224 lines
5.7 KiB
C++
Raw Normal View History

2012-04-15 23:28:46 -04:00
// Copyright (C) 2011, 2012 Strahinja Val Markovic <val@markovic.io>
2012-04-15 19:57:10 -04:00
//
// This file is part of YouCompleteMe.
//
// YouCompleteMe 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.
//
// YouCompleteMe 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 YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "Completer.h"
#include "Utils.h"
#include <boost/python.hpp>
using ::testing::ElementsAre;
using ::testing::WhenSorted;
namespace YouCompleteMe
{
namespace
{
std::vector<std::string> ToStringVector( const boost::python::list &pylist )
{
std::vector<std::string> values;
for (int i = 0; i < boost::python::len( pylist ); ++i)
{
values.push_back(
boost::python::extract< std::string >( pylist[ i ] ) );
}
return values;
}
2012-04-15 23:10:39 -04:00
Pylist Candidates( const std::string &a,
const std::string &b = std::string(),
const std::string &c = std::string(),
const std::string &d = std::string(),
const std::string &e = std::string(),
const std::string &f = std::string(),
const std::string &g = std::string(),
const std::string &h = std::string(),
const std::string &i = std::string() )
{
Pylist candidates;
candidates.append( a );
if ( !b.empty() )
candidates.append( b );
if ( !c.empty() )
candidates.append( c );
if ( !d.empty() )
candidates.append( d );
if ( !e.empty() )
candidates.append( e );
if ( !f.empty() )
candidates.append( f );
if ( !g.empty() )
candidates.append( g );
if ( !h.empty() )
candidates.append( h );
if ( !i.empty() )
candidates.append( i );
return candidates;
}
2012-04-15 19:57:10 -04:00
} // unnamed namespace
class CompleterTest : public ::testing::Test
{
protected:
virtual void SetUp()
{
Py_Initialize();
}
};
TEST_F( CompleterTest, OneCandidate )
{
Pylist results;
Completer( Candidates( "foobar" ) ).CandidatesForQuery( "fbr", results );
2012-04-15 19:57:10 -04:00
EXPECT_THAT( ToStringVector( results ), ElementsAre( "foobar" ) );
}
TEST_F( CompleterTest, ManyCandidateSimple )
{
Pylist results;
2012-04-15 23:10:39 -04:00
Completer( Candidates(
"foobar",
"foobartest",
"Foobartest" ) ).CandidatesForQuery( "fbr", results );
2012-04-15 19:57:10 -04:00
EXPECT_THAT( ToStringVector( results ),
WhenSorted( ElementsAre( "Foobartest",
"foobar",
"foobartest" ) ) );
}
TEST_F( CompleterTest, FirstCharSameAsQueryWins )
{
Pylist results;
2012-04-15 23:10:39 -04:00
Completer( Candidates(
"foobar",
"afoobar" ) ).CandidatesForQuery( "fbr", results );
2012-04-15 19:57:10 -04:00
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "foobar",
"afoobar" ) );
}
TEST_F( CompleterTest, CompleteMatchForWordBoundaryCharsWins )
{
2012-04-15 23:10:39 -04:00
Pylist results;
Completer( Candidates(
"FooBarQux",
"FBaqux" ) ).CandidatesForQuery( "fbq", results );
2012-04-15 19:57:10 -04:00
2012-04-15 23:10:39 -04:00
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "FooBarQux",
"FBaqux" ) );
2012-04-15 19:57:10 -04:00
2012-04-15 23:10:39 -04:00
Pylist results2;
Completer( Candidates(
"CompleterTest",
"CompleteMatchForWordBoundaryCharsWins"
) ).CandidatesForQuery( "ct", results2 );
2012-04-15 23:10:39 -04:00
EXPECT_THAT( ToStringVector( results2 ),
ElementsAre( "CompleterTest",
"CompleteMatchForWordBoundaryCharsWins" ) );
Pylist results3;
Completer( Candidates(
"FooBar",
"FooBarRux" ) ).CandidatesForQuery( "fbr", results3 );
2012-04-15 23:10:39 -04:00
EXPECT_THAT( ToStringVector( results3 ),
ElementsAre( "FooBarRux",
"FooBar" ) );
}
TEST_F( CompleterTest, RatioUtilizationTieBreak )
{
2012-04-15 19:57:10 -04:00
Pylist results;
2012-04-15 23:10:39 -04:00
Completer( Candidates(
"FooBarQux",
"FooBarQuxZaa" ) ).CandidatesForQuery( "fbq", results );
2012-04-15 19:57:10 -04:00
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "FooBarQux",
2012-04-15 23:10:39 -04:00
"FooBarQuxZaa" ) );
Pylist results2;
Completer( Candidates(
"FooBar",
"FooBarRux" ) ).CandidatesForQuery( "fba", results2 );
EXPECT_THAT( ToStringVector( results2 ),
ElementsAre( "FooBar",
"FooBarRux" ) );
2012-04-15 23:10:39 -04:00
}
TEST_F( CompleterTest, QueryPrefixOfCandidateWins )
{
Pylist results;
Completer( Candidates(
"foobar",
"fbaroo" ) ).CandidatesForQuery( "foo", results );
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "foobar",
"fbaroo" ) );
}
2012-04-15 23:10:39 -04:00
TEST_F( CompleterTest, ShorterCandidateWins )
{
Pylist results;
Completer( Candidates(
"FooBarQux",
"FaBarQux" ) ).CandidatesForQuery( "fbq", results );
2012-04-15 23:10:39 -04:00
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "FaBarQux",
"FooBarQux" ) );
Pylist results2;
Completer( Candidates(
"CompleterT",
"CompleterTest" ) ).CandidatesForQuery( "co", results2 );
2012-04-15 23:10:39 -04:00
EXPECT_THAT( ToStringVector( results2 ),
ElementsAre( "CompleterT",
"CompleterTest" ) );
2012-04-15 19:57:10 -04:00
}
TEST_F( CompleterTest, SameLowercaseCandidateWins )
{
Pylist results;
Completer( Candidates(
"foobar",
"Foobar" ) ).CandidatesForQuery( "foo", results );
EXPECT_THAT( ToStringVector( results ),
ElementsAre( "foobar",
"Foobar" ) );
}
2012-04-29 22:56:16 -04:00
// TODO: tests for filepath and filetype candidate storing
2012-04-15 19:57:10 -04:00
} // namespace YouCompleteMe