blob: 021c11eaef990d8e40cc000711d8b607e85c6c87 [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.extension.mp.metrics.test;
import java.util.Collection;
import org.osgi.service.jaxrs.runtime.JaxrsServiceRuntime;
import org.osgi.service.jaxrs.runtime.JaxrsServiceRuntimeConstants;
import org.osgi.test.common.annotation.InjectService;
import org.osgi.test.common.service.ServiceAware;
public abstract class JaxrsBaseTestCase extends HttpBaseTestCase {
@InjectService
JaxrsServiceRuntime jsr;
@InjectService
ServiceAware<JaxrsServiceRuntime> jsrSA;
public String getJaxrsEndpoint() {
Object endpointsObj = jsrSA.getServiceReference().getProperty(
JaxrsServiceRuntimeConstants.JAX_RS_SERVICE_ENDPOINT);
if (endpointsObj instanceof String) {
return String.valueOf(endpointsObj);
}
else if (endpointsObj instanceof String[]) {
return ((String[])endpointsObj)[0];
}
else if (endpointsObj instanceof Collection) {
return String.valueOf(((Collection<?>)endpointsObj).iterator().next());
}
return null;
}
}