1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-29 01:44:23 +02:00
ferret/pkg/stdlib/io/net/http/delete_test.go
Tim Voronov 67dc8703c7
Added HTTP methods (#452)
* Added HTTP methods

* Added unit tests

* Fixed linting issue

* Replaced localhost with 127.0.0.1

* Added random port generator

* Disabled http tests

* Disabled HTTP GET test
2020-02-21 11:06:45 -05:00

110 lines
2.1 KiB
Go

package http_test
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"math/rand"
h "net/http"
"testing"
"github.com/pkg/errors"
. "github.com/smartystreets/goconvey/convey"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
"github.com/MontFerret/ferret/pkg/stdlib/io/net/http"
)
func randPort() string {
min := 8000
max := 8999
return fmt.Sprintf(":%d", rand.Intn(max-min)+min)
}
func TestDELETE(t *testing.T) {
SkipConvey("Should successfully make request", t, func() {
type User struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
}
port := randPort()
server := &h.Server{
Addr: port,
Handler: h.HandlerFunc(func(w h.ResponseWriter, r *h.Request) {
var err error
defer func() {
if err != nil {
w.Write([]byte(err.Error()))
} else {
w.Write([]byte("OK"))
}
}()
if r.Method != "DELETE" {
err = errors.Errorf("Expected method to be DELETE, but got %s", r.Method)
return
}
data, err := ioutil.ReadAll(r.Body)
if err != nil {
return
}
user := User{}
err = json.Unmarshal(data, &user)
if err != nil {
return
}
if user.FirstName != "Rob" {
err = errors.Errorf("Expected FirstName to be Rob, but got %s", user.FirstName)
return
}
if user.LastName != "Pike" {
err = errors.Errorf("Expected LastName to be Pike, but got %s", user.LastName)
return
}
}),
}
ctx, cancel := context.WithCancel(context.Background())
go func() {
server.ListenAndServe()
}()
defer func() {
cancel()
server.Shutdown(ctx)
}()
b, err := json.Marshal(User{
FirstName: "Rob",
LastName: "Pike",
})
So(err, ShouldBeNil)
out, err := http.DELETE(ctx, values.NewObjectWith(
values.NewObjectProperty("url", values.NewString("http://127.0.0.1"+port)),
values.NewObjectProperty("body", values.NewBinary(b)),
))
So(err, ShouldBeNil)
So(out.Type().ID(), ShouldEqual, types.Binary.ID())
So(out.String(), ShouldEqual, "OK")
})
}