mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Build tags are not compatible with block comments. Also adds copyright header to a few places it was missing.
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
// Copyright 2015 CoreOS, Inc.
|
|
//
|
|
// 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.
|
|
|
|
package rafthttp
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/coreos/etcd/etcdserver/stats"
|
|
"github.com/coreos/etcd/pkg/testutil"
|
|
"github.com/coreos/etcd/pkg/types"
|
|
"github.com/coreos/etcd/raft/raftpb"
|
|
)
|
|
|
|
func TestTransportAdd(t *testing.T) {
|
|
ls := stats.NewLeaderStats("")
|
|
tr := &transport{
|
|
leaderStats: ls,
|
|
peers: make(map[types.ID]*peer),
|
|
}
|
|
tr.AddPeer(1, []string{"http://a"})
|
|
|
|
if _, ok := ls.Followers["1"]; !ok {
|
|
t.Errorf("FollowerStats[1] is nil, want exists")
|
|
}
|
|
s, ok := tr.peers[types.ID(1)]
|
|
if !ok {
|
|
t.Fatalf("senders[1] is nil, want exists")
|
|
}
|
|
|
|
// duplicate AddPeer is ignored
|
|
tr.AddPeer(1, []string{"http://a"})
|
|
ns := tr.peers[types.ID(1)]
|
|
if s != ns {
|
|
t.Errorf("sender = %v, want %v", ns, s)
|
|
}
|
|
}
|
|
|
|
func TestTransportRemove(t *testing.T) {
|
|
tr := &transport{
|
|
leaderStats: stats.NewLeaderStats(""),
|
|
peers: make(map[types.ID]*peer),
|
|
}
|
|
tr.AddPeer(1, []string{"http://a"})
|
|
tr.RemovePeer(types.ID(1))
|
|
|
|
if _, ok := tr.peers[types.ID(1)]; ok {
|
|
t.Fatalf("senders[1] exists, want removed")
|
|
}
|
|
}
|
|
|
|
func TestTransportErrorc(t *testing.T) {
|
|
errorc := make(chan error, 1)
|
|
tr := &transport{
|
|
roundTripper: newRespRoundTripper(http.StatusForbidden, nil),
|
|
leaderStats: stats.NewLeaderStats(""),
|
|
peers: make(map[types.ID]*peer),
|
|
errorc: errorc,
|
|
}
|
|
tr.AddPeer(1, []string{"http://a"})
|
|
|
|
select {
|
|
case <-errorc:
|
|
t.Fatalf("received unexpected from errorc")
|
|
case <-time.After(10 * time.Millisecond):
|
|
}
|
|
tr.peers[1].Send(raftpb.Message{})
|
|
|
|
testutil.ForceGosched()
|
|
select {
|
|
case <-errorc:
|
|
default:
|
|
t.Fatalf("cannot receive error from errorc")
|
|
}
|
|
}
|