| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
- // You can obtain one at http://mozilla.org/MPL/2.0/.
- package events
- import (
- "fmt"
- "testing"
- "time"
- )
- const timeout = 100 * time.Millisecond
- func init() {
- runningTests = true
- }
- func TestNewLogger(t *testing.T) {
- l := NewLogger()
- if l == nil {
- t.Fatal("Unexpected nil Logger")
- }
- }
- func TestSubscriber(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(0)
- defer l.Unsubscribe(s)
- if s == nil {
- t.Fatal("Unexpected nil Subscription")
- }
- }
- func TestTimeout(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(0)
- defer l.Unsubscribe(s)
- _, err := s.Poll(timeout)
- if err != ErrTimeout {
- t.Fatal("Unexpected non-Timeout error:", err)
- }
- }
- func TestEventBeforeSubscribe(t *testing.T) {
- l := NewLogger()
- l.Log(DeviceConnected, "foo")
- s := l.Subscribe(0)
- defer l.Unsubscribe(s)
- _, err := s.Poll(timeout)
- if err != ErrTimeout {
- t.Fatal("Unexpected non-Timeout error:", err)
- }
- }
- func TestEventAfterSubscribe(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- defer l.Unsubscribe(s)
- l.Log(DeviceConnected, "foo")
- ev, err := s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- if ev.Type != DeviceConnected {
- t.Error("Incorrect event type", ev.Type)
- }
- switch v := ev.Data.(type) {
- case string:
- if v != "foo" {
- t.Error("Incorrect Data string", v)
- }
- default:
- t.Errorf("Incorrect Data type %#v", v)
- }
- }
- func TestEventAfterSubscribeIgnoreMask(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(DeviceDisconnected)
- defer l.Unsubscribe(s)
- l.Log(DeviceConnected, "foo")
- _, err := s.Poll(timeout)
- if err != ErrTimeout {
- t.Fatal("Unexpected non-Timeout error:", err)
- }
- }
- func TestBufferOverflow(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- defer l.Unsubscribe(s)
- t0 := time.Now()
- for i := 0; i < BufferSize*2; i++ {
- l.Log(DeviceConnected, "foo")
- }
- if time.Since(t0) > timeout {
- t.Fatalf("Logging took too long")
- }
- }
- func TestUnsubscribe(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- l.Log(DeviceConnected, "foo")
- _, err := s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- l.Unsubscribe(s)
- l.Log(DeviceConnected, "foo")
- _, err = s.Poll(timeout)
- if err != ErrClosed {
- t.Fatal("Unexpected non-Closed error:", err)
- }
- }
- func TestGlobalIDs(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- defer l.Unsubscribe(s)
- l.Log(DeviceConnected, "foo")
- _ = l.Subscribe(AllEvents)
- l.Log(DeviceConnected, "bar")
- ev, err := s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- if ev.Data.(string) != "foo" {
- t.Fatal("Incorrect event:", ev)
- }
- id := ev.GlobalID
- ev, err = s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- if ev.Data.(string) != "bar" {
- t.Fatal("Incorrect event:", ev)
- }
- if ev.GlobalID != id+1 {
- t.Fatalf("ID not incremented (%d != %d)", ev.GlobalID, id+1)
- }
- }
- func TestSubscriptionIDs(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(DeviceConnected)
- defer l.Unsubscribe(s)
- l.Log(DeviceDisconnected, "a")
- l.Log(DeviceConnected, "b")
- l.Log(DeviceConnected, "c")
- l.Log(DeviceDisconnected, "d")
- ev, err := s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- if ev.GlobalID != 2 {
- t.Fatal("Incorrect GlobalID:", ev.GlobalID)
- }
- if ev.SubscriptionID != 1 {
- t.Fatal("Incorrect SubscriptionID:", ev.SubscriptionID)
- }
- ev, err = s.Poll(timeout)
- if err != nil {
- t.Fatal("Unexpected error:", err)
- }
- if ev.GlobalID != 3 {
- t.Fatal("Incorrect GlobalID:", ev.GlobalID)
- }
- if ev.SubscriptionID != 2 {
- t.Fatal("Incorrect SubscriptionID:", ev.SubscriptionID)
- }
- ev, err = s.Poll(timeout)
- if err != ErrTimeout {
- t.Fatal("Unexpected error:", err)
- }
- }
- func TestBufferedSub(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- defer l.Unsubscribe(s)
- bs := NewBufferedSubscription(s, 10*BufferSize)
- go func() {
- for i := 0; i < 10*BufferSize; i++ {
- l.Log(DeviceConnected, fmt.Sprintf("event-%d", i))
- if i%30 == 0 {
- // Give the buffer routine time to pick up the events
- time.Sleep(20 * time.Millisecond)
- }
- }
- }()
- recv := 0
- for recv < 10*BufferSize {
- evs := bs.Since(recv, nil)
- for _, ev := range evs {
- if ev.GlobalID != recv+1 {
- t.Fatalf("Incorrect ID; %d != %d", ev.GlobalID, recv+1)
- }
- recv = ev.GlobalID
- }
- }
- }
- func BenchmarkBufferedSub(b *testing.B) {
- l := NewLogger()
- s := l.Subscribe(AllEvents)
- defer l.Unsubscribe(s)
- bufferSize := BufferSize
- bs := NewBufferedSubscription(s, bufferSize)
- // The coord channel paces the sender according to the receiver,
- // ensuring that no events are dropped. The benchmark measures sending +
- // receiving + synchronization overhead.
- coord := make(chan struct{}, bufferSize)
- for i := 0; i < bufferSize-1; i++ {
- coord <- struct{}{}
- }
- // Receive the events
- done := make(chan struct{})
- go func() {
- defer close(done)
- recv := 0
- var evs []Event
- for i := 0; i < b.N; {
- evs = bs.Since(recv, evs[:0])
- for _, ev := range evs {
- if ev.GlobalID != recv+1 {
- b.Fatal("skipped event", ev.GlobalID, recv)
- }
- recv = ev.GlobalID
- coord <- struct{}{}
- }
- i += len(evs)
- }
- }()
- // Send the events
- eventData := map[string]string{
- "foo": "bar",
- "other": "data",
- "and": "something else",
- }
- for i := 0; i < b.N; i++ {
- l.Log(DeviceConnected, eventData)
- <-coord
- }
- <-done
- b.ReportAllocs()
- }
- func TestSinceUsesSubscriptionId(t *testing.T) {
- l := NewLogger()
- s := l.Subscribe(DeviceConnected)
- defer l.Unsubscribe(s)
- bs := NewBufferedSubscription(s, 10*BufferSize)
- l.Log(DeviceConnected, "a") // SubscriptionID = 1
- l.Log(DeviceDisconnected, "b")
- l.Log(DeviceDisconnected, "c")
- l.Log(DeviceConnected, "d") // SubscriptionID = 2
- // We need to loop for the events, as they may not all have been
- // delivered to the buffered subscription when we get here.
- t0 := time.Now()
- for time.Since(t0) < time.Second {
- events := bs.Since(0, nil)
- if len(events) == 2 {
- break
- }
- if len(events) > 2 {
- t.Fatal("Incorrect number of events:", len(events))
- }
- }
- events := bs.Since(1, nil)
- if len(events) != 1 {
- t.Fatal("Incorrect number of events:", len(events))
- }
- }
|