-
Notifications
You must be signed in to change notification settings - Fork 12
/
request_mock.go
62 lines (48 loc) · 1.32 KB
/
request_mock.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
// +build mock
package synapse
import (
"github.com/parnurzeal/gorequest"
)
/********** TYPES **********/
type (
// Request represents the http request client
Request struct {
authKey, clientID, clientSecret, fingerprint, ipAddress string
}
)
/********** GLOBAL VARIABLES **********/
var goreq = gorequest.New()
var mockResponse = []byte(`{
"message": "This is a mock response"
}`)
/********** METHODS **********/
func (req *Request) updateRequest(clientID, clientSecret, fingerprint, ipAddress string, authKey ...string) Request {
var aKey string
if len(authKey) > 0 {
aKey = authKey[0]
}
return Request{
authKey: aKey,
clientID: clientID,
clientSecret: clientSecret,
fingerprint: fingerprint,
ipAddress: ipAddress,
}
}
/********** REQUEST **********/
// Get performs a GET request
func (req *Request) Get(url string, queryParams []string) ([]byte, error) {
return mockResponse, nil
}
// Post performs a POST request
func (req *Request) Post(url, data string, queryParams []string) ([]byte, error) {
return mockResponse, nil
}
// Patch performs a PATCH request
func (req *Request) Patch(url, data string, queryParams []string) ([]byte, error) {
return mockResponse, nil
}
// Delete performs a DELETE request
func (req *Request) Delete(url string) ([]byte, error) {
return mockResponse, nil
}