aboutsummaryrefslogtreecommitdiff
path: root/git-codereview/util_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'git-codereview/util_test.go')
-rw-r--r--git-codereview/util_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/git-codereview/util_test.go b/git-codereview/util_test.go
index 400beb4..b010f08 100644
--- a/git-codereview/util_test.go
+++ b/git-codereview/util_test.go
@@ -6,6 +6,7 @@ package main
import (
"bytes"
+ "encoding/json"
"fmt"
"io/ioutil"
"net"
@@ -386,6 +387,7 @@ func (s *gerritServer) done() {
type gerritReply struct {
status int
body string
+ json interface{}
f func() gerritReply
}
@@ -413,6 +415,13 @@ func (s *gerritServer) ServeHTTP(w http.ResponseWriter, req *http.Request) {
if reply.status != 0 {
w.WriteHeader(reply.status)
}
+ if reply.json != nil {
+ body, err := json.Marshal(reply.json)
+ if err != nil {
+ dief("%v", err)
+ }
+ reply.body = ")]}'\n" + string(body)
+ }
if len(reply.body) > 0 {
w.Write([]byte(reply.body))
}