PowerMiner/src/CursorTest.java

95 lines
2.9 KiB
Java

import static org.junit.jupiter.api.Assertions.*;
import java.awt.AWTException;
import java.awt.Point;
import org.junit.jupiter.api.Test;
class CursorTest {
Cursor cursor;
double cursorTolerance;
void initialize() throws AWTException {
cursor = new Cursor();
cursorTolerance = 3;
}
@Test
void testMoveCursorToCoordinatesHelper() throws InterruptedException, AWTException {
initialize();
testMoveCursorToCoordinates();
testRightClickCursor();
}
@Test
void testThetaBetweenPoints() {
Point a = new Point(0, 0);
Point b = new Point(10, 0);
Point c = new Point(10, 10);
Point d = new Point(20, 10);
assertEquals(cursor.getThetaBetweenPoints(a, b), 0);
}
void testMoveCursorToCoordinates() throws InterruptedException {
Point a = new Point(0, 0);
Point b = new Point(150, 250);
Point c = new Point(375, 190);
Point d = new Point(375, 600);
Point e = new Point(952, 603);
Point f = new Point(1025, 133);
Point g = new Point(543, 582);
testMoveCursorToCoordinates(a, b);
testMoveCursorToCoordinates(b, c);
testMoveCursorToCoordinates(c, d);
testMoveCursorToCoordinates(d, e);
testMoveCursorToCoordinates(e, f);
testMoveCursorToCoordinates(f, g);
testMoveCursorToCoordinates(g, c);
testMoveCursorToCoordinates(c, f);
testMoveCursorToCoordinates(f, b);
testMoveCursorToCoordinates(b, a);
testMoveCursorToCoordinates(a, g);
}
void testRightClickCursor() throws InterruptedException {
Point a = new Point(375, 600);
Point b = new Point(952, 603);
Point c = new Point(1025, 133);
Point d = new Point(543, 582);
testMoveAndRightClickCursor(a, b);
testMoveAndRightClickCursor(b, c);
testMoveAndRightClickCursor(c, d);
testMoveAndRightClickCursor(d, a);
}
void testMoveAndRightClickCursor(Point a, Point b) throws InterruptedException {
cursor.robotMouseMove(a);
cursor.moveAndRightClickAtCoordinates(b);
Point point = cursor.getCurrentCursorPoint();
verifyCursorIsInCorrectPlace(point, b);
// Way to verify that context menu is open?
}
void testMoveCursorToCoordinates(Point a, Point b) throws InterruptedException {
cursor.robotMouseMove(a);
cursor.moveCursorToCoordinates(b);
Point point = cursor.getCurrentCursorPoint();
verifyCursorIsInCorrectPlace(point, b);
}
void verifyCursorIsInCorrectPlace(Point actualPoint, Point expectedPoint) {
assertInRangeByAbsoluteValue(actualPoint.x, expectedPoint.x, cursorTolerance);
assertInRangeByAbsoluteValue(actualPoint.y, expectedPoint.y, cursorTolerance);
}
void assertInRangeByPercentage(double valueToTest, double expectation, double tolerancePercentage) {
assertTrue((valueToTest <= (expectation * (1 + tolerancePercentage))) && (valueToTest >= (expectation * (1 - tolerancePercentage))));
}
void assertInRangeByAbsoluteValue(double valueToTest, double expectation, double toleranceAbsolute) {
assertTrue((valueToTest <= (expectation + toleranceAbsolute)) && (valueToTest >= (expectation * (1 - toleranceAbsolute))));
}
}