woodpecker/remote/gitlab/testdata/testdata.go

75 lines
1.9 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
//
// 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.
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
}