blob: 6e73fa170be47ad3bf2ec3faf45af484ddbc9698 [file] [log] [blame]
/**
* Licensed 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.aries.cdi.test.cases;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.osgi.framework.Bundle;
import org.osgi.service.cdi.runtime.CDIComponentRuntime;
import org.osgi.service.cdi.runtime.dto.ContainerDTO;
import org.osgi.util.tracker.ServiceTracker;
public class ExcludeTests extends AbstractTestCase {
@BeforeClass
public static void beforeClass() throws Exception {
runtimeTracker = new ServiceTracker<>(
bundleContext, CDIComponentRuntime.class, null);
runtimeTracker.open();
}
@AfterClass
public static void afterClass() throws Exception {
runtimeTracker.close();
}
@Override
@Before
public void setUp() throws Exception {
cdiRuntime = runtimeTracker.waitForService(timeout);
}
@Override
@After
public void tearDown() throws Exception {
}
@Test
public void testExclude_ByName() throws Exception {
Bundle tb2Bundle = installBundle("tb18.jar", false);
tb2Bundle.start();
try {
ContainerDTO containerDTO = getContainerDTO(cdiRuntime, tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(3, containerDTO.template.components.get(0).beans.size());
}
finally {
tb2Bundle.uninstall();
}
}
@Test
public void testExclude_IfClassAvailable() throws Exception {
Bundle tb2Bundle = installBundle("tb19.jar", false);
tb2Bundle.start();
try {
ContainerDTO containerDTO = getContainerDTO(cdiRuntime, tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(1, containerDTO.template.components.get(0).beans.size());
}
finally {
tb2Bundle.uninstall();
}
}
@Test
public void testExclude_IfSystemProperty() throws Exception {
Bundle tb2Bundle = installBundle("tb20.jar", false);
tb2Bundle.start();
try {
ContainerDTO containerDTO = getContainerDTO(cdiRuntime, tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(2, containerDTO.template.components.get(0).beans.size());
}
finally {
tb2Bundle.uninstall();
}
}
}