/******************************************************************************* * Copyright (c) 2012 Original authors and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Original authors and others - initial API and implementation ******************************************************************************/ package org.eclipse.nebula.widgets.nattable.ui.matcher; import org.eclipse.nebula.widgets.nattable.grid.GridRegion; import org.eclipse.nebula.widgets.nattable.layer.DataLayer; import org.eclipse.nebula.widgets.nattable.layer.LabelStack; import org.eclipse.nebula.widgets.nattable.layer.stack.DummyGridLayerStack; import org.eclipse.nebula.widgets.nattable.test.fixture.NatTableFixture; import org.eclipse.nebula.widgets.nattable.test.integration.SWTUtils; import org.eclipse.nebula.widgets.nattable.ui.matcher.CellLabelMouseEventMatcher; import org.eclipse.nebula.widgets.nattable.ui.matcher.MouseEventMatcher; import org.eclipse.swt.events.MouseEvent; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class CellLabelMouseEventMatcherTest { private static final String TEST_LABEL = "testLabel"; private NatTableFixture natTableFixture; @Before public void setUpCustomCellLabel() { DummyGridLayerStack gridLayerStack = new DummyGridLayerStack(5, 5); this.natTableFixture = new NatTableFixture(gridLayerStack); // Register custom label DataLayer bodyDataLayer = (DataLayer) gridLayerStack.getBodyDataLayer(); this.natTableFixture.registerLabelOnColumn(bodyDataLayer, 0, TEST_LABEL); } @Test public void shouldMatchCellsWithCustomLabels() throws Exception { CellLabelMouseEventMatcher matcher = new CellLabelMouseEventMatcher( GridRegion.BODY, MouseEventMatcher.LEFT_BUTTON, TEST_LABEL); boolean match = matcher.matches(this.natTableFixture, new MouseEvent( SWTUtils.getLeftClickEvent(100, 100, 0, this.natTableFixture)), new LabelStack(GridRegion.BODY)); Assert.assertTrue(match); } @Test public void shouldTakeTheRegionIntoAccountWhileMatching() throws Exception { CellLabelMouseEventMatcher matcher = new CellLabelMouseEventMatcher( GridRegion.COLUMN_HEADER, MouseEventMatcher.LEFT_BUTTON, TEST_LABEL); boolean match = matcher.matches(this.natTableFixture, new MouseEvent( SWTUtils.getLeftClickEvent(100, 100, 0, this.natTableFixture)), new LabelStack(GridRegion.BODY)); Assert.assertFalse(match); } @Test public void shouldTakeTheButtomIntoAccountWhileMatching() throws Exception { CellLabelMouseEventMatcher matcher = new CellLabelMouseEventMatcher( GridRegion.BODY, MouseEventMatcher.RIGHT_BUTTON, TEST_LABEL); boolean match = matcher.matches(this.natTableFixture, new MouseEvent( SWTUtils.getLeftClickEvent(100, 100, 0, this.natTableFixture)), new LabelStack(GridRegion.BODY)); Assert.assertFalse(match); } }