mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #5712 from gyuho/curl_v3
e2e: grpc-gateway cURL tests
This commit is contained in:
commit
d5696cb6ef
@ -153,16 +153,20 @@ func cURLPrefixArgs(clus *etcdProcessCluster, method string, req cURLReq) []stri
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch method {
|
switch method {
|
||||||
case "PUT":
|
case "POST", "PUT":
|
||||||
dt := req.value
|
dt := req.value
|
||||||
if !strings.HasPrefix(dt, "{") { // for non-JSON value
|
if !strings.HasPrefix(dt, "{") { // for non-JSON value
|
||||||
dt = "value=" + dt
|
dt = "value=" + dt
|
||||||
}
|
}
|
||||||
cmdArgs = append(cmdArgs, "-XPUT", "-d", dt)
|
cmdArgs = append(cmdArgs, "-X", method, "-d", dt)
|
||||||
}
|
}
|
||||||
return cmdArgs
|
return cmdArgs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func cURLPost(clus *etcdProcessCluster, req cURLReq) error {
|
||||||
|
return spawnWithExpect(cURLPrefixArgs(clus, "POST", req), req.expected)
|
||||||
|
}
|
||||||
|
|
||||||
func cURLPut(clus *etcdProcessCluster, req cURLReq) error {
|
func cURLPut(clus *etcdProcessCluster, req cURLReq) error {
|
||||||
return spawnWithExpect(cURLPrefixArgs(clus, "PUT", req), req.expected)
|
return spawnWithExpect(cURLPrefixArgs(clus, "PUT", req), req.expected)
|
||||||
}
|
}
|
||||||
|
76
e2e/v3_curl_test.go
Normal file
76
e2e/v3_curl_test.go
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
// Copyright 2016 The etcd Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package e2e
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/coreos/etcd/etcdserver/etcdserverpb"
|
||||||
|
"github.com/coreos/etcd/pkg/testutil"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestV3CurlPutGetNoTLS(t *testing.T) { testCurlPutGetGRPCGateway(t, &configNoTLS) }
|
||||||
|
func TestV3CurlPutGetAutoTLS(t *testing.T) { testCurlPutGetGRPCGateway(t, &configAutoTLS) }
|
||||||
|
func TestV3CurlPutGetAllTLS(t *testing.T) { testCurlPutGetGRPCGateway(t, &configTLS) }
|
||||||
|
func TestV3CurlPutGetPeerTLS(t *testing.T) { testCurlPutGetGRPCGateway(t, &configPeerTLS) }
|
||||||
|
func TestV3CurlPutGetClientTLS(t *testing.T) { testCurlPutGetGRPCGateway(t, &configClientTLS) }
|
||||||
|
func testCurlPutGetGRPCGateway(t *testing.T, cfg *etcdProcessClusterConfig) {
|
||||||
|
defer testutil.AfterTest(t)
|
||||||
|
|
||||||
|
epc, err := newEtcdProcessCluster(cfg)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("could not start etcd process cluster (%v)", err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
if cerr := epc.Close(); err != nil {
|
||||||
|
t.Fatalf("error closing etcd processes (%v)", cerr)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
var (
|
||||||
|
key = []byte("foo")
|
||||||
|
value = []byte("bar") // this will be automatically base64-encoded by Go
|
||||||
|
|
||||||
|
expectPut = `"revision":"`
|
||||||
|
expectGet = `"value":"`
|
||||||
|
)
|
||||||
|
putData, err := json.Marshal(&etcdserverpb.PutRequest{
|
||||||
|
Key: key,
|
||||||
|
Value: value,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
rangeData, err := json.Marshal(&etcdserverpb.RangeRequest{
|
||||||
|
Key: key,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := cURLPost(epc, cURLReq{endpoint: "/v3alpha/kv/put", value: string(putData), expected: expectPut}); err != nil {
|
||||||
|
t.Fatalf("failed put with curl (%v)", err)
|
||||||
|
}
|
||||||
|
if err := cURLPost(epc, cURLReq{endpoint: "/v3alpha/kv/range", value: string(rangeData), expected: expectGet}); err != nil {
|
||||||
|
t.Fatalf("failed get with curl (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.clientTLS == clientTLSAndNonTLS {
|
||||||
|
if err := cURLPost(epc, cURLReq{endpoint: "/v3alpha/kv/range", value: string(rangeData), expected: expectGet, isTLS: true}); err != nil {
|
||||||
|
t.Fatalf("failed get with curl (%v)", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user