Java 11 migrate all remaining s (#1120)
* Moves saga to Java 11 * Moves semaphore to Java 11 * Moves servant to Java 11 * Moves serverless to Java 11 * Moves service-layer to Java 11 * Moves service-locator to Java 11 * Moves sharding to Java 11 * Moves singleton to Java 11 * Moves spatial-partition to Java 11 * Moves specification to Java 11 * Moves state to Java 11 * Moves step-builder to Java 11 * Moves strategy to Java 11 * Moves subclass-sandbox to Java 11 * Fixes checkstyle issues
This commit is contained in:
committed by
Ilkka Seppälä
parent
310ae50248
commit
cd2a2e7711
@ -23,62 +23,71 @@
|
||||
|
||||
package com.iluwatar.spatialpartition;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Hashtable;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Testing methods in Bubble class.
|
||||
*/
|
||||
* Testing methods in Bubble class.
|
||||
*/
|
||||
|
||||
class BubbleTest {
|
||||
|
||||
@Test
|
||||
void moveTest() {
|
||||
Bubble b = new Bubble(10,10,1,2);
|
||||
int initialX = b.coordinateX;
|
||||
int initialY = b.coordinateY;
|
||||
var b = new Bubble(10, 10, 1, 2);
|
||||
var initialX = b.coordinateX;
|
||||
var initialY = b.coordinateY;
|
||||
b.move();
|
||||
//change in x and y < |2|
|
||||
assertTrue((b.coordinateX - initialX < 2 && b.coordinateX - initialX > -2) && (b.coordinateY - initialY < 2 && b.coordinateY - initialY > -2));
|
||||
assertTrue(b.coordinateX - initialX < 2 && b.coordinateX - initialX > -2);
|
||||
assertTrue(b.coordinateY - initialY < 2 && b.coordinateY - initialY > -2);
|
||||
}
|
||||
|
||||
@Test
|
||||
void touchesTest() {
|
||||
Bubble b1 = new Bubble(0,0,1,2);
|
||||
Bubble b2 = new Bubble(1,1,2,1);
|
||||
Bubble b3 = new Bubble(10,10,3,1);
|
||||
var b1 = new Bubble(0, 0, 1, 2);
|
||||
var b2 = new Bubble(1, 1, 2, 1);
|
||||
var b3 = new Bubble(10, 10, 3, 1);
|
||||
//b1 touches b2 but not b3
|
||||
assertTrue(b1.touches(b2) && !b1.touches(b3));
|
||||
assertTrue(b1.touches(b2));
|
||||
assertFalse(b1.touches(b3));
|
||||
}
|
||||
|
||||
@Test
|
||||
void popTest() {
|
||||
Bubble b1 = new Bubble(10,10,1,2);
|
||||
Bubble b2 = new Bubble(0,0,2,2);
|
||||
Hashtable<Integer, Bubble> bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
var b1 = new Bubble(10, 10, 1, 2);
|
||||
var b2 = new Bubble(0, 0, 2, 2);
|
||||
var bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
bubbles.put(2, b2);
|
||||
b1.pop(bubbles);
|
||||
//after popping, bubble no longer in hashtable containing all bubbles
|
||||
assertTrue(bubbles.get(1) == null && bubbles.get(2) != null);
|
||||
assertNull(bubbles.get(1));
|
||||
assertNotNull(bubbles.get(2));
|
||||
}
|
||||
|
||||
@Test
|
||||
void handleCollisionTest() {
|
||||
Bubble b1 = new Bubble(0,0,1,2);
|
||||
Bubble b2 = new Bubble(1,1,2,1);
|
||||
Bubble b3 = new Bubble(10,10,3,1);
|
||||
Hashtable<Integer, Bubble> bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
bubbles.put(2, b2);
|
||||
var b1 = new Bubble(0, 0, 1, 2);
|
||||
var b2 = new Bubble(1, 1, 2, 1);
|
||||
var b3 = new Bubble(10, 10, 3, 1);
|
||||
var bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
bubbles.put(2, b2);
|
||||
bubbles.put(3, b3);
|
||||
ArrayList<Point> bubblesToCheck = new ArrayList<Point>();
|
||||
bubblesToCheck.add(b2);
|
||||
var bubblesToCheck = new ArrayList<Point>();
|
||||
bubblesToCheck.add(b2);
|
||||
bubblesToCheck.add(b3);
|
||||
b1.handleCollision(bubblesToCheck, bubbles);
|
||||
//b1 touches b2 and not b3, so b1, b2 will be popped
|
||||
assertTrue(bubbles.get(1) == null && bubbles.get(2) == null && bubbles.get(3) != null);
|
||||
assertNull(bubbles.get(1));
|
||||
assertNull(bubbles.get(2));
|
||||
assertNotNull(bubbles.get(3));
|
||||
}
|
||||
}
|
||||
|
@ -23,12 +23,13 @@
|
||||
|
||||
package com.iluwatar.spatialpartition;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Hashtable;
|
||||
import java.util.Random;
|
||||
|
||||
|
||||
import java.util.stream.Collectors;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
@ -39,41 +40,34 @@ class QuadTreeTest {
|
||||
|
||||
@Test
|
||||
void queryTest() {
|
||||
ArrayList<Point> points = new ArrayList<Point>();
|
||||
Random rand = new Random();
|
||||
var points = new ArrayList<Point>();
|
||||
var rand = new Random();
|
||||
for (int i = 0; i < 20; i++) {
|
||||
Bubble p = new Bubble(rand.nextInt(300), rand.nextInt(300), i, rand.nextInt(2) + 1);
|
||||
var p = new Bubble(rand.nextInt(300), rand.nextInt(300), i, rand.nextInt(2) + 1);
|
||||
points.add(p);
|
||||
}
|
||||
Rect field = new Rect(150,150,300,300); //size of field
|
||||
Rect queryRange = new Rect(70,130,100,100); //result = all points lying in this rectangle
|
||||
var field = new Rect(150, 150, 300, 300); //size of field
|
||||
var queryRange = new Rect(70, 130, 100, 100); //result = all points lying in this rectangle
|
||||
//points found in the query range using quadtree and normal method is same
|
||||
assertTrue(QuadTreeTest.quadTreeTest(points, field, queryRange).equals(QuadTreeTest.verify(points, queryRange)));
|
||||
var points1 = QuadTreeTest.quadTreeTest(points, field, queryRange);
|
||||
var points2 = QuadTreeTest.verify(points, queryRange);
|
||||
assertEquals(points1, points2);
|
||||
}
|
||||
|
||||
static Hashtable<Integer, Point> quadTreeTest(ArrayList<Point> points, Rect field, Rect queryRange) {
|
||||
static Hashtable<Integer, Point> quadTreeTest(Collection<Point> points, Rect field, Rect queryRange) {
|
||||
//creating quadtree and inserting all points
|
||||
QuadTree qTree = new QuadTree(queryRange, 4);
|
||||
for (int i = 0; i < points.size(); i++) {
|
||||
qTree.insert(points.get(i));
|
||||
}
|
||||
var qTree = new QuadTree(queryRange, 4);
|
||||
points.forEach(qTree::insert);
|
||||
|
||||
ArrayList<Point> queryResult = qTree.query(field, new ArrayList<Point>());
|
||||
Hashtable<Integer, Point> result = new Hashtable<Integer, Point>();
|
||||
for (int i = 0; i < queryResult.size(); i++) {
|
||||
Point p = queryResult.get(i);
|
||||
result.put(p.id, p);
|
||||
}
|
||||
return result;
|
||||
return qTree
|
||||
.query(field, new ArrayList<>())
|
||||
.stream()
|
||||
.collect(Collectors.toMap(p -> p.id, p -> p, (a, b) -> b, Hashtable::new));
|
||||
}
|
||||
|
||||
static Hashtable<Integer, Point> verify(ArrayList<Point> points, Rect queryRange) {
|
||||
Hashtable<Integer, Point> result = new Hashtable<Integer, Point>();
|
||||
for (int i = 0; i < points.size(); i++) {
|
||||
if (queryRange.contains(points.get(i))) {
|
||||
result.put(points.get(i).id, points.get(i));
|
||||
}
|
||||
}
|
||||
return result;
|
||||
static Hashtable<Integer, Point> verify(Collection<Point> points, Rect queryRange) {
|
||||
return points.stream()
|
||||
.filter(queryRange::contains)
|
||||
.collect(Collectors.toMap(point -> point.id, point -> point, (a, b) -> b, Hashtable::new));
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,9 @@
|
||||
|
||||
package com.iluwatar.spatialpartition;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
@ -34,19 +36,21 @@ class RectTest {
|
||||
|
||||
@Test
|
||||
void containsTest() {
|
||||
Rect r = new Rect(10,10,20,20);
|
||||
Bubble b1 = new Bubble(2,2,1,1);
|
||||
Bubble b2 = new Bubble(30,30,2,1);
|
||||
var r = new Rect(10, 10, 20, 20);
|
||||
var b1 = new Bubble(2, 2, 1, 1);
|
||||
var b2 = new Bubble(30, 30, 2, 1);
|
||||
//r contains b1 and not b2
|
||||
assertTrue(r.contains(b1) && !r.contains(b2));
|
||||
assertTrue(r.contains(b1));
|
||||
assertFalse(r.contains(b2));
|
||||
}
|
||||
|
||||
@Test
|
||||
void intersectsTest() {
|
||||
Rect r1 = new Rect(10,10,20,20);
|
||||
Rect r2 = new Rect(15,15,20,20);
|
||||
Rect r3 = new Rect(50,50,20,20);
|
||||
var r1 = new Rect(10, 10, 20, 20);
|
||||
var r2 = new Rect(15, 15, 20, 20);
|
||||
var r3 = new Rect(50, 50, 20, 20);
|
||||
//r1 intersects r2 and not r3
|
||||
assertTrue(r1.intersects(r2) && !r1.intersects(r3));
|
||||
assertTrue(r1.intersects(r2));
|
||||
assertFalse(r1.intersects(r3));
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,9 @@
|
||||
|
||||
package com.iluwatar.spatialpartition;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||
|
||||
import java.util.Hashtable;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@ -35,24 +37,27 @@ class SpatialPartitionBubblesTest {
|
||||
|
||||
@Test
|
||||
void handleCollisionsUsingQtTest() {
|
||||
Bubble b1 = new Bubble(10,10,1,3);
|
||||
Bubble b2 = new Bubble(5,5,2,1);
|
||||
Bubble b3 = new Bubble(9,9,3,1);
|
||||
Bubble b4 = new Bubble(8,8,4,2);
|
||||
Hashtable<Integer, Bubble> bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
bubbles.put(2, b2);
|
||||
bubbles.put(3, b3);
|
||||
var b1 = new Bubble(10, 10, 1, 3);
|
||||
var b2 = new Bubble(5, 5, 2, 1);
|
||||
var b3 = new Bubble(9, 9, 3, 1);
|
||||
var b4 = new Bubble(8, 8, 4, 2);
|
||||
var bubbles = new Hashtable<Integer, Bubble>();
|
||||
bubbles.put(1, b1);
|
||||
bubbles.put(2, b2);
|
||||
bubbles.put(3, b3);
|
||||
bubbles.put(4, b4);
|
||||
Rect r = new Rect(10,10,20,20);
|
||||
QuadTree qt = new QuadTree(r,4);
|
||||
qt.insert(b1);
|
||||
qt.insert(b2);
|
||||
qt.insert(b3);
|
||||
var r = new Rect(10, 10, 20, 20);
|
||||
var qt = new QuadTree(r, 4);
|
||||
qt.insert(b1);
|
||||
qt.insert(b2);
|
||||
qt.insert(b3);
|
||||
qt.insert(b4);
|
||||
SpatialPartitionBubbles sp = new SpatialPartitionBubbles(bubbles, qt);
|
||||
var sp = new SpatialPartitionBubbles(bubbles, qt);
|
||||
sp.handleCollisionsUsingQt(b1);
|
||||
//b1 touches b3 and b4 but not b2 - so b1,b3,b4 get popped
|
||||
assertTrue(bubbles.get(1) == null && bubbles.get(2) != null && bubbles.get(3) == null && bubbles.get(4) == null);
|
||||
assertNull(bubbles.get(1));
|
||||
assertNotNull(bubbles.get(2));
|
||||
assertNull(bubbles.get(3));
|
||||
assertNull(bubbles.get(4));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user