blob: 4d172388a640c30d598c1194df65bea2deb873c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 compeople AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* compeople AG (Stefan Liebig) - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.tests.sar;
import java.io.*;
import java.util.Arrays;
import junit.framework.TestCase;
import org.eclipse.equinox.internal.p2.sar.SarUtil;
import org.eclipse.equinox.p2.tests.TestData;
/**
* Test the sar stuff.
*/
public class SarTest extends TestCase {
// public void testGenerateTestDataNJarAndSarFromJar32() throws IOException {
// InputStream jar32 = TestData.get("sar", "org.eclipse.jdt_3.2.0.v20060605-1400.jar");
// generateNJarAndSar("org.eclipse.jdt_3.2.0.v20060605-1400", jar32);
// }
//
// public void testGenerateTestDataNJarAndSarFromJar33() throws IOException {
// InputStream jar32 = TestData.get("sar", "org.eclipse.jdt_3.3.0.v20070607-1300.jar");
// generateNJarAndSar("org.eclipse.jdt_3.3.0.v20070607-1300", jar32);
// }
//
// private void generateNJarAndSar(String name, InputStream jar) throws IOException {
// File njar = File.createTempFile(name, ".njar");
// OutputStream njarOut = new BufferedOutputStream(new FileOutputStream(njar));
//
// SarUtil.normalize(jar, njarOut);
//
// File sar = File.createTempFile(name, ".sar");
// SarUtil.zipToSar(njar, sar);
// }
public void testJarToSarForJdt320() throws IOException {
InputStream jdt320Jar = TestData.get("optimizers", "org.eclipse.jdt_3.2.0.v20060605-1400.njar");
InputStream jdt320Sar = TestData.get("sar", "org.eclipse.jdt_3.2.0.v20060605-1400.sar");
doJarToSar(jdt320Jar, jdt320Sar);
}
public void testSarToJarForJdt320() throws IOException {
InputStream jdt320Sar = TestData.get("sar", "org.eclipse.jdt_3.2.0.v20060605-1400.sar");
InputStream jdt320Jar = TestData.get("optimizers", "org.eclipse.jdt_3.2.0.v20060605-1400.njar");
doSarToJar(jdt320Sar, jdt320Jar);
}
public void testJarToSarForJdt330() throws IOException {
InputStream jdt330Jar = TestData.get("optimizers", "org.eclipse.jdt_3.3.0.v20070607-1300.njar");
InputStream jdt330Sar = TestData.get("sar", "org.eclipse.jdt_3.3.0.v20070607-1300.sar");
doJarToSar(jdt330Jar, jdt330Sar);
}
public void testSarToJarForJdt330() throws IOException {
InputStream jdt330Sar = TestData.get("sar", "org.eclipse.jdt_3.3.0.v20070607-1300.sar");
InputStream jdt330Jar = TestData.get("optimizers", "org.eclipse.jdt_3.3.0.v20070607-1300.njar");
doSarToJar(jdt330Sar, jdt330Jar);
}
/**
* @throws IOException
*/
private void doJarToSar(InputStream jar, InputStream expectedSar) throws IOException {
File sar = TestData.createTempFile("doJarToSar.sar");
OutputStream sarOut = new BufferedOutputStream(new FileOutputStream(sar));
SarUtil.zipToSar(jar, sarOut);
InputStream sarIn = new BufferedInputStream(new FileInputStream(sar));
TestData.assertEquals(sarIn, expectedSar);
}
/**
* @throws IOException
*/
private void doSarToJar(InputStream sar, InputStream expectedJar) throws IOException {
File jar = TestData.createTempFile("doSarToJar.jar");
OutputStream jarOut = new BufferedOutputStream(new FileOutputStream(jar));
SarUtil.sarToZip(sar, jarOut);
InputStream jarIn = new BufferedInputStream(new FileInputStream(jar));
TestData.assertEquals(jarIn, expectedJar);
}
/**
* @throws IOException
*/
public void testZipToSarAndBack() throws IOException {
File originalZipFile = TestData.getTempFile("sar", "test.zip");
File sarFile = TestData.createTempFile("test.sar");
File recreatedZipFile = TestData.createTempFile("test.zip");
long before = System.currentTimeMillis();
SarUtil.zipToSar(originalZipFile, sarFile);
System.out.println("zipToSar took: " + (System.currentTimeMillis() - before));
before = System.currentTimeMillis();
SarUtil.sarToZip(sarFile, recreatedZipFile);
System.out.println("sarToZip took: " + (System.currentTimeMillis() - before));
TestData.assertEquals(originalZipFile, recreatedZipFile);
}
/**
* @throws IOException
*/
public void testNormalizeOnFiles() throws IOException {
File alienZip = TestData.getTempFile("sar", "alien.zip");
File normalizedAlienZip = TestData.createTempFile("normalizedalien.zip");
SarUtil.normalize(alienZip, normalizedAlienZip);
assertTrue(alienZip.length() != normalizedAlienZip.length());
File renormalizedAlienZip = TestData.createTempFile("renormalizedalien.zip");
SarUtil.normalize(normalizedAlienZip, renormalizedAlienZip);
TestData.assertEquals(normalizedAlienZip, renormalizedAlienZip);
}
/**
* @throws IOException
*/
public void testNormalizeOnStreames() throws IOException {
InputStream alienZip = TestData.get("sar", "alien.zip");
ByteArrayOutputStream normalizedAlienZip = new ByteArrayOutputStream();
ByteArrayOutputStream renormalizedAlienZip = new ByteArrayOutputStream();
try {
SarUtil.normalize(alienZip, normalizedAlienZip);
SarUtil.normalize(new ByteArrayInputStream(normalizedAlienZip.toByteArray()), renormalizedAlienZip);
assertTrue(Arrays.equals(normalizedAlienZip.toByteArray(), renormalizedAlienZip.toByteArray()));
} finally {
if (alienZip != null)
alienZip.close();
}
}
}