1
0
mirror of https://github.com/dutchcoders/transfer.sh.git synced 2020-11-18 19:53:40 -08:00
2019-03-17 20:19:56 +01:00

151 lines
4.1 KiB
Go

// Copyright 2015 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package har
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"github.com/google/martian"
"github.com/google/martian/proxyutil"
)
func TestExportHandlerServeHTTP(t *testing.T) {
logger := NewLogger()
req, err := http.NewRequest("GET", "http://example.com", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
_, remove, err := martian.TestContext(req, nil, nil)
if err != nil {
t.Fatalf("martian.TestContext(): got %v, want no error", err)
}
defer remove()
if err := logger.ModifyRequest(req); err != nil {
t.Fatalf("ModifyRequest(): got %v, want no error", err)
}
res := proxyutil.NewResponse(200, nil, req)
if err := logger.ModifyResponse(res); err != nil {
t.Fatalf("ModifyResponse(): got %v, want no error", err)
}
h := NewExportHandler(logger)
req, err = http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw := httptest.NewRecorder()
h.ServeHTTP(rw, req)
if got, want := rw.Code, http.StatusOK; got != want {
t.Errorf("rw.Code: got %d, want %d", got, want)
}
hl := &HAR{}
if err := json.Unmarshal(rw.Body.Bytes(), hl); err != nil {
t.Fatalf("json.Unmarshal(): got %v, want no error", err)
}
if got, want := len(hl.Log.Entries), 1; got != want {
t.Fatalf("len(hl.Log.Entries): got %v, want %v", got, want)
}
entry := hl.Log.Entries[0]
if got, want := entry.Request.URL, "http://example.com"; got != want {
t.Errorf("Request.URL: got %q, want %q", got, want)
}
if got, want := entry.Response.Status, 200; got != want {
t.Errorf("Response.Status: got %d, want %d", got, want)
}
rh := NewResetHandler(logger)
req, err = http.NewRequest("DELETE", "/", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw = httptest.NewRecorder()
rh.ServeHTTP(rw, req)
req, err = http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw = httptest.NewRecorder()
h.ServeHTTP(rw, req)
if got, want := rw.Code, http.StatusOK; got != want {
t.Errorf("rw.Code: got %d, want %d", got, want)
}
hl = &HAR{}
if err := json.Unmarshal(rw.Body.Bytes(), hl); err != nil {
t.Fatalf("json.Unmarshal(): got %v, want no error", err)
}
if got, want := len(hl.Log.Entries), 0; got != want {
t.Errorf("len(Log.Entries): got %v, want %v", got, want)
}
req, err = http.NewRequest("DELETE", "/?return=1", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw = httptest.NewRecorder()
rh.ServeHTTP(rw, req)
if got, want := rw.Code, http.StatusOK; got != want {
t.Errorf("rw.Code: got %d, want %d", got, want)
}
hl = &HAR{}
if err := json.Unmarshal(rw.Body.Bytes(), hl); err != nil {
t.Fatalf("json.Unmarshal(): got %v, want no error", err)
}
if got, want := len(hl.Log.Entries), 0; got != want {
t.Errorf("len(Log.Entries): got %v, want %v", got, want)
}
req, err = http.NewRequest("DELETE", "/?return=0", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw = httptest.NewRecorder()
rh.ServeHTTP(rw, req)
if got, want := rw.Code, http.StatusNoContent; got != want {
t.Errorf("rw.Code: got %d, want %d", got, want)
}
req, err = http.NewRequest("DELETE", "/?return=notboolean", nil)
if err != nil {
t.Fatalf("http.NewRequest(): got %v, want no error", err)
}
rw = httptest.NewRecorder()
rh.ServeHTTP(rw, req)
if got, want := rw.Code, http.StatusBadRequest; got != want {
t.Errorf("rw.Code: got %d, want %d", got, want)
}
}