blob: bb88304f11c31c254c54021aa81f087ffc811161 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.osgi.tests.misc;
import junit.framework.*;
import org.eclipse.core.runtime.Platform;
import org.eclipse.osgi.framework.internal.core.BundleHost;
import org.eclipse.osgi.internal.loader.SingleSourcePackage;
import org.eclipse.osgi.tests.OSGiTestsActivator;
public class MiscTests extends TestCase {
public static Test suite() {
return new TestSuite(MiscTests.class);
}
public void testBug251427() {
BundleHost testsBundle = (BundleHost) OSGiTestsActivator.getContext().getBundle();
assertNotNull("tests bundle is null", testsBundle); //$NON-NLS-1$
BundleHost harnessBundle = (BundleHost) Platform.getBundle("org.eclipse.core.tests.harness"); //$NON-NLS-1$
assertNotNull("harness bundle is null", harnessBundle); //$NON-NLS-1$
SingleSourcePackage p111 = new SingleSourcePackage("pkg1", testsBundle.getLoaderProxy()); //$NON-NLS-1$
SingleSourcePackage p121 = new SingleSourcePackage("pkg1", testsBundle.getLoaderProxy()); //$NON-NLS-1$
SingleSourcePackage p112 = new SingleSourcePackage("pkg1", harnessBundle.getLoaderProxy()); //$NON-NLS-1$
SingleSourcePackage p212 = new SingleSourcePackage("pkg2", harnessBundle.getLoaderProxy()); //$NON-NLS-1$
SingleSourcePackage p222 = new SingleSourcePackage("pkg2", harnessBundle.getLoaderProxy()); //$NON-NLS-1$
SingleSourcePackage p211 = new SingleSourcePackage("pkg2", testsBundle.getLoaderProxy()); //$NON-NLS-1$
assertEquals("sources not equal", p111, p121); //$NON-NLS-1$
assertEquals("sources hashCode not equal", p111.hashCode(), p121.hashCode()); //$NON-NLS-1$
assertEquals("sources not equal", p212, p222); //$NON-NLS-1$
assertEquals("sources hashCode not equal", p212.hashCode(), p222.hashCode()); //$NON-NLS-1$
assertFalse("sources are equal", p111.equals(p112)); //$NON-NLS-1$
assertFalse("sources are equal", p212.equals(p211)); //$NON-NLS-1$
}
}