/** * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * * Copyright 2012-2015 the original author or authors. */ package org.assertj.swing.fixture; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.util.Arrays.array; import static org.assertj.core.util.Preconditions.checkNotNull; import static org.assertj.swing.edt.GuiActionRunner.execute; import static org.assertj.swing.test.ExpectedException.none; import static org.assertj.swing.test.core.NeverMatchingComponentMatcher.neverMatches; import java.awt.Dimension; import javax.annotation.Nonnull; import javax.swing.JList; import javax.swing.JScrollPane; import org.assertj.swing.core.GenericTypeMatcher; import org.assertj.swing.exception.ComponentLookupException; import org.assertj.swing.test.ExpectedException; import org.assertj.swing.test.core.RobotBasedTestCase; import org.assertj.swing.test.swing.TestWindow; import org.junit.Rule; import org.junit.Test; /** * Tests lookups of {@code JScrollPane}s in {@link AbstractContainerFixture}. * * @author Alex Ruiz */ public class AbstractContainerFixture_scrollPane_Test extends RobotBasedTestCase { @Rule public ExpectedException thrown = none(); private ContainerFixture fixture; private MyWindow window; @Override protected final void onSetUp() { window = MyWindow.createNew(getClass()); fixture = new ContainerFixture(robot, window); } @Test public void should_Find_Visible_JScrollPane_By_Name() { robot.showWindow(window); JScrollPaneFixture scrollPane = fixture.scrollPane("scrollMeScrollBar"); assertThat(scrollPane.target()).isSameAs(window.scrollPane); } @Test public void should_Fail_If_Visible_JScrollPane_Not_Found_By_Name() { thrown.expect(ComponentLookupException.class); thrown.expectMessageToContain("Unable to find component using matcher", "name='myScrollPane', type=javax.swing.JScrollPane, requireShowing=true"); fixture.scrollPane("myScrollPane"); } @Test public void should_Find_Visible_JScrollPane_By_Type() { robot.showWindow(window); JScrollPaneFixture scrollPane = fixture.scrollPane(); assertThat(scrollPane.target()).isSameAs(window.scrollPane); } @Test public void should_Fail_If_Visible_JScrollPane_Not_Found_By_Type() { thrown.expect(ComponentLookupException.class); thrown.expectMessageToContain("Unable to find component using matcher", "type=javax.swing.JScrollPane, requireShowing=true"); fixture.scrollPane(); } @Test public void should_Find_Visible_JScrollPane_By_Matcher() { robot.showWindow(window); JScrollPaneFixture scrollPane = fixture.scrollPane(new GenericTypeMatcher<JScrollPane>(JScrollPane.class) { @Override protected boolean isMatching(@Nonnull JScrollPane s) { return s.getViewport().getView() instanceof JList; } }); assertThat(scrollPane.target()).isSameAs(window.scrollPane); } @Test public void should_Fail_If_Visible_JScrollPane_Not_Found_By_Matcher() { thrown.expect(ComponentLookupException.class); thrown.expectMessageToContain("Unable to find component using matcher"); fixture.scrollPane(neverMatches(JScrollPane.class)); } private static class MyWindow extends TestWindow { final JScrollPane scrollPane = new JScrollPane(new JList(array("One", "Two"))); static @Nonnull MyWindow createNew(final @Nonnull Class<?> testClass) { return checkNotNull(execute(() -> new MyWindow(testClass))); } private MyWindow(@Nonnull Class<?> testClass) { super(testClass); scrollPane.setName("scrollMeScrollBar"); scrollPane.setPreferredSize(new Dimension(100, 50)); addComponents(scrollPane); } } }