-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e2e: add gRPC gateway Lease tests #9460
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
// Copyright 2018 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 ( | ||
"fmt" | ||
"testing" | ||
|
||
pb "github.com/coreos/etcd/etcdserver/etcdserverpb" | ||
) | ||
|
||
func TestV3CurlLeaseGrantNoTLS(t *testing.T) { | ||
for _, p := range apiPrefix { | ||
testCtl(t, testV3CurlLeaseGrant, withApiPrefix(p), withCfg(configNoTLS)) | ||
} | ||
} | ||
func TestV3CurlLeaseRevokeNoTLS(t *testing.T) { | ||
for _, p := range apiPrefix { | ||
testCtl(t, testV3CurlLeaseRevoke, withApiPrefix(p), withCfg(configNoTLS)) | ||
} | ||
} | ||
func TestV3CurlLeaseLeasesNoTLS(t *testing.T) { | ||
for _, p := range apiPrefix { | ||
testCtl(t, testV3CurlLeaseLeases, withApiPrefix(p), withCfg(configNoTLS)) | ||
} | ||
} | ||
func TestV3CurlLeaseKeepAliveNoTLS(t *testing.T) { | ||
for _, p := range apiPrefix { | ||
testCtl(t, testV3CurlLeaseKeepAlive, withApiPrefix(p), withCfg(configNoTLS)) | ||
} | ||
} | ||
|
||
type v3cURLTest struct { | ||
endpoint string | ||
value string | ||
expected string | ||
} | ||
|
||
func testV3CurlLeaseGrant(cx ctlCtx) { | ||
leaseID := randomLeaseID() | ||
|
||
tests := []v3cURLTest{ | ||
{ | ||
endpoint: "/lease/grant", | ||
value: gwLeaseGrant(cx, leaseID, 0), | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
{ | ||
endpoint: "/lease/grant", | ||
value: gwLeaseGrant(cx, 0, 20), | ||
expected: `"TTL":"20"`, | ||
}, | ||
{ | ||
endpoint: "/kv/put", | ||
value: gwKVPutLease(cx, "foo", "bar", leaseID), | ||
expected: `"revision":"`, | ||
}, | ||
{ | ||
endpoint: "/kv/lease/timetolive", | ||
value: gwLeaseTTLWithKeys(cx, leaseID), | ||
expected: `"grantedTTL"`, | ||
}, | ||
} | ||
if err := cURLWithExpected(cx, tests); err != nil { | ||
cx.t.Fatalf("testV3CurlLeaseGrant: %v", err) | ||
} | ||
} | ||
|
||
func testV3CurlLeaseRevoke(cx ctlCtx) { | ||
leaseID := randomLeaseID() | ||
|
||
tests := []v3cURLTest{ | ||
{ | ||
endpoint: "/lease/grant", | ||
value: gwLeaseGrant(cx, leaseID, 0), | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
{ | ||
endpoint: "/kv/lease/revoke", | ||
value: gwLeaseRevoke(cx, leaseID), | ||
expected: `"revision":"`, | ||
}, | ||
} | ||
if err := cURLWithExpected(cx, tests); err != nil { | ||
cx.t.Fatalf("testV3CurlLeaseRevoke: %v", err) | ||
} | ||
} | ||
|
||
func testV3CurlLeaseLeases(cx ctlCtx) { | ||
leaseID := randomLeaseID() | ||
|
||
tests := []v3cURLTest{ | ||
{ | ||
endpoint: "/lease/grant", | ||
value: gwLeaseGrant(cx, leaseID, 0), | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
{ | ||
endpoint: "/kv/lease/leases", | ||
value: "{}", | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
} | ||
if err := cURLWithExpected(cx, tests); err != nil { | ||
cx.t.Fatalf("testV3CurlLeaseGrant: %v", err) | ||
} | ||
} | ||
|
||
func testV3CurlLeaseKeepAlive(cx ctlCtx) { | ||
leaseID := randomLeaseID() | ||
|
||
tests := []v3cURLTest{ | ||
{ | ||
endpoint: "/lease/grant", | ||
value: gwLeaseGrant(cx, leaseID, 0), | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
{ | ||
endpoint: "/lease/keepalive", | ||
value: gwLeaseKeepAlive(cx, leaseID), | ||
expected: gwLeaseIDExpected(leaseID), | ||
}, | ||
} | ||
if err := cURLWithExpected(cx, tests); err != nil { | ||
cx.t.Fatalf("testV3CurlLeaseGrant: %v", err) | ||
} | ||
} | ||
|
||
func gwLeaseIDExpected(leaseID int64) string { | ||
return fmt.Sprintf(`"ID":"%d"`, leaseID) | ||
} | ||
|
||
func gwLeaseTTLWithKeys(cx ctlCtx, leaseID int64) string { | ||
d := &pb.LeaseTimeToLiveRequest{ID: leaseID, Keys: true} | ||
s, err := dataMarshal(d) | ||
if err != nil { | ||
cx.t.Fatalf("gwLeaseTTLWithKeys: error (%v)", err) | ||
} | ||
return s | ||
} | ||
|
||
func gwLeaseKeepAlive(cx ctlCtx, leaseID int64) string { | ||
d := &pb.LeaseKeepAliveRequest{ID: leaseID} | ||
s, err := dataMarshal(d) | ||
if err != nil { | ||
cx.t.Fatalf("gwLeaseKeepAlive: Marshal error (%v)", err) | ||
} | ||
return s | ||
} | ||
|
||
func gwLeaseGrant(cx ctlCtx, leaseID int64, ttl int64) string { | ||
d := &pb.LeaseGrantRequest{ID: leaseID, TTL: ttl} | ||
s, err := dataMarshal(d) | ||
if err != nil { | ||
cx.t.Fatalf("gwLeaseGrant: Marshal error (%v)", err) | ||
} | ||
return s | ||
} | ||
|
||
func gwLeaseRevoke(cx ctlCtx, leaseID int64) string { | ||
d := &pb.LeaseRevokeRequest{ID: leaseID} | ||
s, err := dataMarshal(d) | ||
if err != nil { | ||
cx.t.Fatalf("gwLeaseRevoke: Marshal error (%v)", err) | ||
} | ||
return s | ||
} | ||
|
||
func gwKVPutLease(cx ctlCtx, k string, v string, leaseID int64) string { | ||
d := pb.PutRequest{Key: []byte(k), Value: []byte(v), Lease: leaseID} | ||
s, err := dataMarshal(d) | ||
if err != nil { | ||
cx.t.Fatalf("gwKVPutLease: Marshal error (%v)", err) | ||
} | ||
return s | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have a ton of TLS coverage, and now tests are taking too long.
Just keep the one with no TLS?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK sounds good I misunderstood that you wanted to have all of these.