-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCluster_test.go
153 lines (118 loc) · 3.09 KB
/
Cluster_test.go
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
package cluster
//import cluster "github.com/pforpallav/cluster-server"
import (
"fmt"
"testing"
"time"
//"encoding/json"
//"strings"
)
const (
NUMPEERS = 5
MAINLOOP = 1000
)
var WaitSender chan int
var WaitReceiver chan int
var WaitReceivers [NUMPEERS]chan int
// gothread for sending messages
func Sender(PeerArray [NUMPEERS]Server, t *testing.T) {
for i := 0; i < MAINLOOP; i++ {
for j := 1; j <= NUMPEERS; j++ {
for k := 1; k <= NUMPEERS; k++ {
if k == j {
continue
}
msg := string(string(j) + " to " + string(k))
PeerArray[j-1].Outbox() <- &Envelope{Pid: k, Msg: msg}
}
}
<-time.After(20000 * time.Nanosecond)
}
WaitSender <- 1
}
// gothread for checking inboxes
func Receiver(PeerArray [NUMPEERS]Server, t *testing.T) {
for i := 1; i <= NUMPEERS; i++ {
//fmt.Printf("Waiting %d\n", i)
go func(serverID int) {
for j := 0; j < (NUMPEERS-1)*MAINLOOP; j++ {
//fmt.Printf("Waiting %d", serverID)
select {
case e := <-PeerArray[serverID-1].Inbox():
//fmt.Printf("Received msg from %d: '%s'\n", e.Pid, e.Msg)
msg := string(string(e.Pid) + " to " + string(serverID))
if e.Msg != msg {
t.Error("Recieved message mismatch")
}
case <-time.After(10 * time.Second):
t.Error("Timed out")
}
}
//fmt.Printf("%d Done\n", i)
WaitReceivers[serverID-1] <- 1
}(i)
}
for k := 0; k < NUMPEERS; k++ {
<-WaitReceivers[k]
}
WaitReceiver <- 1
}
func Broadcaster(PeerArray [NUMPEERS]Server, t *testing.T){
for i := 0; i < MAINLOOP; i++ {
for j := 1; j <= NUMPEERS; j++ {
msg := string(string(j) + " to all")
PeerArray[j-1].Outbox() <- &Envelope{Pid: BROADCAST, Msg: msg}
<-time.After(60000 * time.Nanosecond)
}
}
WaitSender <- 1
}
func BroadcastReceiver(PeerArray [NUMPEERS]Server, t *testing.T) {
for i := 1; i <= NUMPEERS; i++ {
//fmt.Printf("Waiting %d\n", i)
go func(serverID int) {
for j := 0; j < (NUMPEERS-1)*MAINLOOP; j++ {
//fmt.Printf("Waiting %d", serverID)
select {
case e := <-PeerArray[serverID-1].Inbox():
//fmt.Printf("Received msg from %d: '%s'\n", e.Pid, e.Msg)
msg := string(string(e.Pid) + " to all")
if e.Msg != msg {
t.Error("Recieved message mismatch")
}
case <-time.After(10 * time.Second):
t.Error("Timed out")
}
}
//fmt.Printf("%d Done\n", i)
WaitReceivers[serverID-1] <- 1
}(i)
}
for k := 0; k < NUMPEERS; k++ {
<-WaitReceivers[k]
}
WaitReceiver <- 1
}
func TestCluster(t *testing.T) {
var PeerArray [NUMPEERS]Server
for i := 1; i <= NUMPEERS; i++ {
PeerArray[i-1] = AddPeer(i, "config.json")
}
fmt.Printf("All servers started!\nInitiating direct message testing.\n")
WaitSender = make(chan int)
WaitReceiver = make(chan int)
for i := 0; i < NUMPEERS; i++ {
WaitReceivers[i] = make(chan int)
}
go Sender(PeerArray, t)
go Receiver(PeerArray, t)
//wait on Sender and Receiver
<-WaitSender
<-WaitReceiver
fmt.Printf("Initiating broadcast message testing.\n")
go Broadcaster(PeerArray, t)
go BroadcastReceiver(PeerArray, t)
//wait on Broadcaster and BroadcastReceiver
<-WaitSender
<-WaitReceiver
}