2020-06-30 16:54:38 +03:00
|
|
|
package selector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Tests runs all the tests against a selector to ensure the implementations are consistent
|
|
|
|
func Tests(t *testing.T, s Selector) {
|
2020-08-18 00:44:45 +03:00
|
|
|
r1 := "127.0.0.1:8000"
|
|
|
|
r2 := "127.0.0.1:8001"
|
2020-06-30 16:54:38 +03:00
|
|
|
|
|
|
|
t.Run("Select", func(t *testing.T) {
|
|
|
|
t.Run("NoRoutes", func(t *testing.T) {
|
2020-08-18 00:44:45 +03:00
|
|
|
_, err := s.Select([]string{})
|
2020-06-30 16:54:38 +03:00
|
|
|
assert.Equal(t, ErrNoneAvailable, err, "Expected error to be none available")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("OneRoute", func(t *testing.T) {
|
2020-08-18 00:44:45 +03:00
|
|
|
next, err := s.Select([]string{r1})
|
|
|
|
srv := next()
|
2020-06-30 16:54:38 +03:00
|
|
|
assert.Nil(t, err, "Error should be nil")
|
2020-08-18 00:44:45 +03:00
|
|
|
assert.Equal(t, r1, srv, "Expected the route to be returned")
|
2020-06-30 16:54:38 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("MultipleRoutes", func(t *testing.T) {
|
2020-08-18 00:44:45 +03:00
|
|
|
next, err := s.Select([]string{r1, r2})
|
2020-06-30 16:54:38 +03:00
|
|
|
assert.Nil(t, err, "Error should be nil")
|
2020-08-18 00:44:45 +03:00
|
|
|
srv := next()
|
|
|
|
if srv != r1 && srv != r2 {
|
2020-06-30 16:54:38 +03:00
|
|
|
t.Errorf("Expected the route to be one of the inputs")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Record", func(t *testing.T) {
|
|
|
|
err := s.Record(r1, nil)
|
|
|
|
assert.Nil(t, err, "Expected the error to be nil")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("String", func(t *testing.T) {
|
|
|
|
assert.NotEmpty(t, s.String(), "String returned a blank string")
|
|
|
|
})
|
|
|
|
}
|