/* * Copyright (c) [2016] [ <ether.camp> ] * This file is part of the ethereumJ library. * * The ethereumJ library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The ethereumJ library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with the ethereumJ library. If not, see <http://www.gnu.org/licenses/>. */ package org.ethereum.net.rlpx.discover; import org.junit.Test; import java.util.Comparator; import java.util.concurrent.TimeUnit; /** * Created by Anton Nashatyrev on 03.08.2015. */ public class QueueTest { boolean exception = false; @Test public void simple() throws Exception { final PeerConnectionTester.MutablePriorityQueue<String, String> queue = new PeerConnectionTester.MutablePriorityQueue<>(new Comparator<String>() { @Override public int compare(String o1, String o2) { return o1.compareTo(o2); } }); final int threadCnt = 8; final int elemCnt = 1000; Runnable adder = new Runnable() { @Override public void run() { try { System.out.println("Adding..."); for (int i = 0; i < elemCnt && !exception; i++) { queue.add("aaa" + i); if (i % 100 == 0) Thread.sleep(10); } System.out.println("Done."); } catch (Exception e) { exception = true; e.printStackTrace(); } } }; ThreadGroup tg = new ThreadGroup("test"); Thread t1[] = new Thread[threadCnt]; for (int i = 0; i < t1.length; i++) { t1[i] = new Thread(tg, adder); t1[i].start(); } Runnable taker = new Runnable() { @Override public void run() { try { System.out.println("Taking..."); for (int i = 0; i < elemCnt && !exception; i++) { queue.poll(1, TimeUnit.SECONDS); } System.out.println("OK: " + queue.size()); } catch (Exception e) { exception = true; e.printStackTrace(); } } }; Thread t2[] = new Thread[threadCnt]; for (int i = 0; i < t2.length; i++) { t2[i] = new Thread(tg, taker); t2[i].start(); } for (Thread thread : t1) { thread.join(); } for (Thread thread : t2) { thread.join(); } if (exception) throw new RuntimeException("Test failed"); } }