Release Argo Tunnel Client 2018.4.8

This commit is contained in:
cloudflare-warp-bot 2018-04-26 18:20:05 +00:00
parent 77e7c240c0
commit a1a45b0f63
1 changed files with 2 additions and 6 deletions

View File

@ -14,7 +14,6 @@ import (
"time" "time"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
) )
func TestMain(m *testing.M) { func TestMain(m *testing.M) {
@ -135,12 +134,9 @@ func TestSingleStream(t *testing.T) {
if stream.Headers[0].Value != "headerValue" { if stream.Headers[0].Value != "headerValue" {
t.Fatalf("expected header value %s, got %s", "headerValue", stream.Headers[0].Value) t.Fatalf("expected header value %s, got %s", "headerValue", stream.Headers[0].Value)
} }
headers := []Header{ stream.WriteHeaders([]Header{
Header{Name: "response-header", Value: "responseValue"}, Header{Name: "response-header", Value: "responseValue"},
} })
stream.WriteHeaders(headers)
assert.Equal(t, headers, stream.writeHeaders)
assert.False(t, stream.headersSent)
buf := []byte("Hello world") buf := []byte("Hello world")
stream.Write(buf) stream.Write(buf)
// after this receive, the edge closed the stream // after this receive, the edge closed the stream