-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathquicktest.go
108 lines (96 loc) · 3.2 KB
/
quicktest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package quick
import (
"bytes"
"io"
"net/http"
)
const logDelimiter = "====================="
// QuickTestReturn defines the interface for handling HTTP test responses.
type QuickTestReturn interface {
Body() []byte // Returns the raw response body as a byte slice.
BodyStr() string // Returns the response body as a string.
StatusCode() int // Returns the HTTP status code.
Response() *http.Response // Returns the full HTTP response object.
}
type (
qTest struct {
body []byte
bodyStr string
statusCode int
response *http.Response
}
// QuickMockTestServer defines a mock server configuration for testing.
QuickMockTestServer struct {
Client *http.Client // HTTP client to interact with the mock server.
Port int // Port on which the mock server runs.
URI string // The request URI for the test.
Method string // The HTTP method (GET, POST, etc.).
Headers map[string]string // Headers to be included in the request.
Body []byte // Request body content.
}
)
// createHTTPRequest constructs an HTTP request with the specified method, URI, headers, and body.
//
// Parameters:
// - method (string): HTTP method (e.g., "GET", "POST").
// - URI (string): The request path (e.g., "/api/test").
// - headers (map[string]string): Headers to include in the request.
// - body ([]byte): The request body content.
//
// Returns:
// - *http.Request: The constructed HTTP request.
// - error: Any error encountered while creating the request.
func createHTTPRequest(method, URI string, headers map[string]string, body []byte) (*http.Request, error) {
req, err := http.NewRequest(method, URI, io.NopCloser(bytes.NewBuffer(body)))
if err != nil {
return nil, err
}
for key, value := range headers {
req.Header.Set(key, value)
}
return req, nil
}
// readResponseBody safely reads and returns the response body as a byte slice.
//
// Parameters:
// - body (io.ReadCloser): The response body stream.
//
// Returns:
// - []byte: The content of the response body.
// - error: Any error encountered while reading the body.
func readResponseBody(body io.ReadCloser) ([]byte, error) {
if body == nil {
return nil, nil
}
defer body.Close()
return io.ReadAll(body)
}
// logRequestDetails logs the details of an HTTP request.
//
// This function prints the HTTP method, URI, and body length for debugging purposes.
//
// Parameters:
// - method (string): The HTTP method used in the request.
// - URI (string): The request path.
// - bodyLen (int): The length of the request body.
func logRequestDetails(method, URI string, bodyLen int) {
println(logDelimiter)
println("Method:", method, "| URI:", URI, "| Body Length:", bodyLen)
println(logDelimiter)
}
// Body returns the raw response body as a byte slice.
func (qt *qTest) Body() []byte {
return qt.body
}
// BodyStr returns the response body as a string.
func (qt *qTest) BodyStr() string {
return qt.bodyStr
}
// StatusCode returns the HTTP status code of the response.
func (qt *qTest) StatusCode() int {
return qt.statusCode
}
// Response returns the full HTTP response object.
func (qt *qTest) Response() *http.Response {
return qt.response
}