Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eff971fd97d712a9dd4880f193bfe45cc38af4b2 (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
/*******************************************************************************
 * Copyright (c) 2015 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.osgi.tests.configuration;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.tests.session.ConfigurationSessionTestSuite;
import org.eclipse.osgi.tests.OSGiTest;
import org.eclipse.osgi.tests.OSGiTestsActivator;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;

public class EclipseStarterConfigIniTest extends OSGiTest {

	public static Test suite() {
		TestSuite suite = new TestSuite(EclipseStarterConfigIniTest.class.getName());

		ConfigurationSessionTestSuite falseCompatBootDelegation = new ConfigurationSessionTestSuite(PI_OSGI_TESTS, EclipseStarterConfigIniTest.class.getName());
		String[] ids = ConfigurationSessionTestSuite.MINIMAL_BUNDLE_SET;
		for (String id : ids) {
			falseCompatBootDelegation.addBundle(id);
		}
		falseCompatBootDelegation.addBundle(PI_OSGI_TESTS);
		falseCompatBootDelegation.addTest(new EclipseStarterConfigIniTest("testFalseCompatBootDelegation"));
		falseCompatBootDelegation.setConfigIniValue("osgi.compatibility.bootdelegation", "false");
		suite.addTest(falseCompatBootDelegation);

		ConfigurationSessionTestSuite defaultCompatBootDelegation = new ConfigurationSessionTestSuite(PI_OSGI_TESTS, EclipseStarterConfigIniTest.class.getName());
		for (String id : ids) {
			defaultCompatBootDelegation.addBundle(id);
		}
		defaultCompatBootDelegation.addBundle(PI_OSGI_TESTS);
		defaultCompatBootDelegation.addTest(new EclipseStarterConfigIniTest("testDefaultCompatBootDelegation"));
		suite.addTest(defaultCompatBootDelegation);
		return suite;
	}

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

	public void testFalseCompatBootDelegation() throws Exception {
		doTestCompatBootDelegation(true);
	}

	public void testDefaultCompatBootDelegation() throws Exception {
		doTestCompatBootDelegation(false);
	}

	public void doTestCompatBootDelegation(boolean expectFailure) throws Exception {
		BundleContext context = OSGiTestsActivator.getContext();
		ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
		ZipOutputStream zipOut = new ZipOutputStream(bytesOut);
		zipOut.putNextEntry(new ZipEntry("nothing"));
		zipOut.closeEntry();
		zipOut.close();
		Bundle b = context.installBundle(getName(), new ByteArrayInputStream(bytesOut.toByteArray()));
		String testClassName = javax.net.SocketFactory.class.getName();
		// The bundle does not import anything so should not find javax stuff
		try {
			b.loadClass(testClassName);
			if (expectFailure) {
				fail("Expected to fail to load VM class from bundle that does not import it");
			}
		} catch (ClassNotFoundException e) {
			if (!expectFailure) {
				fail("Expected to successfully load VM class from bundle that does not import it", e);
			}
		}
	}
}

Back to the top