123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // Copyright 2015 CoreOS, Inc.
- //
- // 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 compactor
- import (
- "reflect"
- "testing"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/github.com/jonboulle/clockwork"
- "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
- pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
- "github.com/coreos/etcd/pkg/testutil"
- )
- func TestPeriodic(t *testing.T) {
- fc := clockwork.NewFakeClock()
- compactable := &fakeCompactable{testutil.NewRecorderStream()}
- tb := &Periodic{
- clock: fc,
- periodInHour: 1,
- rg: &fakeRevGetter{},
- c: compactable,
- }
- tb.Run()
- defer tb.Stop()
- n := int(time.Hour / checkCompactionInterval)
- for i := 0; i < 3; i++ {
- for j := 0; j < n; j++ {
- time.Sleep(5 * time.Millisecond)
- fc.Advance(checkCompactionInterval)
- }
- a, err := compactable.Wait(1)
- if err != nil {
- t.Fatal(err)
- }
- if !reflect.DeepEqual(a[0].Params[0], &pb.CompactionRequest{Revision: int64(i*n) + 1}) {
- t.Errorf("compact request = %v, want %v", a[0].Params[0], &pb.CompactionRequest{Revision: int64(i*n) + 1})
- }
- }
- }
- func TestPeriodicPause(t *testing.T) {
- fc := clockwork.NewFakeClock()
- compactable := &fakeCompactable{testutil.NewRecorderStream()}
- tb := &Periodic{
- clock: fc,
- periodInHour: 1,
- rg: &fakeRevGetter{},
- c: compactable,
- }
- tb.Run()
- tb.Pause()
- n := int(time.Hour / checkCompactionInterval)
- for i := 0; i < 3*n; i++ {
- time.Sleep(5 * time.Millisecond)
- fc.Advance(checkCompactionInterval)
- }
- select {
- case a := <-compactable.Chan():
- t.Fatal("unexpected action %v", a)
- case <-time.After(10 * time.Millisecond):
- }
- tb.Resume()
- fc.Advance(checkCompactionInterval)
- a, err := compactable.Wait(1)
- if err != nil {
- t.Fatal(err)
- }
- if !reflect.DeepEqual(a[0].Params[0], &pb.CompactionRequest{Revision: int64(2*n) + 2}) {
- t.Errorf("compact request = %v, want %v", a[0].Params[0], &pb.CompactionRequest{Revision: int64(2*n) + 2})
- }
- }
- type fakeCompactable struct {
- testutil.Recorder
- }
- func (fc *fakeCompactable) Compact(ctx context.Context, r *pb.CompactionRequest) (*pb.CompactionResponse, error) {
- fc.Record(testutil.Action{Name: "c", Params: []interface{}{r}})
- return &pb.CompactionResponse{}, nil
- }
- type fakeRevGetter struct {
- rev int64
- }
- func (fr *fakeRevGetter) Rev() int64 {
- fr.rev++
- return fr.rev
- }
|