Adding build-status api to mocked server

This commit is contained in:
gfleury 2020-03-20 08:12:49 -03:00
parent f399837676
commit 0caba5642b
3 changed files with 277 additions and 5163 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1391,4 +1391,32 @@ var routes = Routes{
"/rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/approve",
WithdrawApproval,
},
Route{
"GetCommitStats",
strings.ToUpper("Get"),
"/rest/build-status/1.0/commits/stats/{commitId}",
GetCommitStats,
},
Route{
"GetCommitStatus",
strings.ToUpper("Get"),
"/rest/rest/build-status/1.0/commits/{commitId}",
GetCommitStatus,
},
Route{
"GetCommitsStats",
strings.ToUpper("Post"),
"/rest/build-status/1.0/commits/stats",
GetCommitsStats,
},
Route{
"SetCommitStatus",
strings.ToUpper("Post"),
"/rest/rest/build-status/1.0/commits/{commitId}",
SetCommitStatus,
},
}

View File

@ -0,0 +1,40 @@
package swagger
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"github.com/gorilla/mux"
)
func HandleRequest(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
handlerName := "UNKNOWN"
if route := mux.CurrentRoute(r); route != nil {
routeName := route.GetName()
if routeName != "" {
handlerName = routeName
}
path, err := route.GetPathTemplate()
if err == nil {
fmt.Println(path)
}
}
fmt.Println(handlerName)
fileName := fmt.Sprintf("mocked_responses/%s.json", handlerName)
response, err := ioutil.ReadFile(fileName)
if err == nil {
w.Write(response)
} else {
file, err := os.Create(fileName)
if err != nil {
log.Fatal(err.Error())
}
file.Write([]byte("{}"))
file.Close()
}
}