File: service_manager_test.go

package info (click to toggle)
golang-github-ngaut-sync2 0.0~git20141008.0.7a24ed7-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 96 kB
  • sloc: makefile: 3
file content (176 lines) | stat: -rw-r--r-- 3,950 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright 2013, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sync2

import (
	"fmt"
	"testing"
	"time"
)

type testService struct {
	activated AtomicInt64
	t         *testing.T
}

func (ts *testService) service(svc *ServiceContext) error {
	if !ts.activated.CompareAndSwap(0, 1) {
		ts.t.Fatalf("service called more than once")
	}
	for svc.IsRunning() {
		time.Sleep(10 * time.Millisecond)

	}
	if !ts.activated.CompareAndSwap(1, 0) {
		ts.t.Fatalf("service ended more than once")
	}
	return nil
}

func (ts *testService) selectService(svc *ServiceContext) error {
	if !ts.activated.CompareAndSwap(0, 1) {
		ts.t.Fatalf("service called more than once")
	}
serviceLoop:
	for svc.IsRunning() {
		select {
		case <-time.After(1 * time.Second):
			ts.t.Errorf("service didn't stop when shutdown channel was closed")
		case <-svc.ShuttingDown:
			break serviceLoop
		}
	}
	if !ts.activated.CompareAndSwap(1, 0) {
		ts.t.Fatalf("service ended more than once")
	}
	return nil
}

func TestServiceManager(t *testing.T) {
	ts := &testService{t: t}
	var sm ServiceManager
	if sm.StateName() != "Stopped" {
		t.Errorf("want Stopped, got %s", sm.StateName())
	}
	result := sm.Go(ts.service)
	if !result {
		t.Errorf("want true, got false")
	}
	if sm.StateName() != "Running" {
		t.Errorf("want Running, got %s", sm.StateName())
	}
	time.Sleep(5 * time.Millisecond)
	if val := ts.activated.Get(); val != 1 {
		t.Errorf("want 1, got %d", val)
	}
	result = sm.Go(ts.service)
	if result {
		t.Errorf("want false, got true")
	}
	result = sm.Stop()
	if !result {
		t.Errorf("want true, got false")
	}
	if val := ts.activated.Get(); val != 0 {
		t.Errorf("want 0, got %d", val)
	}
	result = sm.Stop()
	if result {
		t.Errorf("want false, got true")
	}
	sm.state.Set(SERVICE_SHUTTING_DOWN)
	if sm.StateName() != "ShuttingDown" {
		t.Errorf("want ShuttingDown, got %s", sm.StateName())
	}
}

func TestServiceManagerSelect(t *testing.T) {
	ts := &testService{t: t}
	var sm ServiceManager
	if sm.StateName() != "Stopped" {
		t.Errorf("want Stopped, got %s", sm.StateName())
	}
	result := sm.Go(ts.selectService)
	if !result {
		t.Errorf("want true, got false")
	}
	if sm.StateName() != "Running" {
		t.Errorf("want Running, got %s", sm.StateName())
	}
	time.Sleep(5 * time.Millisecond)
	if val := ts.activated.Get(); val != 1 {
		t.Errorf("want 1, got %d", val)
	}
	result = sm.Go(ts.service)
	if result {
		t.Errorf("want false, got true")
	}
	result = sm.Stop()
	if !result {
		t.Errorf("want true, got false")
	}
	if val := ts.activated.Get(); val != 0 {
		t.Errorf("want 0, got %d", val)
	}
	result = sm.Stop()
	if result {
		t.Errorf("want false, got true")
	}
	sm.state.Set(SERVICE_SHUTTING_DOWN)
	if sm.StateName() != "ShuttingDown" {
		t.Errorf("want ShuttingDown, got %s", sm.StateName())
	}
}

func TestServiceManagerWaitNotRunning(t *testing.T) {
	done := make(chan struct{})
	var sm ServiceManager
	go func() {
		sm.Wait()
		close(done)
	}()
	select {
	case <-done:
	case <-time.After(1 * time.Second):
		t.Errorf("Wait() blocked even though service wasn't running.")
	}
}

func TestServiceManagerWait(t *testing.T) {
	done := make(chan struct{})
	stop := make(chan struct{})
	var sm ServiceManager
	sm.Go(func(*ServiceContext) error {
		<-stop
		return nil
	})
	go func() {
		sm.Wait()
		close(done)
	}()
	time.Sleep(100 * time.Millisecond)
	select {
	case <-done:
		t.Errorf("Wait() didn't block while service was still running.")
	default:
	}
	close(stop)
	select {
	case <-done:
	case <-time.After(100 * time.Millisecond):
		t.Errorf("Wait() didn't unblock when service stopped.")
	}
}

func TestServiceManagerJoin(t *testing.T) {
	want := "error 123"
	var sm ServiceManager
	sm.Go(func(*ServiceContext) error {
		return fmt.Errorf("error 123")
	})
	if got := sm.Join().Error(); got != want {
		t.Errorf("Join().Error() = %#v, want %#v", got, want)
	}
}