blob: 278f7759ba777bf841c45b549d257a5f2a7f1744 (
plain)
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
|
package com.orbekk.paxos;
import static org.junit.Assert.*;
import com.googlecode.jsonrpc4j.JsonRpcServer;
import com.orbekk.same.ConnectionManagerImpl;
import com.orbekk.same.http.RpcServlet;
import com.orbekk.same.http.ServerBuilder;
import com.orbekk.same.http.ServerContainer;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Server;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class PaxosServiceFunctionalTest {
ConnectionManagerImpl connections = new ConnectionManagerImpl(500, 500);
List<String> paxosUrls = new ArrayList<String>();
ServerContainer server;
String myUrl;
int successfulProposals = 0;
@Before
public void setUp() throws Exception {
ServerBuilder builder = new ServerBuilder(0);
List<String> tempUrls = setupPaxos(builder, 10);
server = builder.build();
server.start();
myUrl = "http://localhost:" + server.getPort();
addUrls(tempUrls);
System.out.println(paxosUrls);
}
@After
public void tearDown() throws Exception {
server.stop();
}
public List<String> setupPaxos(ServerBuilder builder, int instances) {
List<String> tempUrls = new ArrayList<String>();
for (int i = 1; i <= instances; i++) {
JsonRpcServer jsonServer = new JsonRpcServer(
new PaxosServiceImpl("P" + i + ": "), PaxosService.class);
String serviceId = "/PaxosService" + i + ".json";
builder.withServlet(new RpcServlet(jsonServer), serviceId);
tempUrls.add(serviceId);
}
return tempUrls;
}
public void addUrls(List<String> services) {
for (String url : services) {
paxosUrls.add(myUrl + url);
}
}
@Test
public void testMasterElection() {
MasterProposer m1 = new MasterProposer("http://client1", paxosUrls,
connections);
assertTrue(m1.propose(1));
}
@Test
public void testWithCompetition() {
int proposers = 5;
List<Thread> masterProposers = new ArrayList<Thread>();
for (int i = 1; i <= proposers; i++) {
final int j = i;
masterProposers.add(new Thread() {
@Override public void run() {
MasterProposer client =
new MasterProposer("http:/client" + j, paxosUrls,
connections);
if (client.proposeRetry(1)) {
incrementSuccessfulProposals();
}
}
});
}
for (Thread t : masterProposers) {
t.start();
}
for (Thread t : masterProposers) {
try {
t.join();
} catch (InterruptedException e) {
// Ignore.
}
}
assertEquals(5, successfulProposals);
}
public synchronized void incrementSuccessfulProposals() {
successfulProposals += 1;
}
}
|