/* * Copyright 2012 Harald Wellmann * * 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.ops4j.pax.exam.regression.cdi.ice; import static org.testng.Assert.assertEquals; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; import javax.enterprise.inject.Any; import javax.enterprise.inject.Instance; import javax.inject.Inject; import org.ops4j.pax.exam.sample3.ice.Chocolate; import org.ops4j.pax.exam.sample3.ice.IceCreamService; import org.ops4j.pax.exam.sample3.ice.Vanilla; import org.ops4j.pax.exam.testng.listener.PaxExam; import org.testng.annotations.Listeners; import org.testng.annotations.Test; @Listeners(PaxExam.class) public class VanillaTest { @Inject @Vanilla private IceCreamService vanilla; @Inject @Chocolate private IceCreamService chocolate; @Inject private IceCreamService defaultFlavour; @Inject @Any private Instance<IceCreamService> allFlavours; @Test public void checkVanillaFlavour() { assertEquals(vanilla.getFlavour(), "Vanilla"); } @Test public void checkChocolateFlavour() { assertEquals(chocolate.getFlavour(), "Chocolate"); } @Test public void checkDefaultFlavour() { assertEquals(defaultFlavour.getFlavour(), "Vanilla"); } @Test public void checkAllFlavours() { List<String> expectedFlavours = new ArrayList<String>(Arrays.asList("Vanilla", "Chocolate")); assertEquals(allFlavours.isUnsatisfied(), false); assertEquals(allFlavours.isAmbiguous(), true); int numFlavours = 0; Iterator<IceCreamService> it = allFlavours.iterator(); while (it.hasNext()) { numFlavours++; String flavour = it.next().getFlavour(); expectedFlavours.remove(flavour); } assertEquals(numFlavours, 2); assertEquals(expectedFlavours.isEmpty(), true); } }