2015-05-29 04:28:24 +03:00
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2015-05-29 14:29:33 +03:00
|
|
|
"io/ioutil"
|
2015-05-29 04:28:24 +03:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2015-05-29 14:29:33 +03:00
|
|
|
func TestRun(t *testing.T) {
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
router := New()
|
|
|
|
go func() {
|
|
|
|
router.Use(LoggerWithWriter(buffer))
|
|
|
|
router.GET("/example", func(c *Context) { c.String(http.StatusOK, "it worked") })
|
|
|
|
router.Run(":5150")
|
|
|
|
}()
|
|
|
|
// have to wait for the goroutine to start and run the server
|
|
|
|
// otherwise the main thread will complete
|
|
|
|
time.Sleep(5 * time.Millisecond)
|
|
|
|
|
|
|
|
resp, err := http.Get("http://localhost:5150/example")
|
|
|
|
if err != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, ioerr := ioutil.ReadAll(resp.Body)
|
|
|
|
if ioerr != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
2015-06-03 03:52:33 +03:00
|
|
|
assert.Equal(t, "it worked", string(body[:]), "resp body should match")
|
2015-05-29 14:29:33 +03:00
|
|
|
assert.Equal(t, "200 OK", resp.Status, "should get a 200")
|
|
|
|
}
|
|
|
|
|
2015-05-29 04:28:24 +03:00
|
|
|
func TestUnixSocket(t *testing.T) {
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
router := New()
|
|
|
|
go func() {
|
|
|
|
router.Use(LoggerWithWriter(buffer))
|
|
|
|
router.GET("/example", func(c *Context) { c.String(http.StatusOK, "it worked") })
|
|
|
|
router.RunUnix("/tmp/unix_unit_test")
|
|
|
|
}()
|
|
|
|
// have to wait for the goroutine to start and run the server
|
|
|
|
// otherwise the main thread will complete
|
|
|
|
time.Sleep(5 * time.Millisecond)
|
|
|
|
|
|
|
|
c, err := net.Dial("unix", "/tmp/unix_unit_test")
|
|
|
|
if err != nil {
|
|
|
|
println(err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
fmt.Fprintf(c, "GET /example HTTP/1.0\r\n\r\n")
|
|
|
|
scanner := bufio.NewScanner(c)
|
|
|
|
var response string
|
|
|
|
for scanner.Scan() {
|
|
|
|
response += scanner.Text()
|
|
|
|
}
|
|
|
|
assert.Contains(t, response, "HTTP/1.0 200", "should get a 200")
|
|
|
|
assert.Contains(t, response, "it worked", "resp body should match")
|
|
|
|
}
|