From d103ed6ca97ca5a2669f6cf5fe4b3d2a9c945f26 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 17 May 2017 16:51:25 -0400 Subject: Upgrading server dependancies (#6431) --- .../hashicorp/memberlist/awareness_test.go | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 vendor/github.com/hashicorp/memberlist/awareness_test.go (limited to 'vendor/github.com/hashicorp/memberlist/awareness_test.go') diff --git a/vendor/github.com/hashicorp/memberlist/awareness_test.go b/vendor/github.com/hashicorp/memberlist/awareness_test.go new file mode 100644 index 000000000..c6ade10af --- /dev/null +++ b/vendor/github.com/hashicorp/memberlist/awareness_test.go @@ -0,0 +1,41 @@ +package memberlist + +import ( + "testing" + "time" +) + +func TestAwareness(t *testing.T) { + cases := []struct { + delta int + score int + timeout time.Duration + }{ + {0, 0, 1 * time.Second}, + {-1, 0, 1 * time.Second}, + {-10, 0, 1 * time.Second}, + {1, 1, 2 * time.Second}, + {-1, 0, 1 * time.Second}, + {10, 7, 8 * time.Second}, + {-1, 6, 7 * time.Second}, + {-1, 5, 6 * time.Second}, + {-1, 4, 5 * time.Second}, + {-1, 3, 4 * time.Second}, + {-1, 2, 3 * time.Second}, + {-1, 1, 2 * time.Second}, + {-1, 0, 1 * time.Second}, + {-1, 0, 1 * time.Second}, + } + + a := newAwareness(8) + for i, c := range cases { + a.ApplyDelta(c.delta) + if a.GetHealthScore() != c.score { + t.Errorf("case %d: score mismatch %d != %d", i, a.score, c.score) + } + if timeout := a.ScaleTimeout(1 * time.Second); timeout != c.timeout { + t.Errorf("case %d: scaled timeout mismatch %9.6f != %9.6f", + i, timeout.Seconds(), c.timeout.Seconds()) + } + } +} -- cgit v1.2.3-1-g7c22