api: run consul instance on testing ports
This commit is contained in:
parent
1faf1110aa
commit
77f041b41f
|
@ -7,13 +7,19 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var consulConfig = `{
|
var consulConfig = `{
|
||||||
"ports": {
|
"ports": {
|
||||||
"http": 18800
|
"dns": 19000,
|
||||||
|
"http": 18800,
|
||||||
|
"rpc": 18600,
|
||||||
|
"serf_lan": 18200,
|
||||||
|
"serf_wan": 18400,
|
||||||
|
"server": 18000
|
||||||
},
|
},
|
||||||
"data_dir": "%s",
|
"data_dir": "%s",
|
||||||
"bootstrap": true,
|
"bootstrap": true,
|
||||||
|
@ -85,7 +91,7 @@ func newTestServer(t *testing.T) *testServer {
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
if err != nil || len(body) == 2 {
|
if err != nil || !strings.Contains(string(body), "18000") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue