mirror of https://github.com/ledisdb/ledisdb.git
fix http panic error
This commit is contained in:
parent
8d94615ee4
commit
8c75a693f4
|
@ -34,6 +34,7 @@ func startTestApp() {
|
|||
os.RemoveAll(cfg.DataDir)
|
||||
|
||||
cfg.Addr = "127.0.0.1:16380"
|
||||
cfg.HttpAddr = "127.0.0.1:21181"
|
||||
|
||||
os.RemoveAll("/tmp/testdb")
|
||||
|
||||
|
|
|
@ -45,13 +45,14 @@ func newClientHTTP(app *App, w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
var err error
|
||||
c := new(httpClient)
|
||||
c.client = newClient(app)
|
||||
|
||||
err = c.makeRequest(app, r, w)
|
||||
if err != nil {
|
||||
c.client.close()
|
||||
w.Write([]byte(err.Error()))
|
||||
return
|
||||
}
|
||||
c.client = newClient(app)
|
||||
c.perform()
|
||||
c.client.close()
|
||||
}
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestHttp(t *testing.T) {
|
||||
startTestApp()
|
||||
|
||||
r, err := http.Get(fmt.Sprintf("http://%s/SET/http_hello/world", testApp.cfg.HttpAddr))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
ioutil.ReadAll(r.Body)
|
||||
r.Body.Close()
|
||||
|
||||
r, err = http.Get(fmt.Sprintf("http://%s/GET/http_hello?type=json", testApp.cfg.HttpAddr))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
b, _ := ioutil.ReadAll(r.Body)
|
||||
r.Body.Close()
|
||||
|
||||
var v struct {
|
||||
Data string `json:"GET"`
|
||||
}
|
||||
|
||||
if err = json.Unmarshal(b, &v); err != nil {
|
||||
t.Fatal(err)
|
||||
} else if v.Data != "world" {
|
||||
t.Fatal("not equal")
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue