blob: 9cc68aeb01896b77eb0af3b60a8092dcb7bdf964 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 "kudu/consensus/raft_consensus_state.h"
#include <gtest/gtest.h>
#include <vector>
#include "kudu/consensus/consensus.pb.h"
#include "kudu/consensus/consensus_meta.h"
#include "kudu/consensus/consensus-test-util.h"
#include "kudu/fs/fs_manager.h"
#include "kudu/util/test_macros.h"
#include "kudu/util/test_util.h"
namespace kudu {
namespace consensus {
using std::vector;
// TODO: Share a test harness with ConsensusMetadataTest?
const char* kTabletId = "TestTablet";
class RaftConsensusStateTest : public KuduTest {
public:
RaftConsensusStateTest()
: fs_manager_(env_.get(), GetTestPath("fs_root")),
txn_factory_(new MockTransactionFactory()) {
}
virtual void SetUp() OVERRIDE {
KuduTest::SetUp();
ASSERT_OK(fs_manager_.CreateInitialFileSystemLayout());
ASSERT_OK(fs_manager_.Open());
// Initialize test configuration.
config_.set_local(true);
config_.add_peers()->set_permanent_uuid(fs_manager_.uuid());
config_.set_opid_index(kInvalidOpIdIndex);
gscoped_ptr<ConsensusMetadata> cmeta;
ASSERT_OK(ConsensusMetadata::Create(&fs_manager_, kTabletId, fs_manager_.uuid(),
config_, kMinimumTerm, &cmeta));
state_.reset(new ReplicaState(ConsensusOptions(), fs_manager_.uuid(), std::move(cmeta),
txn_factory_.get()));
// Start up the ReplicaState.
ReplicaState::UniqueLock lock;
ASSERT_OK(state_->LockForStart(&lock));
ASSERT_OK(state_->StartUnlocked(MinimumOpId()));
}
protected:
FsManager fs_manager_;
RaftConfigPB config_;
gscoped_ptr<MockTransactionFactory> txn_factory_;
gscoped_ptr<ReplicaState> state_;
};
// Test that we can transition a new configuration from a pending state into a
// persistent state.
TEST_F(RaftConsensusStateTest, TestPendingPersistent) {
ReplicaState::UniqueLock lock;
ASSERT_OK(state_->LockForConfigChange(&lock));
config_.clear_opid_index();
ASSERT_OK(state_->SetPendingConfigUnlocked(config_));
ASSERT_TRUE(state_->IsConfigChangePendingUnlocked());
ASSERT_FALSE(state_->GetPendingConfigUnlocked().has_opid_index());
ASSERT_TRUE(state_->GetCommittedConfigUnlocked().has_opid_index());
ASSERT_FALSE(state_->SetCommittedConfigUnlocked(config_).ok());
config_.set_opid_index(1);
ASSERT_TRUE(state_->SetCommittedConfigUnlocked(config_).ok());
ASSERT_FALSE(state_->IsConfigChangePendingUnlocked());
ASSERT_EQ(1, state_->GetCommittedConfigUnlocked().opid_index());
}
// Ensure that we can set persistent configurations directly.
TEST_F(RaftConsensusStateTest, TestPersistentWrites) {
ReplicaState::UniqueLock lock;
ASSERT_OK(state_->LockForConfigChange(&lock));
ASSERT_FALSE(state_->IsConfigChangePendingUnlocked());
ASSERT_EQ(kInvalidOpIdIndex, state_->GetCommittedConfigUnlocked().opid_index());
config_.clear_opid_index();
ASSERT_OK(state_->SetPendingConfigUnlocked(config_));
config_.set_opid_index(1);
ASSERT_OK(state_->SetCommittedConfigUnlocked(config_));
ASSERT_EQ(1, state_->GetCommittedConfigUnlocked().opid_index());
config_.clear_opid_index();
ASSERT_OK(state_->SetPendingConfigUnlocked(config_));
config_.set_opid_index(2);
ASSERT_OK(state_->SetCommittedConfigUnlocked(config_));
ASSERT_EQ(2, state_->GetCommittedConfigUnlocked().opid_index());
}
} // namespace consensus
} // namespace kudu