compactor_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // Copyright 2015 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package compactor
  15. import (
  16. "reflect"
  17. "testing"
  18. "time"
  19. pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
  20. "github.com/coreos/etcd/pkg/testutil"
  21. "github.com/jonboulle/clockwork"
  22. "golang.org/x/net/context"
  23. )
  24. func TestPeriodic(t *testing.T) {
  25. fc := clockwork.NewFakeClock()
  26. rg := &fakeRevGetter{testutil.NewRecorderStream(), 0}
  27. compactable := &fakeCompactable{testutil.NewRecorderStream()}
  28. tb := &Periodic{
  29. clock: fc,
  30. periodInHour: 1,
  31. rg: rg,
  32. c: compactable,
  33. }
  34. tb.Run()
  35. defer tb.Stop()
  36. n := int(time.Hour / checkCompactionInterval)
  37. for i := 0; i < 3; i++ {
  38. for j := 0; j < n; j++ {
  39. rg.Wait(1)
  40. fc.Advance(checkCompactionInterval)
  41. }
  42. a, err := compactable.Wait(1)
  43. if err != nil {
  44. t.Fatal(err)
  45. }
  46. if !reflect.DeepEqual(a[0].Params[0], &pb.CompactionRequest{Revision: int64(i*n) + 1}) {
  47. t.Errorf("compact request = %v, want %v", a[0].Params[0], &pb.CompactionRequest{Revision: int64(i*n) + 1})
  48. }
  49. }
  50. }
  51. func TestPeriodicPause(t *testing.T) {
  52. fc := clockwork.NewFakeClock()
  53. compactable := &fakeCompactable{testutil.NewRecorderStream()}
  54. rg := &fakeRevGetter{testutil.NewRecorderStream(), 0}
  55. tb := &Periodic{
  56. clock: fc,
  57. periodInHour: 1,
  58. rg: rg,
  59. c: compactable,
  60. }
  61. tb.Run()
  62. tb.Pause()
  63. n := int(time.Hour / checkCompactionInterval)
  64. for i := 0; i < 3*n; i++ {
  65. rg.Wait(1)
  66. fc.Advance(checkCompactionInterval)
  67. }
  68. select {
  69. case a := <-compactable.Chan():
  70. t.Fatalf("unexpected action %v", a)
  71. case <-time.After(10 * time.Millisecond):
  72. }
  73. tb.Resume()
  74. rg.Wait(1)
  75. fc.Advance(checkCompactionInterval)
  76. a, err := compactable.Wait(1)
  77. if err != nil {
  78. t.Fatal(err)
  79. }
  80. if !reflect.DeepEqual(a[0].Params[0], &pb.CompactionRequest{Revision: int64(2*n) + 2}) {
  81. t.Errorf("compact request = %v, want %v", a[0].Params[0], &pb.CompactionRequest{Revision: int64(2*n) + 2})
  82. }
  83. }
  84. type fakeCompactable struct {
  85. testutil.Recorder
  86. }
  87. func (fc *fakeCompactable) Compact(ctx context.Context, r *pb.CompactionRequest) (*pb.CompactionResponse, error) {
  88. fc.Record(testutil.Action{Name: "c", Params: []interface{}{r}})
  89. return &pb.CompactionResponse{}, nil
  90. }
  91. type fakeRevGetter struct {
  92. testutil.Recorder
  93. rev int64
  94. }
  95. func (fr *fakeRevGetter) Rev() int64 {
  96. fr.Record(testutil.Action{Name: "g"})
  97. fr.rev++
  98. return fr.rev
  99. }