summaryrefslogtreecommitdiffstats
path: root/api4/apitestlib.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-31 09:56:20 -0400
committerChristopher Speller <crspeller@gmail.com>2017-03-31 09:56:20 -0400
commit5f6d50bff1b4098bc0ef3c120e7b12104e5c4894 (patch)
tree6fe69bc72fa77547dd4bba2afb0f51fa6e79ca93 /api4/apitestlib.go
parent4e224c299697e570e98c388bf23a42ffa1e6af0d (diff)
downloadchat-5f6d50bff1b4098bc0ef3c120e7b12104e5c4894.tar.gz
chat-5f6d50bff1b4098bc0ef3c120e7b12104e5c4894.tar.bz2
chat-5f6d50bff1b4098bc0ef3c120e7b12104e5c4894.zip
Use 201 status code where appropriate for APIv4 (#5903)
Diffstat (limited to 'api4/apitestlib.go')
-rw-r--r--api4/apitestlib.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/api4/apitestlib.go b/api4/apitestlib.go
index 749053271..863237367 100644
--- a/api4/apitestlib.go
+++ b/api4/apitestlib.go
@@ -442,6 +442,15 @@ func CheckNoError(t *testing.T, resp *model.Response) {
}
}
+func CheckCreatedStatus(t *testing.T, resp *model.Response) {
+ if resp.StatusCode != http.StatusCreated {
+ debug.PrintStack()
+ t.Log("actual: " + strconv.Itoa(resp.StatusCode))
+ t.Log("expected: " + strconv.Itoa(http.StatusCreated))
+ t.Fatal("wrong status code")
+ }
+}
+
func CheckForbiddenStatus(t *testing.T, resp *model.Response) {
if resp.Error == nil {
debug.PrintStack()