Search in sources :

Example 1 with ContentFragment

use of com.adobe.cq.dam.cfm.ContentFragment in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class ContentFragmentMockAdapter method apply.

@Nullable
@Override
public ContentFragment apply(@Nullable Resource resource) {
    // check if the resource is valid and an asset
    if (resource == null || !resource.isResourceType(NT_DAM_ASSET)) {
        return null;
    }
    // check if the resource is a content fragment
    Resource content = resource.getChild(JCR_CONTENT);
    ValueMap contentProperties = content.getValueMap();
    if (!contentProperties.get(PN_CONTENT_FRAGMENT, Boolean.FALSE)) {
        return null;
    }
    // check if the content fragment is text-only or structured
    Resource data = resource.getChild(PATH_DATA);
    boolean isStructured = data != null;
    /* get content fragment properties, model and elements */
    String title = contentProperties.get(JCR_TITLE, String.class);
    String description = contentProperties.get(JCR_DESCRIPTION, String.class);
    String cfName = resource.getName();
    Resource model;
    Resource modelAdaptee;
    List<ContentElement> elements = new LinkedList<>();
    if (isStructured) {
        // get the model (referenced in the property)
        model = resource.getResourceResolver().getResource(data.getValueMap().get(PN_MODEL, String.class));
        // for the 'adaptTo' mock below we use the jcr:content child to mimick the real behavior
        modelAdaptee = model.getChild(JCR_CONTENT);
        // create an element mock for each property on the master node
        Resource master = resource.getChild(PATH_MASTER);
        for (String name : master.getValueMap().keySet()) {
            // skip the primary type and content type properties
            if (JcrConstants.JCR_PRIMARYTYPE.equals(name) || name.endsWith("@ContentType")) {
                continue;
            }
            elements.add(getMockElement(resource, name, model));
        }
    } else {
        // get the model (stored in the fragment itself)
        model = resource.getChild(PATH_MODEL);
        modelAdaptee = model;
        // add the "main" element to the list
        elements.add(getMockElement(resource, null, null));
        // create an element mock for each subasset
        Resource subassets = resource.getChild("subassets");
        if (subassets != null) {
            for (Resource subasset : subassets.getChildren()) {
                elements.add(getMockElement(resource, subasset.getName(), null));
            }
        }
    }
    /* create mock objects */
    ContentFragment fragment = mock(ContentFragment.class, withSettings().lenient());
    when(fragment.getTitle()).thenReturn(title);
    when(fragment.getDescription()).thenReturn(description);
    when(fragment.getName()).thenReturn(cfName);
    when(fragment.adaptTo(Resource.class)).thenReturn(resource);
    when(fragment.getElement(isNull())).thenAnswer(invocation -> {
        String name = invocation.getArgument(0);
        return getMockElement(resource, name, isStructured ? model : null);
    });
    when(fragment.getElement(any(String.class))).thenAnswer(invocation -> {
        String name = invocation.getArgument(0);
        return getMockElement(resource, name, isStructured ? model : null);
    });
    when(fragment.hasElement(any(String.class))).thenAnswer(invocation -> {
        String name = invocation.getArgument(0);
        return fragment.getElement(name) != null;
    });
    when(fragment.getElements()).thenReturn(elements.iterator());
    List<VariationDef> variations = new LinkedList<>();
    ContentElement main = fragment.getElement(null);
    Iterator<ContentVariation> iterator = main.getVariations();
    while (iterator.hasNext()) {
        ContentVariation variation = iterator.next();
        variations.add(new VariationDef() {

            @Override
            public String getName() {
                return variation.getName();
            }

            @Override
            public String getTitle() {
                return variation.getTitle();
            }

            @Override
            public String getDescription() {
                return variation.getDescription();
            }
        });
    }
    when(fragment.listAllVariations()).thenReturn(variations.iterator());
    FragmentTemplate template = mock(FragmentTemplate.class, withSettings().lenient());
    when(template.adaptTo(Resource.class)).thenReturn(modelAdaptee);
    when(fragment.getTemplate()).thenReturn(template);
    Iterator<Resource> associatedContent = getAssociatedContent(resource);
    when(fragment.getAssociatedContent()).thenReturn(associatedContent);
    return fragment;
}
Also used : ContentFragment(com.adobe.cq.dam.cfm.ContentFragment) ValueMap(org.apache.sling.api.resource.ValueMap) Resource(org.apache.sling.api.resource.Resource) LinkedList(java.util.LinkedList) VariationDef(com.adobe.cq.dam.cfm.VariationDef) ContentElement(com.adobe.cq.dam.cfm.ContentElement) ContentVariation(com.adobe.cq.dam.cfm.ContentVariation) FragmentTemplate(com.adobe.cq.dam.cfm.FragmentTemplate) Nullable(javax.annotation.Nullable)

