org.assertj.swing.driver.JListMatchingItemQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-swing Show documentation
Show all versions of assertj-swing Show documentation
Fluent interface for functional GUI testing
/*
* Created on Oct 31, 2008
*
* 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 @2008-2013 the original author or authors.
*/
package org.assertj.swing.driver;
import static java.util.Collections.sort;
import static org.assertj.core.util.Lists.newArrayList;
import static org.assertj.core.util.Preconditions.checkNotNull;
import static org.assertj.core.util.Sets.newHashSet;
import static org.assertj.swing.driver.JListCellBoundsQuery.cellBounds;
import static org.assertj.swing.driver.JListCellCenterQuery.cellCenter;
import static org.assertj.swing.edt.GuiActionRunner.execute;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.List;
import java.util.Set;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.swing.JList;
import org.assertj.swing.annotation.RunsInCurrentThread;
import org.assertj.swing.annotation.RunsInEDT;
import org.assertj.swing.cell.JListCellReader;
import org.assertj.swing.edt.GuiQuery;
import org.assertj.swing.util.StringTextMatcher;
import org.assertj.swing.util.TextMatcher;
/**
* Looks up the first item in a {@code JList} whose value matches a given one. This query is executed in the event
* dispatch thread (EDT.)
*
* @author Alex Ruiz
*/
final class JListMatchingItemQuery {
@RunsInEDT
static @Nonnull
Point centerOfMatchingItemCell(final @Nonnull JList list, final @Nullable String value,
final @Nonnull JListCellReader cellReader) {
Point result = execute(new GuiQuery() {
@Override
protected Point executeInEDT() {
int itemIndex = matchingItemIndex(list, new StringTextMatcher(value), cellReader);
Rectangle cellBounds = checkNotNull(cellBounds(list, itemIndex));
return cellCenter(list, cellBounds);
}
});
return checkNotNull(result);
}
@RunsInCurrentThread
static int matchingItemIndex(@Nonnull JList list, @Nonnull TextMatcher matcher, @Nonnull JListCellReader cellReader) {
int size = list.getModel().getSize();
for (int i = 0; i < size; i++) {
if (matcher.isMatching(cellReader.valueAt(list, i))) {
return i;
}
}
return -1;
}
@RunsInEDT
static @Nonnull
List matchingItemIndices(final @Nonnull JList list, final @Nonnull TextMatcher matcher,
final @Nonnull JListCellReader cellReader) {
List result = execute(new GuiQuery>() {
@Override
protected List executeInEDT() {
Set indices = newHashSet();
int size = list.getModel().getSize();
for (int i = 0; i < size; i++) {
if (matcher.isMatching(cellReader.valueAt(list, i))) {
indices.add(i);
}
}
List indexList = newArrayList(indices);
sort(indexList);
return indexList;
}
});
return checkNotNull(result);
}
@RunsInEDT
static @Nonnull
List matchingItemValues(final @Nonnull JList list, final @Nonnull TextMatcher matcher,
final @Nonnull JListCellReader cellReader) {
List result = execute(new GuiQuery>() {
@Override
protected List executeInEDT() {
List values = newArrayList();
int size = list.getModel().getSize();
for (int i = 0; i < size; i++) {
String value = cellReader.valueAt(list, i);
if (matcher.isMatching(value)) {
values.add(value);
}
}
return values;
}
});
return checkNotNull(result);
}
private JListMatchingItemQuery() {
}
}