blob: 5250b53851b1be8950102727ce3cd11d99486010 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "mock_connection.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <string>
using ::testing::_;
using ::testing::DoAll;
using ::testing::Return;
using ::testing::ReturnArg;
using ::testing::StrictMock;
using ::testing::WithArg;
using ::testing::ElementsAre;
namespace gapic {
namespace test {
namespace {
const std::string testString = "ABCDE";
class ConnectionTest : public ::testing::Test {
protected:
virtual void SetUp() {
mConnection.reset(new MockConnection());
}
std::unique_ptr<MockConnection> mConnection;
};
void pushBytes(std::vector<uint8_t>* buf, const std::vector<uint8_t>& v) {
buf->insert(buf->end(), v.begin(), v.end());
}
void pushString(std::vector<uint8_t>* buf, const std::string& str) {
for(char c : str) {
buf->push_back(c);
}
buf->push_back(0);
}
void pushString(std::vector<uint8_t>* buf, const char* str) {
for(char c = *str; c != 0; str++, c = *str) {
buf->push_back(c);
}
buf->push_back(0);
}
} // anonymous namespace
TEST_F(ConnectionTest, SendEmptyString) {
EXPECT_TRUE(mConnection->sendString(""));
EXPECT_THAT(mConnection->out, ElementsAre(0));
}
TEST_F(ConnectionTest, SendString) {
EXPECT_TRUE(mConnection->sendString(testString));
EXPECT_THAT(mConnection->out, ElementsAre(
'A', 'B', 'C', 'D', 'E', 0));
}
TEST_F(ConnectionTest, SendStringError) {
mConnection->out_limit = 3;
EXPECT_FALSE(mConnection->sendString(testString));
}
TEST_F(ConnectionTest, ReadEmptyString) {
pushString(&mConnection->in, "");
std::string s;
EXPECT_TRUE(mConnection->readString(&s));
EXPECT_EQ("", s);
}
TEST_F(ConnectionTest, ReadString) {
pushString(&mConnection->in, testString);
std::string s;
EXPECT_TRUE(mConnection->readString(&s));
EXPECT_EQ(testString, s);
}
TEST_F(ConnectionTest, ReadStringError) {
pushBytes(&mConnection->in, {'A', 'B'});
std::string s;
EXPECT_FALSE(mConnection->readString(&s));
}
} // namespace test
} // namespace gapic