Adobe-Consulting-Services/acs-aem-commons

View on GitHub
bundle/src/test/java/com/adobe/acs/commons/reports/models/TagReportCellCSVExporterTest.java

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * ACS AEM Commons
 *
 * Copyright (C) 2013 - 2023 Adobe
 *
 * 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 com.adobe.acs.commons.reports.models;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.when;

import com.adobe.acs.commons.reports.internal.DelimiterConfiguration;
import java.util.HashMap;
import java.util.Map;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.reflect.FieldUtils;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.wrappers.ValueMapDecorator;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.adobe.acs.commons.redirectmaps.models.MapEntryTest;
import com.day.cq.tagging.Tag;
import com.day.cq.tagging.TagManager;

public class TagReportCellCSVExporterTest {

  private static final Logger log = LoggerFactory.getLogger(MapEntryTest.class);

  private static final String[] TAGS_VALUE = new String[] { "val1", "val2" };

  private static final Map<String, String> CONFIG = new HashMap<String, String>() {{
    put("field.delimiter", ",");
    put("multi.value.delimiter", ";");
  }};

  @Mock
  private DelimiterConfiguration delimiterConfiguration;

  @Mock
  private Resource mockResource;

  @Mock
  private ResourceResolver resolver;

  @Mock
  private Tag tag1;

  @Mock
  private Tag tag2;

  @Mock
  private TagManager tagMgr;

  @Before
  public void init() {
    log.info("init");
    
    MockitoAnnotations.initMocks(this);

    Map<String, Object> properties = new HashMap<String, Object>();
    properties.put("tags", TAGS_VALUE);
    when(mockResource.getValueMap()).thenReturn(new ValueMapDecorator(properties));

    when(mockResource.getResourceResolver()).thenReturn(resolver);
    when(resolver.adaptTo(TagManager.class)).thenReturn(tagMgr);

    when(tagMgr.resolve(TAGS_VALUE[0])).thenReturn(tag1);
    when(tagMgr.resolve(TAGS_VALUE[1])).thenReturn(tag2);

    when(tag1.getTitle()).thenReturn(TAGS_VALUE[0]);
    when(tag2.getTitle()).thenReturn(TAGS_VALUE[1]);

    when(delimiterConfiguration.getMultiValueDelimiter()).thenReturn(CONFIG.get("multi.value.delimiter"));
  }

  @Test
  public void testEmpty() throws IllegalAccessException {
    log.info("testEmpty");
    TagReportCellCSVExporter exporter = new TagReportCellCSVExporter(delimiterConfiguration);
    FieldUtils.writeField(exporter, "property", "tags2", true);
    assertEquals("", exporter.getValue(mockResource));
    log.info("Test successful!");
  }

  @Test
  public void testExporter() throws IllegalAccessException {
    log.info("testExporter");
    TagReportCellCSVExporter exporter = new TagReportCellCSVExporter(delimiterConfiguration);
    FieldUtils.writeField(exporter, "property", "tags", true);
    assertEquals(StringUtils.join(TAGS_VALUE, delimiterConfiguration.getMultiValueDelimiter()), exporter.getValue(mockResource));
    log.info("Test successful!");
  }

}