/**
* Copyright or © or Copr. Ministère Français chargé de la Culture
* et de la Communication (2013)
* <p/>
* contact.gincoculture_at_gouv.fr
* <p/>
* This software is a computer program whose purpose is to provide a thesaurus
* management solution.
* <p/>
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
* modify and/ or redistribute the software under the terms of the CeCILL
* license as circulated by CEA, CNRS and INRIA at the following URL
* "http://www.cecill.info".
* <p/>
* As a counterpart to the access to the source code and rights to copy,
* modify and redistribute granted by the license, users are provided only
* with a limited warranty and the software's author, the holder of the
* economic rights, and the successive licensors have only limited liability.
* <p/>
* In this respect, the user's attention is drawn to the risks associated
* with loading, using, modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software,
* that may mean that it is complicated to manipulate, and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software's suitability as regards their
* requirements in conditions enabling the security of their systemsand/or
* data to be ensured and, more generally, to use and operate it in the
* same conditions as regards security.
* <p/>
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
*/
package fr.mcc.ginco.soap;
import java.util.*;
import fr.mcc.ginco.services.IThesaurusService;
import fr.mcc.ginco.services.ThesaurusServiceImpl;
import fr.mcc.ginco.utils.DateUtil;
import junit.framework.Assert;
import junitx.framework.ListAssert;
import org.junit.Test;
import org.mockito.Mockito;
import fr.mcc.ginco.beans.Language;
import fr.mcc.ginco.beans.Thesaurus;
import fr.mcc.ginco.beans.ThesaurusFormat;
import fr.mcc.ginco.beans.ThesaurusOrganization;
import fr.mcc.ginco.beans.ThesaurusType;
import fr.mcc.ginco.data.FullThesaurus;
import fr.mcc.ginco.data.ReducedThesaurus;
/**
* Unit tests class for the ThesaurusService
*
*/
public class SOAPThesaurusServiceTest {
private SOAPThesaurusServiceImpl thesaurusService = new SOAPThesaurusServiceImpl();
/**
* Test the getThesaurusById method with empty values for non mandatory
* fields
*/
@Test
public final void testGetThesaurusByIdWithNullValues() {
Thesaurus mockedThesaurus = getMockedThesaurusWithNonMandatoryEmptyFields("mock1");
List<Thesaurus> allThesaurus = new ArrayList<Thesaurus>();
allThesaurus.add(mockedThesaurus);
thesaurusService
.setThesaurusService(getMockedIThesaurusService(allThesaurus));
FullThesaurus fullThesaurus = thesaurusService
.getThesaurusById("mock1");
Assert.assertEquals("Thesaurus Title", fullThesaurus.getTitle());
Assert.assertEquals("mock1", fullThesaurus.getIdentifier());
Assert.assertEquals("Fake Contributor", fullThesaurus.getContributor());
Assert.assertEquals("Fake Coverage", fullThesaurus.getCoverage());
Calendar gregCalendar = new GregorianCalendar();
gregCalendar.setTime(DateUtil.dateFromString("2013-02-15 02:02:02"));
Assert.assertEquals(DateUtil.toString(gregCalendar.getTime()), fullThesaurus.getCreated());
Assert.assertEquals(DateUtil.toString(gregCalendar.getTime()), fullThesaurus.getModified());
Assert.assertEquals("Fake Description", fullThesaurus.getDescription());
List<String> expectedLanguages = new ArrayList<String>();
expectedLanguages.add("fra");
expectedLanguages.add("rus");
ListAssert
.assertEquals(expectedLanguages, fullThesaurus.getLanguages());
Assert.assertEquals("Fake Publisher", fullThesaurus.getPublisher());
Assert.assertEquals("Fake Relation", fullThesaurus.getRelation());
Assert.assertEquals("Fake Rights", fullThesaurus.getRights());
Assert.assertEquals("Fake Source", fullThesaurus.getSource());
Assert.assertEquals("Fake Subject", fullThesaurus.getSubject());
}
/**
* Test the getThesaurusById method with values in all fields
*/
@Test
public final void testGetThesaurusById() {
Thesaurus mockedThesaurus = getMockedThesaurusWithAllFields("mock1");
List<Thesaurus> allThesaurus = new ArrayList<Thesaurus>();
allThesaurus.add(mockedThesaurus);
thesaurusService
.setThesaurusService(getMockedIThesaurusService(allThesaurus));
FullThesaurus fullThesaurus = thesaurusService
.getThesaurusById("mock1");
List<String> expectedFormats = new ArrayList<String>();
expectedFormats.add("PDF");
expectedFormats.add("CSV");
ListAssert.assertEquals(expectedFormats, fullThesaurus.getFormats());
Assert.assertEquals("Fake Type", fullThesaurus.getType());
Assert.assertEquals("Fake Creator Name", fullThesaurus.getCreatorName());
Assert.assertEquals("Fake Creator Homepage",
fullThesaurus.getCreatorHomepage());
Assert.assertEquals("Fake Creator Email",
fullThesaurus.getCreatorEmail());
}
@Test
public void testGetAllThesaurus() {
Thesaurus mockedThesaurus1 = getMockedThesaurusWithAllFields("mock1");
Thesaurus mockedThesaurus2 = getMockedThesaurusWithAllFields("mock2");
List<Thesaurus> allThesaurus = new ArrayList<Thesaurus>();
allThesaurus.add(mockedThesaurus1);
allThesaurus.add(mockedThesaurus2);
thesaurusService
.setThesaurusService(getMockedIThesaurusService(allThesaurus));
List<ReducedThesaurus> reducedThesaurus = thesaurusService
.getAllThesaurus();
Assert.assertEquals(2, reducedThesaurus.size());
}
private Set<Language> getMockedLanguages() {
Language mockedLanguage1 = Mockito.mock(Language.class);
Mockito.when(mockedLanguage1.getId()).thenReturn("fra");
Language mockedLanguage2 = Mockito.mock(Language.class);
Mockito.when(mockedLanguage2.getId()).thenReturn("rus");
Set<Language> mockedLanguages = new HashSet<Language>();
mockedLanguages.add(mockedLanguage1);
mockedLanguages.add(mockedLanguage2);
return mockedLanguages;
}
private Set<ThesaurusFormat> getMockedFormats() {
ThesaurusFormat mockedFormat1 = Mockito.mock(ThesaurusFormat.class);
Mockito.when(mockedFormat1.getLabel()).thenReturn("PDF");
ThesaurusFormat mockedFormat2 = Mockito.mock(ThesaurusFormat.class);
Mockito.when(mockedFormat2.getLabel()).thenReturn("CSV");
Set<ThesaurusFormat> mockedFormats = new HashSet<ThesaurusFormat>();
mockedFormats.add(mockedFormat1);
mockedFormats.add(mockedFormat2);
return mockedFormats;
}
private IThesaurusService getMockedIThesaurusService(
List<Thesaurus> mockedThesauruses) {
IThesaurusService mockedService = Mockito
.mock(ThesaurusServiceImpl.class);
for (int i = 0; i < mockedThesauruses.size(); i++) {
Mockito.when(
mockedService.getThesaurusById(mockedThesauruses.get(i)
.getIdentifier())).thenReturn(
mockedThesauruses.get(i));
}
Mockito.when(mockedService.getThesaurusList()).thenReturn(
mockedThesauruses);
return mockedService;
}
private Thesaurus getMockedThesaurusWithNonMandatoryEmptyFields(String id) {
Thesaurus mockedThesaurus = Mockito.mock(Thesaurus.class);
// Format, type and creator might be null (not mandatory)
Mockito.when(mockedThesaurus.getFormat()).thenReturn(null);
Mockito.when(mockedThesaurus.getType()).thenReturn(null);
Mockito.when(mockedThesaurus.getCreator()).thenReturn(null);
Mockito.when(mockedThesaurus.getIdentifier()).thenReturn(id);
Mockito.when(mockedThesaurus.getTitle()).thenReturn("Thesaurus Title");
Mockito.when(mockedThesaurus.getContributor()).thenReturn(
"Fake Contributor");
Mockito.when(mockedThesaurus.getCoverage()).thenReturn("Fake Coverage");
Calendar gregCalendar = new GregorianCalendar();
gregCalendar.setTime(DateUtil.dateFromString("2013-02-15 02:02:02"));
Mockito.when(mockedThesaurus.getCreated()).thenReturn(gregCalendar.getTime());
Mockito.when(mockedThesaurus.getDate()).thenReturn(gregCalendar.getTime());
Mockito.when(mockedThesaurus.getDescription()).thenReturn(
"Fake Description");
Set<Language> mockedLanguages = getMockedLanguages();
Mockito.when(mockedThesaurus.getLang()).thenReturn(mockedLanguages);
Mockito.when(mockedThesaurus.getPublisher()).thenReturn(
"Fake Publisher");
Mockito.when(mockedThesaurus.getRelation()).thenReturn("Fake Relation");
Mockito.when(mockedThesaurus.getRights()).thenReturn("Fake Rights");
Mockito.when(mockedThesaurus.getSource()).thenReturn("Fake Source");
Mockito.when(mockedThesaurus.getSubject()).thenReturn("Fake Subject");
return mockedThesaurus;
}
private Thesaurus getMockedThesaurusWithAllFields(String id) {
Thesaurus mockedThesaurus = getMockedThesaurusWithNonMandatoryEmptyFields(id);
ThesaurusType mockedType = Mockito.mock(ThesaurusType.class);
Mockito.when(mockedType.getLabel()).thenReturn("Fake Type");
ThesaurusOrganization mockedCreator = Mockito
.mock(ThesaurusOrganization.class);
Mockito.when(mockedCreator.getName()).thenReturn("Fake Creator Name");
Mockito.when(mockedCreator.getHomepage()).thenReturn(
"Fake Creator Homepage");
Mockito.when(mockedCreator.getEmail()).thenReturn(
"Fake Creator Email");
// Format, type and creator might be null (not mandatory)
Set<ThesaurusFormat> mockedFormats = getMockedFormats();
Mockito.when(mockedThesaurus.getFormat()).thenReturn(mockedFormats);
Mockito.when(mockedThesaurus.getType()).thenReturn(mockedType);
Mockito.when(mockedThesaurus.getCreator()).thenReturn(mockedCreator);
return mockedThesaurus;
}
}