blob: 269c1b476c8ad9bc87a4370d12393c40841849b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Code 9 - ongoing development
*******************************************************************************/
package org.eclipse.equinox.p2.tests.metadata.repository;
import org.eclipse.equinox.p2.core.ProvisionException;
import java.io.File;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.equinox.internal.p2.core.helpers.FileUtils;
import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory;
import org.eclipse.equinox.internal.provisional.p2.metadata.Version;
import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitDescription;
import org.eclipse.equinox.internal.provisional.p2.metadata.query.InstallableUnitQuery;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.repository.IRepository;
import org.eclipse.equinox.p2.repository.IRepositoryManager;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepository;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepositoryManager;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
public class JarURLMetadataRepositoryTest extends AbstractProvisioningTest {
private IMetadataRepositoryManager manager;
private File testRepoJar;
public JarURLMetadataRepositoryTest(String name) {
super(name);
}
public JarURLMetadataRepositoryTest() {
this("");
}
protected void setUp() throws Exception {
manager = getMetadataRepositoryManager();
String tempDir = System.getProperty("java.io.tmpdir");
File testRepo = new File(tempDir, "testRepo");
FileUtils.deleteAll(testRepo);
testRepo.mkdir();
Map properties = new HashMap();
properties.put(IRepository.PROP_COMPRESSED, "true");
IMetadataRepository repo = manager.createRepository(testRepo.toURI(), "TestRepo", IMetadataRepositoryManager.TYPE_SIMPLE_REPOSITORY, properties);
InstallableUnitDescription descriptor = new MetadataFactory.InstallableUnitDescription();
descriptor.setId("testIuId");
descriptor.setVersion(Version.create("3.2.1"));
IInstallableUnit iu = MetadataFactory.createInstallableUnit(descriptor);
repo.addInstallableUnits(new IInstallableUnit[] {iu});
testRepoJar = new File(testRepo, "content.jar");
assertTrue(testRepoJar.exists());
testRepoJar.deleteOnExit();
}
protected void tearDown() throws Exception {
manager = null;
FileUtils.deleteAll(testRepoJar.getParentFile());
}
public void testJarURLRepository() throws ProvisionException {
URI jarRepoLocation = null;
try {
jarRepoLocation = new URI("jar:" + testRepoJar.toURI() + "!/");
} catch (URISyntaxException e) {
fail(e.getMessage());
}
IMetadataRepository repo = manager.loadRepository(jarRepoLocation, null);
assertTrue(!repo.query(InstallableUnitQuery.ANY, null).isEmpty());
URI[] local = manager.getKnownRepositories(IRepositoryManager.REPOSITORIES_LOCAL);
boolean found = false;
for (int i = 0; i < local.length; i++)
if (local[i].equals(jarRepoLocation))
found = true;
assertTrue(found);
manager.removeRepository(jarRepoLocation);
}
}