Example 2 with ContentFragment

use of com.adobe.cq.dam.cfm.ContentFragment in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class ContentFragmentUtilsTest method getTypeWhenTemplateResourceIsNotNullButIsContentNodeFallbackToParent.

@Test
public void getTypeWhenTemplateResourceIsNotNullButIsContentNodeFallbackToParent() {
    // GIVEN
    Resource fragmentResource = Mockito.mock(Resource.class);
    Resource templateResourceParent = Mockito.mock(Resource.class);
    Resource templateResource = Mockito.mock(Resource.class);
    FragmentTemplate fragmentTemplate = Mockito.mock(FragmentTemplate.class);
    ContentFragment contentFragment = Mockito.mock(ContentFragment.class);
    Mockito.when(contentFragment.getTemplate()).thenReturn(fragmentTemplate);
    Mockito.when(contentFragment.adaptTo(Mockito.eq(Resource.class))).thenReturn(fragmentResource);
    Mockito.when(fragmentTemplate.adaptTo(Mockito.eq(Resource.class))).thenReturn(templateResource);
    Mockito.when(templateResource.getName()).thenReturn(JCR_CONTENT);
    Mockito.when(templateResource.getParent()).thenReturn(templateResourceParent);
    Mockito.when(templateResourceParent.getPath()).thenReturn("/foo/bar");
    // WHEN
    String type = ContentFragmentUtils.getType(contentFragment);
    // THEN
    Assertions.assertEquals(type, "/foo/bar");
}
Also used : ContentFragment(com.adobe.cq.dam.cfm.ContentFragment) FragmentTemplate(com.adobe.cq.dam.cfm.FragmentTemplate) Resource(org.apache.sling.api.resource.Resource) Test(org.junit.jupiter.api.Test)

Example 3 with ContentFragment

use of com.adobe.cq.dam.cfm.ContentFragment in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class ContentFragmentUtilsTest method filterEmptyElementNamesReturnsOriginalList.

@Test
public void filterEmptyElementNamesReturnsOriginalList() {
    // GIVEN
    ContentFragment contentFragment = Mockito.mock(ContentFragment.class);
    Iterator<ContentElement> contentElementIterator = Mockito.mock(Iterator.class);
    Mockito.when(contentFragment.getElements()).thenReturn(contentElementIterator);
    // WHEN
    Iterator<ContentElement> elementIterator = ContentFragmentUtils.filterElements(contentFragment, null);
    // THEN
    Assertions.assertEquals(elementIterator, contentElementIterator);
}
Also used : ContentFragment(com.adobe.cq.dam.cfm.ContentFragment) ContentElement(com.adobe.cq.dam.cfm.ContentElement) Test(org.junit.jupiter.api.Test)

Example 4 with ContentFragment

use of com.adobe.cq.dam.cfm.ContentFragment in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class ContentFragmentUtilsTest method filterElementNamesReturnsAppropriateElementsOnly.

