/*
* Test method for 'org.locationtech.udig.tools.edit.behaviour.SelectHoleBehaviour.isValid(EditToolHandler, MapMouseEvent, EventType)'
*/
@Test
public void testIsValid() throws Exception {
TestHandler handler=new TestHandler();
handler.getTestEditBlackboard().util.setVertexRadius(4);
SelectHoleBehaviour behavior=new SelectHoleBehaviour();
handler.setCurrentState(EditState.MODIFYING);
//Current Shape must be set
MapMouseEvent event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
EditGeom editGeom = handler.getEditBlackboard().getGeoms().get(0);
handler.setCurrentShape(editGeom.getShell());
handler.getEditBlackboard().addPoint(11,11, handler.getCurrentShape());
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertTrue(behavior.isValid(handler, event, EventType.RELEASED));
// no buttons should be down
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.BUTTON2, MapMouseEvent.BUTTON1);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// button2 isn't legal
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON2);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// no modifiers only
event = new MapMouseEvent(null, 10,10, MapMouseEvent.ALT_DOWN_MASK, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// works only with MODIFYING
handler.setCurrentState(EditState.NONE);
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// works only with MODIFYING
handler.setCurrentState(EditState.CREATING);
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// should work, just checking state is still good;
handler.setCurrentState(EditState.MODIFYING);
event = new MapMouseEvent(null, 10,10, MapMouseEvent.NONE, MapMouseEvent.NONE, MapMouseEvent.BUTTON1);
assertTrue(behavior.isValid(handler, event, EventType.RELEASED));
// doesn't work with event pressed
assertFalse(behavior.isValid(handler, event, EventType.PRESSED));
// doesn't work when shapetype is POINT
handler.getCurrentGeom().setShapeType(ShapeType.POINT);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
// doesn't work when shapetype is LINE
handler.getCurrentGeom().setShapeType(ShapeType.LINE);
assertFalse(behavior.isValid(handler, event, EventType.RELEASED));
}