You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Stefan Seifert (Jira)" <ji...@apache.org> on 2022/11/08 16:13:00 UTC

[jira] [Commented] (SLING-11668) [osgi-mocks] Dynamic service references not updated on osgi Components

    [ https://issues.apache.org/jira/browse/SLING-11668?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17630504#comment-17630504 ] 

Stefan Seifert commented on SLING-11668:
----------------------------------------

yes, this is a discussion we already had some time ago with [~kwin] - for historical reasons osgi-mock currently does not implement a correct "component registry", but only a "service registry" which is not covering the use cases you describe.

i've a task for this on my todo list to improve in the future, but did not had time for it, but it's not forgotten. i plan to work on it in the next few months if time permits.

> [osgi-mocks] Dynamic service references not updated on osgi Components
> ----------------------------------------------------------------------
>
>                 Key: SLING-11668
>                 URL: https://issues.apache.org/jira/browse/SLING-11668
>             Project: Sling
>          Issue Type: Bug
>          Components: Testing
>    Affects Versions: Testing OSGi Mock 3.3.2
>            Reporter: Kyle Giovannetti
>            Priority: Major
>
> In osgi-mocks, when a OSGI Component (*without* a service interface) is registered via `registerInjectActivateService`, and that component has dynamic non-mandatory service references that are not fulfilled at the time of the component initialization, those services references are never bound later when they become available.
>  
> Having stepped through the debugger, I believe that this condition is the cause:
> [https://github.com/apache/sling-org-apache-sling-testing-osgi-mock/blob/5ce257bd07c5087f0340d7b7ab426971128eb69f/core/src/main/java/org/apache/sling/testing/mock/osgi/MockOsgi.java#L274-L278]
>  
> {code:java}
>  public static final @NotNull <T> T registerInjectActivateService(@NotNull Class<T> dsComponentClass, @NotNull BundleContext bundleContext, @Nullable final Map<String, Object> properties) {
>     Map<String, Object> mergedProperties = propertiesMergeWithOsgiMetadata(dsComponentClass, getConfigAdmin(bundleContext), properties);
>     ComponentContext componentContext = newComponentContext(bundleContext, mergedProperties);
>     T component = OsgiServiceUtil.activateInjectServices(dsComponentClass, (MockComponentContext)componentContext);
>     OsgiMetadata metadata = OsgiMetadataUtil.getMetadata(dsComponentClass);
>     if (!metadata.getServiceInterfaces().isEmpty()) {
>         // convert component properties to service properties (http://docs.osgi.org/specification/osgi.cmpn/7.0.0/service.component.html#service.component-service.properties)
>         Dictionary<String, Object> serviceProperties = mergedProperties.entrySet().stream().filter(e -> e.getKey() != null && !e.getKey().startsWith(".")).collect(new DictionaryCollector<String, Object>(Entry::getKey, Entry::getValue));
>         bundleContext.registerService(metadata.getServiceInterfaces().toArray(new String[0]), component, serviceProperties);
>     }
>     return component;
> }{code}
>  
>  
> Here we see that if the service doesn't implement any interfaces, then it's completely forgotten about after being activated.
> This appears to be by-design as per [SLING-10922|https://issues.apache.org/jira/browse/SLING-10922]. However, in non-mock environments, components that do not implement a service interface still have references bound/unbound dynamically.
> As a consequence of this, in tests, the ordering of service activation becomes critically important - any component that does not implement and service an interface must be activated last, or else the references will not be updated. 
> Even implementing/servicing a trivial empty interface resolves the issue.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)