blob: ec8b0d887a84c25fc0b2d3a615c3f7d173b21038 [file] [log] [blame]
/*******************************************************************************
* 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 static org.junit.Assert.assertTrue;
import org.eclipse.osgi.tests.OSGiTestsActivator;
import org.junit.Test;
import org.osgi.framework.Filter;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.InvalidSyntaxException;
public class FrameworkUtilFilterTests extends FilterTests {
@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
@Test
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()));
}
}