blob: a08033cb2240fa8ff95c9afcdc61ee2a0fb8e7d4 [file] [log] [blame]
Pierre De Rop3a00a212015-03-01 09:27:46 +00001/*
2* Licensed to the Apache Software Foundation (ASF) under one
3* or more contributor license agreements. See the NOTICE file
4* distributed with this work for additional information
5* regarding copyright ownership. The ASF licenses this file
6* to you under the Apache License, Version 2.0 (the
7* "License"); you may not use this file except in compliance
8* with the License. You may obtain a copy of the License at
9*
10* http://www.apache.org/licenses/LICENSE-2.0
11*
12* Unless required by applicable law or agreed to in writing,
13* software distributed under the License is distributed on an
14* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15* KIND, either express or implied. See the License for the
16* specific language governing permissions and limitations
17* under the License.
18*/
19package org.apache.felix.dm.runtime.itest.tests;
20
21import org.apache.felix.dm.itest.util.Ensure;
22import org.apache.felix.dm.itest.util.TestBase;
23import org.apache.felix.dm.runtime.itest.components.ResourceAnnotation;
24import org.osgi.framework.ServiceRegistration;
25
26/**
27 * Use case: Verify Bundle Dependency annotations usage.
28 *
29 * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
30 */
31public class ResourceAnnotationTest extends TestBase {
32
33 /**
34 * Tests a simple ResourceConsumer
35 * @param context
36 */
37 public void testResourceAnnotation() {
38 Ensure e = new Ensure();
39 ServiceRegistration sr = register(e, ResourceAnnotation.ENSURE_RESOURCE);
40 ServiceRegistration sr2 = register(e, ResourceAnnotation.ENSURE_PROVIDER);
41 sr.unregister();
42 sr2.unregister();
43 e.waitForStep(1, 10000);
44 }
45
46 /**
47 * Tests a simple ResourceConsumer using a class field for resource injection
48 */
49 public void testResourceAnnotationAutoConfig() {
50 Ensure e = new Ensure();
51 ServiceRegistration sr = register(e, ResourceAnnotation.ENSURE_FIELD);
52 ServiceRegistration sr2 = register(e, ResourceAnnotation.ENSURE_PROVIDER);
53 sr.unregister();
54 sr2.unregister();
55 e.waitForStep(1, 10000);
56 }
57
58 /**
59 * Tests a ResourceAdapter
60 * @param context
61 */
62 public void testResourceAdapterAnnotation() throws Throwable {
63 Ensure e = new Ensure();
64 ServiceRegistration sr = register(e, ResourceAnnotation.ENSURE_ADAPTER);
65 ServiceRegistration sr2 = register(e, ResourceAnnotation.ENSURE_PROVIDER);
66 sr.unregister();
67 sr2.unregister();
68 e.waitForStep(2, 10000);
69 e.ensure();
70 }
71}