X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FWindowsFileLoadAndSaveTest.java;fp=test%2Fjalview%2Fio%2FWindowsFileLoadAndSaveTest.java;h=2dd27b458ac03cc5e23637572e19b37efb2b216b;hb=3efc24bc7b7855ff135fa96e35ab1004eaeb4f5e;hp=0000000000000000000000000000000000000000;hpb=dae56c38c3f14e96308540c30f35ca8f1d917edf;p=jalview.git diff --git a/test/jalview/io/WindowsFileLoadAndSaveTest.java b/test/jalview/io/WindowsFileLoadAndSaveTest.java new file mode 100644 index 0000000..2dd27b4 --- /dev/null +++ b/test/jalview/io/WindowsFileLoadAndSaveTest.java @@ -0,0 +1,93 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ +package jalview.io; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.StandardCopyOption; + +import org.testng.Assert; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; + +import jalview.datamodel.AlignmentI; +import jalview.gui.AlignFrame; +import jalview.gui.JvOptionPane; + +/** + * WindowsFileSaveTest simply opens an alignment file and then tries to save it. + * This failed in Windows from 2.11.0 to 2.11.1.6 due to a combination of the + * opening file handle being left open ad infinitum, causing the BackupFiles + * operation of moving the saved (temp) file onto the original filename to fail, + * but only in Windows. See: https://issues.jalview.org/browse/JAL-3628 + * https://issues.jalview.org/browse/JAL-3703 + * https://issues.jalview.org/browse/JAL-3935 These issues are really all fixed + * by JAL-3703 This test is to ensure it doesn't start again, but note that this + * test will only fail in Windows. + */ +public class WindowsFileLoadAndSaveTest +{ + + private final static String fileName = "examples" + File.separator + + "uniref50.fa"; + + private final static String testFileName = fileName + "-TEST"; + + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + + /** + * Test saving and re-reading in a specified format + * + * @throws IOException + */ + @Test(groups = { "Functional" }) + public void loadAndSaveAlignment() throws IOException + { + File file = new File(fileName); + File testFile = new File(testFileName); + Files.copy(file.toPath(), testFile.toPath(), + StandardCopyOption.REPLACE_EXISTING); + FormatAdapter fa = new FormatAdapter(); + AlignmentI a = fa.readFile(testFile, DataSourceType.FILE, + FileFormat.Fasta); + + AlignFrame af = new AlignFrame(a, 500, 500); + af.saveAlignment(testFileName, FileFormat.Fasta); + + Assert.assertTrue(af.isSaveAlignmentSuccessful()); + } + + @AfterClass(alwaysRun = true) + private void cleanupTmpFiles() + { + BackupFilesPresetEntry bfpe = BackupFilesPresetEntry + .getSavedBackupEntry(); + BackupFilesTest.cleanupTmpFiles(testFileName, bfpe.suffix, bfpe.digits); + } + +}