@Test
public void filterElementNamesReturnsAppropriateElementsOnly() {
    // GIVEN
    ContentElement foo = Mockito.mock(ContentElement.class);
    ContentElement qux = Mockito.mock(ContentElement.class);
    ContentFragment contentFragment = Mockito.mock(ContentFragment.class);
    Mockito.when(contentFragment.hasElement(Mockito.eq("foo"))).thenReturn(true);
    Mockito.when(contentFragment.hasElement(Mockito.eq("bar"))).thenReturn(false);
    Mockito.when(contentFragment.hasElement(Mockito.eq("qux"))).thenReturn(true);
    Mockito.when(contentFragment.getElement(Mockito.eq("foo"))).thenReturn(foo);
    Mockito.when(contentFragment.getElement(Mockito.eq("qux"))).thenReturn(qux);
    // WHEN
    Iterator<ContentElement> elementIterator = ContentFragmentUtils.filterElements(contentFragment, new String[] { "foo", "bar", "qux" });
    // THEN
    MatcherAssert.assertThat(() -> elementIterator, IsIterableContainingInOrder.contains(foo, qux));
}
Also used : ContentFragment(com.adobe.cq.dam.cfm.ContentFragment) ContentElement(com.adobe.cq.dam.cfm.ContentElement) Test(org.junit.jupiter.api.Test)

Example 5 with ContentFragment

use of com.adobe.cq.dam.cfm.ContentFragment in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class AbstractContentFragmentDataSourceServlet method doGet.

@Override
protected void doGet(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response) throws ServletException, IOException {
    // return empty datasource by default
    DataSource elements = EmptyDataSource.instance();
    // get content fragment
    ContentFragment fragment = getContentFragment(request);
    if (fragment != null) {
        // get datasource items from the implementation
        List<T> items = getItems(fragment, request);
        // transform items to resources
        List<Resource> resources = new LinkedList<>();
        ResourceResolver resolver = request.getResourceResolver();
        for (T item : items) {
            Resource resource = createResource(resolver, getTitle(item), getValue(item));
            resources.add(resource);
        }
        // create datasource
        elements = new SimpleDataSource(resources.iterator());
    }
    // provide datasource
    request.setAttribute(DataSource.class.getName(), elements);
}
Also used : ContentFragment(com.adobe.cq.dam.cfm.ContentFragment) SimpleDataSource(com.adobe.granite.ui.components.ds.SimpleDataSource) Resource(org.apache.sling.api.resource.Resource) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) LinkedList(java.util.LinkedList) EmptyDataSource(com.adobe.granite.ui.components.ds.EmptyDataSource) SimpleDataSource(com.adobe.granite.ui.components.ds.SimpleDataSource) DataSource(com.adobe.granite.ui.components.ds.DataSource)

Aggregations

ContentFragment (com.adobe.cq.dam.cfm.ContentFragment)9 Test (org.junit.jupiter.api.Test)7 Resource (org.apache.sling.api.resource.Resource)6 FragmentTemplate (com.adobe.cq.dam.cfm.FragmentTemplate)5 ContentElement (com.adobe.cq.dam.cfm.ContentElement)3 ValueMap (org.apache.sling.api.resource.ValueMap)3 LinkedList (java.util.LinkedList)2 MockValueMap (org.apache.sling.testing.resourceresolver.MockValueMap)2 ContentVariation (com.adobe.cq.dam.cfm.ContentVariation)1 VariationDef (com.adobe.cq.dam.cfm.VariationDef)1 DataSource (com.adobe.granite.ui.components.ds.DataSource)1 EmptyDataSource (com.adobe.granite.ui.components.ds.EmptyDataSource)1 SimpleDataSource (com.adobe.granite.ui.components.ds.SimpleDataSource)1 StringReader (java.io.StringReader)1 Nullable (javax.annotation.Nullable)1 JsonReader (javax.json.JsonReader)1 ResourceResolver (org.apache.sling.api.resource.ResourceResolver)1