a987b734创建于 2024年11月15日历史提交
// Copyright 2017 Google LLC. All Rights Reserved.
//
// 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 election

import (
	"reflect"
	"testing"
)

type testOperation struct {
	id  string
	val bool
}

func TestMasterTracker(t *testing.T) {
	tests := []struct {
		ids   []string
		ops   []testOperation
		count int
		held  []string
		str   string
	}{
		{
			ids:   []string{"1", "2", "3"},
			ops:   []testOperation{{id: "1", val: true}},
			count: 1,
			held:  []string{"1"},
			str:   "1 . .",
		},
		{
			ids:   []string{"1", "20000", "30000"},
			ops:   []testOperation{{id: "30000", val: true}},
			count: 1,
			held:  []string{"30000"},
			str:   ". ..... 30000",
		},
		{
			ids: []string{"1", "2", "3"},
			ops: []testOperation{
				{id: "1", val: true},
				{id: "2", val: true},
				{id: "3", val: true},
				{id: "1", val: false},
			},
			count: 2,
			held:  []string{"2", "3"},
			str:   ". 2 3",
		},
		{
			ids: []string{},
			ops: []testOperation{
				{id: "1", val: true},
				{id: "2", val: true},
				{id: "3", val: true},
				{id: "1", val: false},
			},
			count: 2,
			held:  []string{"2", "3"},
			str:   ". 2 3",
		},
		{
			ids: []string{"1", "2", "3"},
			ops: []testOperation{
				{id: "1", val: true},
				{id: "1", val: true}, // error: already true
			},
			count: 1, // count still accurate though
			held:  []string{"1"},
			str:   "1 . .",
		},
		{
			ids: []string{"1", "2", "3"},
			ops: []testOperation{
				{id: "1", val: false}, // error: already false
			},
			count: 0, // count still accurate though
			held:  []string{},
			str:   ". . .",
		},
	}

	for _, test := range tests {
		mt := NewMasterTracker(test.ids, nil)
		for _, op := range test.ops {
			mt.Set(op.id, op.val)
		}
		if got := mt.Count(); got != test.count {
			t.Errorf("MasterTracker.Count(%+v)=%d; want %d", test.ops, got, test.count)
		}
		if got := mt.Held(); !reflect.DeepEqual(got, test.held) {
			t.Errorf("MasterTracker.Held(%+v)=%v; want %v", test.ops, got, test.held)
		}
		if got := mt.String(); got != test.str {
			t.Errorf("MasterTracker.String(%+v)=%q; want %q", test.ops, got, test.str)
		}
	}
}