// 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. 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 { case "/api/v4/projects": if r.URL.Query().Get("archived") == "false" { w.Write(notArchivedProjectsPayload) } else { w.Write(allProjectsPayload) } return case "/api/v4/projects/diaspora/diaspora-client": w.Write(project4Paylod) return case "/api/v4/projects/brightbox/puppet": w.Write(project6Paylod) return case "/api/v4/projects/diaspora/diaspora-client/services/drone-ci": 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 case "/api/v4/user": w.Write(currentUserPayload) 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 }