blob: 08faaf370f560ddba093828cf4cb78c3e3c4c0dc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.felix.http.base.internal.runtime;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.util.EventListener;
import javax.servlet.ServletContextListener;
import org.junit.Test;
import org.mockito.ArgumentMatchers;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.Constants;
import org.osgi.framework.Filter;
import org.osgi.framework.InvalidSyntaxException;
import org.osgi.framework.ServiceReference;
import org.osgi.service.http.whiteboard.HttpWhiteboardConstants;
public class ListenerInfoTest
{
@Test
public void testEnabled() throws InvalidSyntaxException {
Bundle b = mock(Bundle.class);
BundleContext bc = mock(BundleContext.class);
ServiceReference<EventListener> ref = mock(ServiceReference.class);
when(ref.getProperty(Constants.SERVICE_ID)).thenReturn(1L);
when(ref.getProperty(Constants.OBJECTCLASS))
.thenReturn(new String[] { ServletContextListener.class.getName() });
when(ref.getBundle()).thenReturn(b);
when(b.getBundleContext()).thenReturn(bc);
when(bc.createFilter(ArgumentMatchers.any(String.class))).thenReturn(mock(Filter.class));
// string true
when(ref.getProperty(HttpWhiteboardConstants.HTTP_WHITEBOARD_LISTENER)).thenReturn("true");
assertTrue(new ListenerInfo(ref).isValid());
// string false
when(ref.getProperty(HttpWhiteboardConstants.HTTP_WHITEBOARD_LISTENER)).thenReturn("false");
assertFalse(new ListenerInfo(ref).isValid());
// string some text
when(ref.getProperty(HttpWhiteboardConstants.HTTP_WHITEBOARD_LISTENER)).thenReturn("text");
assertFalse(new ListenerInfo(ref).isValid());
// string true
when(ref.getProperty(HttpWhiteboardConstants.HTTP_WHITEBOARD_LISTENER)).thenReturn(Boolean.TRUE);
assertTrue(new ListenerInfo(ref).isValid());
// string false
when(ref.getProperty(HttpWhiteboardConstants.HTTP_WHITEBOARD_LISTENER)).thenReturn(Boolean.FALSE);
assertFalse(new ListenerInfo(ref).isValid());
}
}