mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Adding build-status api to mocked server
This commit is contained in:
parent
f399837676
commit
0caba5642b
File diff suppressed because it is too large
Load Diff
@ -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,
|
||||
},
|
||||
}
|
||||
|
40
test/bb-mock-server/go/util.go
Normal file
40
test/bb-mock-server/go/util.go
Normal 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()
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user