/*
* Copyright 2009 Harvard University Library
*
* This file is part of FITS (File Information Tool Set).
*
* FITS is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FITS 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with FITS. If not, see <http://www.gnu.org/licenses/>.
*/
package edu.harvard.hul.ois.fits.junit;
import java.io.File;
import org.junit.Test;
import edu.harvard.hul.ois.fits.Fits;
import edu.harvard.hul.ois.fits.FitsOutput;
import edu.harvard.hul.ois.fits.tools.Tool;
import org.custommonkey.xmlunit.*;
public class FitsBasicTest extends XMLTestCase {
@Test
public void testFits() throws Exception {
Fits fits = new Fits("");
File input = new File("testfiles/test.jp2");
for(Tool t : fits.getToolbelt().getTools()) {
if(t.getToolInfo().getName().equals("Jhove")) {
//t.setEnabled(false);
}
if(t.getToolInfo().getName().equals("Exiftool")) {
//t.setEnabled(false);
}
}
FitsOutput fitsOut = fits.examine(input);
fitsOut.saveToDisk("fitsBasicTestOutput.xml");
}
}