| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // 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 leasehttp
- import (
- "net/http"
- "net/http/httptest"
- "os"
- "testing"
- "time"
- "github.com/coreos/etcd/lease"
- "github.com/coreos/etcd/mvcc/backend"
- "golang.org/x/net/context"
- )
- func TestRenewHTTP(t *testing.T) {
- be, tmpPath := backend.NewTmpBackend(time.Hour, 10000)
- defer os.Remove(tmpPath)
- defer be.Close()
- le := lease.NewLessor(be, int64(5))
- le.Promote(time.Second)
- l, err := le.Grant(1, int64(5))
- if err != nil {
- t.Fatalf("failed to create lease: %v", err)
- }
- ts := httptest.NewServer(NewHandler(le))
- defer ts.Close()
- ttl, err := RenewHTTP(l.ID, ts.URL+LeasePrefix, http.DefaultTransport, time.Second)
- if err != nil {
- t.Fatal(err)
- }
- if ttl != 5 {
- t.Fatalf("ttl expected 5, got %d", ttl)
- }
- }
- func TestTimeToLiveHTTP(t *testing.T) {
- be, tmpPath := backend.NewTmpBackend(time.Hour, 10000)
- defer os.Remove(tmpPath)
- defer be.Close()
- le := lease.NewLessor(be, int64(5))
- le.Promote(time.Second)
- l, err := le.Grant(1, int64(5))
- if err != nil {
- t.Fatalf("failed to create lease: %v", err)
- }
- ts := httptest.NewServer(NewHandler(le))
- defer ts.Close()
- resp, err := TimeToLiveHTTP(context.TODO(), l.ID, true, ts.URL+LeaseInternalPrefix, http.DefaultTransport)
- if err != nil {
- t.Fatal(err)
- }
- if resp.LeaseTimeToLiveResponse.ID != 1 {
- t.Fatalf("lease id expected 1, got %d", resp.LeaseTimeToLiveResponse.ID)
- }
- if resp.LeaseTimeToLiveResponse.GrantedTTL != 5 {
- t.Fatalf("granted TTL expected 5, got %d", resp.LeaseTimeToLiveResponse.GrantedTTL)
- }
- }
|