Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ef8818b7ba14926b01d1301b9463cd21b3a83ba7 (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
/*******************************************************************************
 * Copyright (c) 2009 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.filter;

import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.osgi.tests.OSGiTestsActivator;
import org.osgi.framework.Filter;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.InvalidSyntaxException;

public class FrameworkUtilFilterTests extends FilterTests {
	public static Test suite() {
		return new TestSuite(FrameworkUtilFilterTests.class);
	}

	@Override
	public Filter createFilter(String filterString) throws InvalidSyntaxException {
		return FrameworkUtil.createFilter(filterString);
	}

	// Equinox specific test to make sure we continue to use the Equinox FilterImpl
	// from the FrameworkUtil createFilter method
	public void testFrameworkUtilCreateFilter() throws InvalidSyntaxException {
		Filter bundleContextFilter = OSGiTestsActivator.getContext().createFilter("(simplefilter=true)");
		Filter frameworkUtilFilter = FrameworkUtil.createFilter("(simplefilter=true)");
		assertTrue("Wrong Fitler impl type: " + frameworkUtilFilter.getClass().getName(), bundleContextFilter.getClass().equals(frameworkUtilFilter.getClass()));
	}
}

Back to the top