diff options
author | 2023-08-10 19:46:45 -0700 | |
---|---|---|
committer | 2023-08-10 20:29:34 -0700 | |
commit | 168a870c025bfef6efdeb46e166e79a16093c157 (patch) | |
tree | 4d8ab69c7e3ef03a7ade06e7b5e5053429a64c3b /http/response/json/json_test.go | |
parent | c2349032552891745cbbc3d2a9e772845a0239f4 (diff) | |
download | v2-168a870c025bfef6efdeb46e166e79a16093c157.tar.gz v2-168a870c025bfef6efdeb46e166e79a16093c157.tar.zst v2-168a870c025bfef6efdeb46e166e79a16093c157.zip |
Move internal packages to an internal folder
For reference: https://go.dev/doc/go1.4#internalpackages
Diffstat (limited to 'http/response/json/json_test.go')
-rw-r--r-- | http/response/json/json_test.go | 312 |
1 files changed, 0 insertions, 312 deletions
diff --git a/http/response/json/json_test.go b/http/response/json/json_test.go deleted file mode 100644 index 93a477c8..00000000 --- a/http/response/json/json_test.go +++ /dev/null @@ -1,312 +0,0 @@ -// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved. -// SPDX-License-Identifier: Apache-2.0 - -package json // import "miniflux.app/v2/http/response/json" - -import ( - "errors" - "net/http" - "net/http/httptest" - "testing" -) - -func TestOKResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - OK(w, r, map[string]string{"key": "value"}) - }) - - handler.ServeHTTP(w, r) - - resp := w.Result() - defer resp.Body.Close() - - expectedStatusCode := http.StatusOK - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"key":"value"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %q instead of %q`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestCreatedResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - Created(w, r, map[string]string{"key": "value"}) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusCreated - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"key":"value"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestNoContentResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - NoContent(w, r) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusNoContent - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestServerErrorResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - ServerError(w, r, errors.New("some error")) - }) - - handler.ServeHTTP(w, r) - - resp := w.Result() - defer resp.Body.Close() - - expectedStatusCode := http.StatusInternalServerError - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"error_message":"some error"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %q instead of %q`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestBadRequestResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - BadRequest(w, r, errors.New("Some Error")) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusBadRequest - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"error_message":"Some Error"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestUnauthorizedResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - Unauthorized(w, r) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusUnauthorized - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"error_message":"access unauthorized"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestForbiddenResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - Forbidden(w, r) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusForbidden - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"error_message":"access forbidden"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestNotFoundResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - NotFound(w, r) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusNotFound - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `{"error_message":"resource not found"}` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} - -func TestBuildInvalidJSONResponse(t *testing.T) { - r, err := http.NewRequest("GET", "/", nil) - if err != nil { - t.Fatal(err) - } - - w := httptest.NewRecorder() - - handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - OK(w, r, make(chan int)) - }) - - handler.ServeHTTP(w, r) - resp := w.Result() - - expectedStatusCode := http.StatusOK - if resp.StatusCode != expectedStatusCode { - t.Fatalf(`Unexpected status code, got %d instead of %d`, resp.StatusCode, expectedStatusCode) - } - - expectedBody := `` - actualBody := w.Body.String() - if actualBody != expectedBody { - t.Fatalf(`Unexpected body, got %s instead of %s`, actualBody, expectedBody) - } - - expectedContentType := contentTypeHeader - actualContentType := resp.Header.Get("Content-Type") - if actualContentType != expectedContentType { - t.Fatalf(`Unexpected content type, got %q instead of %q`, actualContentType, expectedContentType) - } -} |