Skip to content

Commit

Permalink
Fix scenario code in client test
Browse files Browse the repository at this point in the history
  • Loading branch information
gdiazlo committed Feb 26, 2019
1 parent bf17b3d commit 44280e1
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions tests/e2e/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,18 +210,17 @@ func Test_Client_To_Cluster_With_Bad_Endpoint(t *testing.T) {
before0, after0 := setupServer(0, "", false, t)
before1, after1 := setupServer(1, "", false, t)

serversHttpAddr := "badendpoint,http://127.0.0.1:8800"

scenario, let := scope.Scope(t, merge(before0, before1), merge(after0, after1, delay(2*time.Second)))

scenario("Success by extracting topology from right endpoint", func() {
let("Add event", func(t *testing.T) {

let("Add event with one valid endpoint", func(t *testing.T) {
cmd := exec.Command("go",
"run",
"./../../main.go",
fmt.Sprintf("--apikey=%s", APIKey),
"client",
fmt.Sprintf("--endpoints=%s", serversHttpAddr),
fmt.Sprintf("--endpoints=badendpoint,http://127.0.0.1:8800"),
"add",
"--key='test event'",
"--value=2",
Expand All @@ -232,17 +231,14 @@ func Test_Client_To_Cluster_With_Bad_Endpoint(t *testing.T) {

require.NoErrorf(t, err, "Subprocess must not exit with status 1: %v", *cmd)
})
})

serversHttpAddr = "badendpoint"
scenario("Fails if no right endpoint provided", func() {
let("Add event", func(t *testing.T) {
let("Add event with no valid endpoint and fail", func(t *testing.T) {
cmd := exec.Command("go",
"run",
"./../../main.go",
fmt.Sprintf("--apikey=%s", APIKey),
"client",
fmt.Sprintf("--endpoints=%s", serversHttpAddr),
fmt.Sprintf("--endpoints=badendpoint"),
"add",
"--key='test event'",
"--value=2",
Expand Down

0 comments on commit 44280e1

Please sign in to comment.