blob: 95f1fb215ea2236db036c95a3b405baf2af1441f [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/tools/quic/test_tools/quic_test_utils.h"
#include "net/quic/test_tools/quic_test_utils.h"
#include "net/tools/quic/quic_epoll_connection_helper.h"
using base::StringPiece;
using net::test::MockHelper;
namespace net {
namespace tools {
namespace test {
MockConnection::MockConnection(QuicGuid guid,
IPEndPoint address,
int fd,
EpollServer* eps,
bool is_server)
: QuicConnection(guid, address,
new QuicEpollConnectionHelper(fd, eps), is_server,
QuicVersionMax()),
has_mock_helper_(false) {
}
MockConnection::MockConnection(QuicGuid guid,
IPEndPoint address,
bool is_server)
: QuicConnection(guid, address, new testing::NiceMock<MockHelper>(),
is_server, QuicVersionMax()),
has_mock_helper_(true) {
}
MockConnection::MockConnection(QuicGuid guid,
IPEndPoint address,
QuicConnectionHelperInterface* helper,
bool is_server)
: QuicConnection(guid, address, helper, is_server, QuicVersionMax()),
has_mock_helper_(false) {
}
MockConnection::~MockConnection() {
}
void MockConnection::AdvanceTime(QuicTime::Delta delta) {
CHECK(has_mock_helper_) << "Cannot advance time unless a MockClock is being"
" used";
static_cast<MockHelper*>(helper())->AdvanceTime(delta);
}
bool TestDecompressorVisitor::OnDecompressedData(StringPiece data) {
data.AppendToString(&data_);
return true;
}
void TestDecompressorVisitor::OnDecompressionError() {
error_ = true;
}
TestSession::TestSession(QuicConnection* connection,
const QuicConfig& config,
bool is_server)
: QuicSession(connection, config, is_server),
crypto_stream_(NULL) {
}
TestSession::~TestSession() {}
void TestSession::SetCryptoStream(QuicCryptoStream* stream) {
crypto_stream_ = stream;
}
QuicCryptoStream* TestSession::GetCryptoStream() {
return crypto_stream_;
}
} // namespace test
} // namespace tools
} // namespace net