blob: 4765c51c24b4d67bd465f2dc54459ff3912466e9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 backend
import (
"context"
"fmt"
errorsEx "github.com/apache/servicecomb-service-center/pkg/errors"
simple "github.com/apache/servicecomb-service-center/pkg/time"
"github.com/apache/servicecomb-service-center/server/plugin/registry/buildin"
"testing"
"time"
)
type mockRegistry struct {
*buildin.Registry
LeaseErr error
}
func (c *mockRegistry) LeaseRenew(ctx context.Context, leaseID int64) (TTL int64, err error) {
if c.LeaseErr != nil {
return 0, c.LeaseErr
}
return 1, nil
}
func TestLeaseTask_Do(t *testing.T) {
c := &mockRegistry{}
lt := &LeaseTask{
Client: c,
key: ToLeaseAsyncTaskKey("/a"),
LeaseID: 1,
recvTime: simple.FromTime(time.Now()),
}
c.LeaseErr = errorsEx.InternalError("lease not found")
err := lt.Do(context.Background())
if err != nil || lt.Err() != nil {
t.Fatalf("TestLeaseTask_Do failed")
}
c.LeaseErr = fmt.Errorf("network error")
err = lt.Do(context.Background())
if err == nil || lt.Err() == nil {
t.Fatalf("TestLeaseTask_Do failed")
}
}