blob: 2255993933ecd333d06c3b6b7ea9bfb14c728b52 [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.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.apache.aries.cdi.test.cases.base.BaseTestCase;
import org.junit.jupiter.api.Test;
import org.osgi.framework.Bundle;
import org.osgi.service.cdi.runtime.dto.ContainerDTO;
public class ExcludeTests extends BaseTestCase {
@Test
public void testExclude_ByName() throws Exception {
Bundle tb2Bundle = bundleInstaller.installBundle("tb18.jar");
ContainerDTO containerDTO = getContainerDTO(tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(3, containerDTO.template.components.get(0).beans.size());
}
@Test
public void testExclude_IfClassAvailable() throws Exception {
Bundle tb2Bundle = bundleInstaller.installBundle("tb19.jar");
ContainerDTO containerDTO = getContainerDTO(tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(1, containerDTO.template.components.get(0).beans.size());
}
@Test
public void testExclude_IfSystemProperty() throws Exception {
Bundle tb2Bundle = bundleInstaller.installBundle("tb20.jar");
ContainerDTO containerDTO = getContainerDTO(tb2Bundle);
assertNotNull(containerDTO);
assertEquals(1, containerDTO.template.components.size());
assertEquals(2, containerDTO.template.components.get(0).beans.size());
}
}