woodpecker/remote/gitlab/testdata/testdata.go

61 lines
1.3 KiB
Go
Raw Normal View History

2015-08-22 19:06:56 +00:00
package testdata
import (
"net/http"
"net/http/httptest"
)
// setup a mock server for testing purposes.
func NewServer() *httptest.Server {
mux := http.NewServeMux()
server := httptest.NewServer(mux)
// handle requests and serve mock data
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
//println(r.URL.Path + " " + r.Method)
// evaluate the path to serve a dummy data file
switch r.URL.Path {
2017-08-10 06:24:35 +00:00
case "/api/v4/projects":
if r.URL.Query().Get("archived") == "false" {
w.Write(notArchivedProjectsPayload)
} else {
w.Write(allProjectsPayload)
}
2015-08-22 19:06:56 +00:00
return
2017-08-10 06:24:35 +00:00
case "/api/v4/projects/diaspora/diaspora-client":
2015-08-22 19:06:56 +00:00
w.Write(project4Paylod)
return
2017-08-10 06:24:35 +00:00
case "/api/v4/projects/brightbox/puppet":
2016-01-07 14:35:53 +00:00
w.Write(project6Paylod)
return
2017-08-10 06:24:35 +00:00
case "/api/v4/projects/diaspora/diaspora-client/services/drone-ci":
2015-08-22 19:06:56 +00:00
switch r.Method {
case "PUT":
if r.FormValue("token") == "" {
w.WriteHeader(404)
} else {
w.WriteHeader(201)
}
case "DELETE":
w.WriteHeader(201)
}
return
case "/oauth/token":
w.Write(accessTokenPayload)
return
2017-08-10 06:24:35 +00:00
case "/api/v4/user":
2016-01-07 14:35:53 +00:00
w.Write(currentUserPayload)
2015-08-22 19:06:56 +00:00
return
}
// else return a 404
http.NotFound(w, r)
})
// return the server to the client which
// will need to know the base URL path
return server
}