/*
* Created on Dec 19, 2009
*
* 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 @2009-2010 the original author or authors.
*/
package org.fest.swing.driver;
import static org.fest.swing.driver.JProgressBarIndeterminateQuery.isIndeterminate;
import static org.fest.swing.format.Formatting.format;
import static org.fest.swing.timing.Pause.pause;
import static org.fest.util.Strings.concat;
import javax.swing.JProgressBar;
import org.fest.assertions.Description;
import org.fest.swing.annotation.RunsInEDT;
import org.fest.swing.edt.GuiLazyLoadingDescription;
import org.fest.swing.timing.Condition;
import org.fest.swing.timing.Timeout;
/**
* Understands an EDT-safe task that waits until the value of a <code>{@link JProgressBar}</code> is equal to the
* given expected value.
*
* @author Alex Ruiz
*/
final class JProgressBarWaitUntilIsDeterminate {
@RunsInEDT
static void waitUntilValueIsDeterminate(final JProgressBar progressBar, final Timeout timeout) {
pause(new Condition(untilIsDeterminate(progressBar)) {
public boolean test() {
return !isIndeterminate(progressBar);
}
}, timeout);
}
private static Description untilIsDeterminate(final JProgressBar progressBar) {
return new GuiLazyLoadingDescription() {
protected String loadDescription() {
return concat(format(progressBar), " to be in determinate mode");
}
};
}
private JProgressBarWaitUntilIsDeterminate() {}
}