Skip to main content
summaryrefslogtreecommitdiffstats
blob: d56cee7da2971b293dddf75710a044f1ff40e6b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*******************************************************************************
 *  Copyright (c) 2007, 2018 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 java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.URIUtil;
import org.eclipse.equinox.internal.p2.core.helpers.FileUtils;
import org.eclipse.equinox.p2.core.ProvisionException;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.metadata.MetadataFactory;
import org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitDescription;
import org.eclipse.equinox.p2.metadata.Version;
import org.eclipse.equinox.p2.query.QueryUtil;
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;
import org.eclipse.equinox.p2.tests.TestData;
import org.junit.Test;

public class JarURLMetadataRepositoryTest extends AbstractProvisioningTest {

	private IMetadataRepositoryManager manager;
	private File testRepoJar;

	public JarURLMetadataRepositoryTest(String name) {
		super(name);
	}

	public JarURLMetadataRepositoryTest() {
		this("");
	}

	@Override
	protected void setUp() throws Exception {
		manager = getMetadataRepositoryManager();

	}

	@Override
	protected void tearDown() throws Exception {
		manager = null;
		if (testRepoJar != null)
			FileUtils.deleteAll(testRepoJar.getParentFile());
	}

	/**
	 * Tests loading a repository in a zip file.
	 * This test case comes from bug 369834.
	 */
	@Test
	public void testZipFileRepository() throws IOException, ProvisionException, OperationCanceledException {
		//ensure a random agent doesn't cause it to fail
		File zip = TestData.getFile("bug369834", "f-TestBuild-group.group.group.zip");
		URI location = URIUtil.toJarURI(zip.toURI(), new Path(""));
		IMetadataRepository repo = manager.loadRepository(location, null);
		assertTrue(!repo.query(QueryUtil.createIUAnyQuery(), null).isEmpty());
	}

	/**
	 * Tests loading a repository in a jar file.
	 */
	public void testJarURLRepository() throws ProvisionException {
		//create a repository
		String tempDir = System.getProperty("java.io.tmpdir");
		File testRepo = new File(tempDir, "testRepo");
		FileUtils.deleteAll(testRepo);
		testRepo.mkdir();
		Map<String, String> properties = new HashMap<>();
		properties.put(IRepository.PROP_COMPRESSED, "true");
		IMetadataRepository repo = manager.createRepository(testRepo.toURI(), "TestRepo", IMetadataRepositoryManager.TYPE_SIMPLE_REPOSITORY, properties);
		//populate with some basic metadata
		InstallableUnitDescription descriptor = new MetadataFactory.InstallableUnitDescription();
		descriptor.setId("testIuId");
		descriptor.setVersion(Version.create("3.2.1"));
		IInstallableUnit iu = MetadataFactory.createInstallableUnit(descriptor);
		repo.addInstallableUnits(Arrays.asList(iu));

		testRepoJar = new File(testRepo, "content.jar");
		assertTrue(testRepoJar.exists());
		testRepoJar.deleteOnExit();

		URI jarRepoLocation = null;
		try {
			jarRepoLocation = new URI("jar:" + testRepoJar.toURI() + "!/");
		} catch (URISyntaxException e) {
			fail(e.getMessage());
		}

		repo = manager.loadRepository(jarRepoLocation, null);
		assertTrue(!repo.query(QueryUtil.createIUAnyQuery(), null).isEmpty());

		URI[] local = manager.getKnownRepositories(IRepositoryManager.REPOSITORIES_LOCAL);
		boolean found = false;
		for (URI element : local)
			if (element.equals(jarRepoLocation))
				found = true;
		assertTrue(found);
		manager.removeRepository(jarRepoLocation);
	}
}

Back to the top