1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
// Copyright (C) 2011-2018 ycmd contributors
//
// This file is part of ycmd.
//
// ycmd 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.
//
// ycmd 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 ycmd. If not, see <http://www.gnu.org/licenses/>.
#include <gtest/gtest.h>
#include "Repository.h"
#include "Candidate.h"
#include "Result.h"
namespace YouCompleteMe {
class CandidateRepositoryTest : public ::testing::Test {
protected:
CandidateRepositoryTest()
: repo_( Repository< Candidate >::Instance() ) {
}
virtual void SetUp() {
repo_.ClearElements();
}
Repository< Candidate > &repo_;
};
TEST_F( CandidateRepositoryTest, Basic ) {
std::vector< std::string > inputs;
inputs.push_back( "foobar" );
std::vector< const Candidate * > candidates =
repo_.GetElements( std::move( inputs ) );
EXPECT_EQ( "foobar", candidates[ 0 ]->Text() );
}
TEST_F( CandidateRepositoryTest, TooLongCandidateSkipped ) {
std::vector< std::string > inputs;
inputs.push_back( std::string( 81, 'a' ) ); // this one is too long
inputs.push_back( std::string( 80, 'b' ) ); // this one is *just* right
std::vector< const Candidate * > candidates =
repo_.GetElements( std::move( inputs ) );
EXPECT_EQ( "", candidates[ 0 ]->Text() );
EXPECT_EQ( 'b', candidates[ 1 ]->Text()[ 0 ] );
}
TEST_F( CandidateRepositoryTest, UnicodeCandidates ) {
std::vector< std::string > inputs;
inputs.push_back( "fooδιακριτικός" );
inputs.push_back( "fooδιακός" );
std::vector< const Candidate * > candidates =
repo_.GetElements( std::move( inputs ) );
EXPECT_EQ( "fooδιακριτικός", candidates[ 0 ]->Text() );
EXPECT_EQ( "fooδιακός", candidates[ 1 ]->Text() );
}
TEST_F( CandidateRepositoryTest, NonPrintableCandidates ) {
std::vector< std::string > inputs;
inputs.push_back( "\x01\x05\x0a\x15" );
std::vector< const Candidate * > candidates =
repo_.GetElements( std::move( inputs ) );
EXPECT_EQ( "\x01\x05\x0a\x15", candidates[ 0 ]->Text() );
}
} // namespace YouCompleteMe
|