|
@@ -2,6 +2,7 @@ package v2
|
|
|
|
|
|
|
|
import (
|
|
import (
|
|
|
"fmt"
|
|
"fmt"
|
|
|
|
|
+ "net/http"
|
|
|
"net/url"
|
|
"net/url"
|
|
|
"testing"
|
|
"testing"
|
|
|
"time"
|
|
"time"
|
|
@@ -20,6 +21,7 @@ func TestV2SetKey(t *testing.T) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
resp, err := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, err := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
body := tests.ReadBody(resp)
|
|
body := tests.ReadBody(resp)
|
|
|
assert.Nil(t, err, "")
|
|
assert.Nil(t, err, "")
|
|
|
assert.Equal(t, string(body), `{"action":"set","node":{"key":"/foo/bar","value":"XXX","modifiedIndex":2,"createdIndex":2}}`, "")
|
|
assert.Equal(t, string(body), `{"action":"set","node":{"key":"/foo/bar","value":"XXX","modifiedIndex":2,"createdIndex":2}}`, "")
|
|
@@ -33,6 +35,7 @@ func TestV2SetKey(t *testing.T) {
|
|
|
func TestV2SetDirectory(t *testing.T) {
|
|
func TestV2SetDirectory(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
resp, err := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo?dir=true"), url.Values{})
|
|
resp, err := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo?dir=true"), url.Values{})
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
body := tests.ReadBody(resp)
|
|
body := tests.ReadBody(resp)
|
|
|
assert.Nil(t, err, "")
|
|
assert.Nil(t, err, "")
|
|
|
assert.Equal(t, string(body), `{"action":"set","node":{"key":"/foo","dir":true,"modifiedIndex":2,"createdIndex":2}}`, "")
|
|
assert.Equal(t, string(body), `{"action":"set","node":{"key":"/foo","dir":true,"modifiedIndex":2,"createdIndex":2}}`, "")
|
|
@@ -50,6 +53,7 @@ func TestV2SetKeyWithTTL(t *testing.T) {
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
v.Set("ttl", "20")
|
|
v.Set("ttl", "20")
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
node := body["node"].(map[string]interface{})
|
|
node := body["node"].(map[string]interface{})
|
|
|
assert.Equal(t, node["ttl"], 20, "")
|
|
assert.Equal(t, node["ttl"], 20, "")
|
|
@@ -70,6 +74,7 @@ func TestV2SetKeyWithBadTTL(t *testing.T) {
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
v.Set("ttl", "bad_ttl")
|
|
v.Set("ttl", "bad_ttl")
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusBadRequest)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 202, "")
|
|
assert.Equal(t, body["errorCode"], 202, "")
|
|
|
assert.Equal(t, body["message"], "The given TTL in POST form is not a number", "")
|
|
assert.Equal(t, body["message"], "The given TTL in POST form is not a number", "")
|
|
@@ -77,7 +82,7 @@ func TestV2SetKeyWithBadTTL(t *testing.T) {
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-// Ensures that a key is conditionally set only if it previously did not exist.
|
|
|
|
|
|
|
+// Ensures that a key is conditionally set if it previously did not exist.
|
|
|
//
|
|
//
|
|
|
// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=false
|
|
// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=false
|
|
|
//
|
|
//
|
|
@@ -87,25 +92,29 @@ func TestV2CreateKeySuccess(t *testing.T) {
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
v.Set("prevExist", "false")
|
|
v.Set("prevExist", "false")
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
node := body["node"].(map[string]interface{})
|
|
node := body["node"].(map[string]interface{})
|
|
|
assert.Equal(t, node["value"], "XXX", "")
|
|
assert.Equal(t, node["value"], "XXX", "")
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-// Ensures that a key is not conditionally because it previously existed.
|
|
|
|
|
|
|
+// Ensures that a key is not conditionally set because it previously existed.
|
|
|
//
|
|
//
|
|
|
-// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX
|
|
|
|
|
// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=false
|
|
// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=false
|
|
|
|
|
+// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=false -> fail
|
|
|
//
|
|
//
|
|
|
func TestV2CreateKeyFail(t *testing.T) {
|
|
func TestV2CreateKeyFail(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
v.Set("prevExist", "false")
|
|
v.Set("prevExist", "false")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusPreconditionFailed)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 105, "")
|
|
assert.Equal(t, body["errorCode"], 105, "")
|
|
|
assert.Equal(t, body["message"], "Key already exists", "")
|
|
assert.Equal(t, body["message"], "Key already exists", "")
|
|
@@ -123,12 +132,15 @@ func TestV2UpdateKeySuccess(t *testing.T) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
|
|
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
|
|
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevExist", "true")
|
|
v.Set("prevExist", "true")
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusOK)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["action"], "update", "")
|
|
assert.Equal(t, body["action"], "update", "")
|
|
|
})
|
|
})
|
|
@@ -144,9 +156,11 @@ func TestV2UpdateKeyFailOnValue(t *testing.T) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo?dir=true"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo?dir=true"), v)
|
|
|
|
|
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevExist", "true")
|
|
v.Set("prevExist", "true")
|
|
|
resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusNotFound)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 100, "")
|
|
assert.Equal(t, body["errorCode"], 100, "")
|
|
|
assert.Equal(t, body["message"], "Key not found", "")
|
|
assert.Equal(t, body["message"], "Key not found", "")
|
|
@@ -156,19 +170,27 @@ func TestV2UpdateKeyFailOnValue(t *testing.T) {
|
|
|
|
|
|
|
|
// Ensures that a key is not conditionally set if it previously did not exist.
|
|
// Ensures that a key is not conditionally set if it previously did not exist.
|
|
|
//
|
|
//
|
|
|
-// $ curl -X PUT localhost:4001/v2/keys/foo -d value=XXX -d prevExist=true
|
|
|
|
|
-// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=XXX -d prevExist=true
|
|
|
|
|
|
|
+// $ curl -X PUT localhost:4001/v2/keys/foo -d value=YYY -d prevExist=true -> fail
|
|
|
|
|
+// $ curl -X PUT localhost:4001/v2/keys/foo/bar -d value=YYY -d prevExist=true -> fail
|
|
|
//
|
|
//
|
|
|
func TestV2UpdateKeyFailOnMissingDirectory(t *testing.T) {
|
|
func TestV2UpdateKeyFailOnMissingDirectory(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevExist", "true")
|
|
v.Set("prevExist", "true")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusNotFound)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 100, "")
|
|
assert.Equal(t, body["errorCode"], 100, "")
|
|
|
assert.Equal(t, body["message"], "Key not found", "")
|
|
assert.Equal(t, body["message"], "Key not found", "")
|
|
|
assert.Equal(t, body["cause"], "/foo", "")
|
|
assert.Equal(t, body["cause"], "/foo", "")
|
|
|
|
|
+
|
|
|
|
|
+ resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusNotFound)
|
|
|
|
|
+ body = tests.ReadBodyJSON(resp)
|
|
|
|
|
+ assert.Equal(t, body["errorCode"], 100, "")
|
|
|
|
|
+ assert.Equal(t, body["message"], "Key not found", "")
|
|
|
|
|
+ assert.Equal(t, body["cause"], "/foo", "")
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -181,11 +203,14 @@ func TestV2SetKeyCASOnIndexSuccess(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevIndex", "2")
|
|
v.Set("prevIndex", "2")
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusOK)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["action"], "compareAndSwap", "")
|
|
assert.Equal(t, body["action"], "compareAndSwap", "")
|
|
|
node := body["node"].(map[string]interface{})
|
|
node := body["node"].(map[string]interface{})
|
|
@@ -203,11 +228,14 @@ func TestV2SetKeyCASOnIndexFail(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevIndex", "10")
|
|
v.Set("prevIndex", "10")
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusPreconditionFailed)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 101, "")
|
|
assert.Equal(t, body["errorCode"], 101, "")
|
|
|
assert.Equal(t, body["message"], "Compare failed", "")
|
|
assert.Equal(t, body["message"], "Compare failed", "")
|
|
@@ -226,6 +254,7 @@ func TestV2SetKeyCASWithInvalidIndex(t *testing.T) {
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevIndex", "bad_index")
|
|
v.Set("prevIndex", "bad_index")
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusBadRequest)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 203, "")
|
|
assert.Equal(t, body["errorCode"], 203, "")
|
|
|
assert.Equal(t, body["message"], "The given index in POST form is not a number", "")
|
|
assert.Equal(t, body["message"], "The given index in POST form is not a number", "")
|
|
@@ -242,11 +271,14 @@ func TestV2SetKeyCASOnValueSuccess(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevValue", "XXX")
|
|
v.Set("prevValue", "XXX")
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusOK)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["action"], "compareAndSwap", "")
|
|
assert.Equal(t, body["action"], "compareAndSwap", "")
|
|
|
node := body["node"].(map[string]interface{})
|
|
node := body["node"].(map[string]interface{})
|
|
@@ -264,11 +296,14 @@ func TestV2SetKeyCASOnValueFail(t *testing.T) {
|
|
|
tests.RunServer(func(s *server.Server) {
|
|
tests.RunServer(func(s *server.Server) {
|
|
|
v := url.Values{}
|
|
v := url.Values{}
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
- resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ fullURL := fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar")
|
|
|
|
|
+ resp, _ := tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusCreated)
|
|
|
tests.ReadBody(resp)
|
|
tests.ReadBody(resp)
|
|
|
v.Set("value", "YYY")
|
|
v.Set("value", "YYY")
|
|
|
v.Set("prevValue", "AAA")
|
|
v.Set("prevValue", "AAA")
|
|
|
- resp, _ = tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
|
|
+ resp, _ = tests.PutForm(fullURL, v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusPreconditionFailed)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 101, "")
|
|
assert.Equal(t, body["errorCode"], 101, "")
|
|
|
assert.Equal(t, body["message"], "Compare failed", "")
|
|
assert.Equal(t, body["message"], "Compare failed", "")
|
|
@@ -287,6 +322,7 @@ func TestV2SetKeyCASWithMissingValueFails(t *testing.T) {
|
|
|
v.Set("value", "XXX")
|
|
v.Set("value", "XXX")
|
|
|
v.Set("prevValue", "")
|
|
v.Set("prevValue", "")
|
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
resp, _ := tests.PutForm(fmt.Sprintf("%s%s", s.URL(), "/v2/keys/foo/bar"), v)
|
|
|
|
|
+ assert.Equal(t, resp.StatusCode, http.StatusBadRequest)
|
|
|
body := tests.ReadBodyJSON(resp)
|
|
body := tests.ReadBodyJSON(resp)
|
|
|
assert.Equal(t, body["errorCode"], 201, "")
|
|
assert.Equal(t, body["errorCode"], 201, "")
|
|
|
assert.Equal(t, body["message"], "PrevValue is Required in POST form", "")
|
|
assert.Equal(t, body["message"], "PrevValue is Required in POST form", "")
|