Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 35fb85a344bb6dc5964a10da2b05af2ecf8a3fb7 (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
/*******************************************************************************
 *  Copyright (c) 2005, 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
 *******************************************************************************/
package org.eclipse.equinox.p2.tests.artifact.repository;

import java.net.URI;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.internal.p2.artifact.repository.MirrorRequest;
import org.eclipse.equinox.internal.p2.engine.DownloadManager;
import org.eclipse.equinox.p2.engine.ProvisioningContext;
import org.eclipse.equinox.p2.metadata.IArtifactKey;
import org.eclipse.equinox.p2.repository.artifact.*;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;

public class CorruptedJar extends AbstractProvisioningTest {
	private static final String testDataLocation = "testData/artifactRepo/corruptedJarRepo";
	IArtifactRepository source = null;
	IArtifactRepository target = null;

	@Override
	protected void setUp() throws Exception {
		// TODO Auto-generated method stub
		super.setUp();
		IArtifactRepositoryManager mgr = getArtifactRepositoryManager();
		try {
			source = mgr.loadRepository((getTestData("CorruptedJar repo", testDataLocation).toURI()), null);
		} catch (Exception e) {
			fail("1.0", e);
		}
		try {
			target = mgr.createRepository(getTestFolder("CorruptedJarTarget").toURI(), "CorruptedJar target repo", IArtifactRepositoryManager.TYPE_SIMPLE_REPOSITORY, null);
		} catch (Exception e) {
			fail("2.0", e);
		}
	}

	public void testDownloadCorruptedJar() {
		ProvisioningContext ctx = new ProvisioningContext(getAgent());
		ctx.setArtifactRepositories(new URI[] {getTestData("CorruptedJar repo", testDataLocation).toURI()});
		DownloadManager mgr = new DownloadManager(ctx, getAgent());
		IArtifactKey key = (IArtifactKey) source.query(ArtifactKeyQuery.ALL_KEYS, null).iterator().next();
		mgr.add(new MirrorRequest(key, target, null, null, getTransport()));
		IStatus s = mgr.start(new NullProgressMonitor());
		assertNotOK(s);
	}
}

Back to the top