/* * ProActive Parallel Suite(TM): * The Open Source library for parallel and distributed * Workflows & Scheduling, Orchestration, Cloud Automation * and Big Data Analysis on Enterprise Grids & Clouds. * * Copyright (c) 2007 - 2017 ActiveEon * Contact: contact@activeeon.com * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation: version 3 of * the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * If needed, contact us to obtain a release under GPL Version 2 or 3 * or a different license than the AGPL. */ package org.ow2.proactive.scheduler.task; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; import static org.junit.Assert.*; import static org.junit.Assume.assumeTrue; import java.io.IOException; import java.nio.file.Path; import java.util.HashSet; import java.util.Set; import java.util.concurrent.TimeUnit; import org.junit.*; import org.junit.rules.TemporaryFolder; import org.ow2.proactive.scripting.helper.progress.ProgressFile; /** * Test cases associated to {@link ProgressFileReader}. * * @author The ProActive Team */ @Ignore public class ProgressFileReaderTest { private static final int NB_UPDATES = 3; private static final int SLEEP_TIMEOUT = 3000; // in milliseconds @Rule public TemporaryFolder folder = new TemporaryFolder(); private ProgressFileReader progressFileReader = new ProgressFileReader(); private ProgressFileReaderHistory listener = new ProgressFileReaderHistory(); @Before public void setup() throws IOException { String progressFileName = "test"; progressFileReader.register(listener); progressFileReader.start(folder.getRoot(), progressFileName); } @Test public void testProgressMultipleUpdates() throws IOException, InterruptedException { Path progressFile = progressFileReader.getProgressFile(); int lastProgressValue = -1; for (int i = 1; i <= NB_UPDATES; i++) { lastProgressValue = i * (100 / NB_UPDATES); ProgressFile.setProgress(progressFile, lastProgressValue); TimeUnit.MILLISECONDS.sleep(SLEEP_TIMEOUT); } assertThat(listener.getValues(), hasSize(NB_UPDATES)); assertThat(ProgressFile.getProgress(progressFile), is(lastProgressValue)); } @Test public void testProgressMultipleInvalidUpdates() throws IOException, InterruptedException { Path progressFile = progressFileReader.getProgressFile(); int lastProgressValue = -1; int nbValidValues = 0; for (int i = 1; i <= NB_UPDATES; i++) { if (i % 2 == 0) { ProgressFile.setProgress(progressFile, i * (100 / NB_UPDATES)); nbValidValues++; } else { ProgressFile.setProgress(progressFile, "invalid" + i); } TimeUnit.MILLISECONDS.sleep(SLEEP_TIMEOUT); } assertThat(listener.getValues(), hasSize(nbValidValues)); assertThat(ProgressFile.getProgress(progressFile), is(lastProgressValue)); } private static class ProgressFileReaderHistory implements ProgressFileReader.Listener { private final Set<Integer> values = new HashSet<>(NB_UPDATES); @Override public void onProgressUpdate(int newValue) { values.add(newValue); } public Set<Integer> getValues() { return values; } public void clear() { values.clear(); } } @After public void teardown() { listener.clear(); progressFileReader.stop(); progressFileReader.unregister(listener); } }