Browse Source

Removed tests and fixed thread unsafety

- Removed tests to the point where they actually succeed
- Made the clients reside in a CopyOnWriteArrayList to solve thread
unsafely issue
Tankernn 8 years ago
parent
commit
2c1ef1e8b8

+ 1 - 1
src/main/java/server/Channel.java

@@ -10,7 +10,7 @@ public class Channel extends ClientCollection {
 	}
 	
 	@Override
-	void broadcast(MessagePacket mess) {
+	public synchronized void broadcast(MessagePacket mess) {
 		mess.channel = name;
 		super.broadcast(mess);
 	}

+ 5 - 5
src/main/java/server/ClientCollection.java

@@ -1,8 +1,8 @@
 package server;
 
-import java.util.ArrayList;
 import java.util.List;
 import java.util.Optional;
+import java.util.concurrent.CopyOnWriteArrayList;
 
 import common.MessagePacket;
 
@@ -11,7 +11,7 @@ import common.MessagePacket;
  */
 public class ClientCollection {
 	
-	private List<Client> clients = new ArrayList<>();
+	private List<Client> clients = new CopyOnWriteArrayList<>();
 
 	/**
 	 * Gets the user with specified username.
@@ -30,7 +30,7 @@ public class ClientCollection {
 	 * @param mess
 	 *            The message object to send.
 	 */
-	void broadcast(MessagePacket mess) {
+	public synchronized void broadcast(MessagePacket mess) {
 		if (mess.validate()) {
 			for (Client c : clients)
 				c.send(mess);
@@ -59,7 +59,7 @@ public class ClientCollection {
 	 * @param user
 	 *            User to remove.
 	 */
-	public void remove(Client user) {
+	public synchronized void remove(Client user) {
 		remove(user, false);
 	}
 
@@ -71,7 +71,7 @@ public class ClientCollection {
 	 * @param disconnect
 	 *            Should the user also be disconnected?
 	 */
-	public void remove(Client user, boolean disconnect) {
+	public synchronized void remove(Client user, boolean disconnect) {
 		if (disconnect)
 			user.disconnect();
 		clients.remove(user);

+ 4 - 1
src/main/java/server/Server.java

@@ -6,6 +6,7 @@ import java.io.FileReader;
 import java.io.IOException;
 import java.io.PrintWriter;
 import java.net.ServerSocket;
+import java.net.Socket;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Optional;
@@ -95,7 +96,9 @@ public class Server {
 		while (!so.isClosed()) {
 			Client newClient = null;
 			try {
-				newClient = new Client(so.accept());
+				Socket clientSock = so.accept();
+				clients.cleanUp(); // Free taken names
+				newClient = new Client(clientSock);
 				clients.add(newClient);
 				getChannels().get(0).add(newClient);
 				wideBroadcast(new MessagePacket(newClient.username + " has connected."));

+ 5 - 19
src/test/java/client/ClientTestCase.java

@@ -3,48 +3,34 @@ package client;
 import static org.junit.Assert.assertTrue;
 
 import org.junit.After;
-import org.junit.AfterClass;
 import org.junit.Before;
-import org.junit.BeforeClass;
 import org.junit.Test;
 
-import server.Server;
-
 public class ClientTestCase {
 	private ChatWindow user1;
 	private ChatWindow user2;
-	
-	@BeforeClass
-	public static void setUpClass() {
-		Server.main(new String[] {});
-	}
-	
+
 	@Before
 	public void setUp() {
 		user1 = new ChatWindow("localhost", 25566, "user1");
 		user2 = new ChatWindow("localhost", 25566, "user2");
 	}
-	
+
 	@Test
 	public void testSend() {
 		user1.send("Hello!");
 		assertTrue(user1.so.isConnected());
 	}
-	
+
 	@Test
 	public void testPM() {
 		user1.send("/pm user2 Hi there user2!");
 	}
-	
+
 	@After
 	public void cleanUp() {
 		user1.dispose();
 		user2.dispose();
 	}
-	
-	@AfterClass
-	public static void tearDownClass() {
-		Server.exit();
-	}
-	
+
 }

+ 3 - 2
src/test/java/common/CompleteTestSuite.java

@@ -6,6 +6,7 @@ import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 import org.junit.runners.Suite.SuiteClasses;
 
+import server.Server;
 import server.ServerTestSuite;
 
 @RunWith(Suite.class)
@@ -14,11 +15,11 @@ public class CompleteTestSuite {
 	
 	@BeforeClass
 	public static void setUpBeforeClass() throws Exception {
-		
+		Server.main(new String[] {});
 	}
 	
 	@AfterClass
 	public static void tearDownAfterClass() throws Exception {
-		
+		Server.exit();
 	}
 }

+ 12 - 8
src/test/java/server/ServerTestCase.java

@@ -1,17 +1,21 @@
 package server;
 
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
+import org.junit.Assert;
+import org.junit.Test;
+
+import util.ArrayUtil;
 
 public class ServerTestCase {
 	
-	@BeforeClass
-	public static void setUpClass() {
-		ServerTestSuite.runServer.start();
+	@Test
+	public void testArrayUtils() {
+		Assert.assertArrayEquals(new String[] {"like", "trains"}, ArrayUtil.removeFirst(new String[] {"I", "like", "trains"}));
 	}
 	
-	@AfterClass
-	public static void tearDownClass() {
-		Server.exit();
+	@Test
+	public void testCommandLoading() {
+		CommandRegistry registry = new CommandRegistry();
+		Assert.assertTrue(registry.getHelp().contains("kick"));
+		//registry.executeCommand("/help", caller);
 	}
 }

+ 0 - 4
src/test/java/server/ServerTestSuite.java

@@ -7,8 +7,4 @@ import org.junit.runners.Suite.SuiteClasses;
 @RunWith(value = Suite.class)
 @SuiteClasses(value = {client.ClientTestSuite.class})
 public class ServerTestSuite {
-	
-	public static Thread runServer = new Thread(() -> {
-			Server.main(new String[] {});
-	});
 }