Search in sources :

Example 1 with GermanRelease

use of org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease in project mapstruct by mapstruct.

the class QualifierTest method shouldNotUseQualifierAnnotatedMethod.

@ProcessorTest
@WithClasses({ MapperWithoutQualifiedBy.class, Facts.class, EnglishToGerman.class, Reverse.class })
@IssueKey("341")
public void shouldNotUseQualifierAnnotatedMethod() {
    OriginalRelease foreignMovies = new OriginalRelease();
    foreignMovies.setTitle("Sixth Sense, The");
    GermanRelease result = MapperWithoutQualifiedBy.INSTANCE.map(foreignMovies);
    assertThat(result).isNotNull();
    assertThat(result.getTitle()).isEqualTo("ehT ,esneS htxiS");
}
Also used : GermanRelease(org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease) CreateGermanRelease(org.mapstruct.ap.test.selection.qualifier.annotation.CreateGermanRelease) OriginalRelease(org.mapstruct.ap.test.selection.qualifier.bean.OriginalRelease) IssueKey(org.mapstruct.ap.testutil.IssueKey) ProcessorTest(org.mapstruct.ap.testutil.ProcessorTest) WithClasses(org.mapstruct.ap.testutil.WithClasses)

Example 2 with GermanRelease

use of org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease in project mapstruct by mapstruct.

the class QualifierTest method shouldMatchClassAndMethod.

@ProcessorTest
@WithClasses({ Titles.class, Facts.class, PlotWords.class, OriginalRelease.class, EnglishToGerman.class, TitleTranslator.class, MovieMapper.class, KeyWordMapper.class, FactMapper.class })
public void shouldMatchClassAndMethod() {
    OriginalRelease foreignMovies = new OriginalRelease();
    foreignMovies.setTitle("Sixth Sense, The");
    foreignMovies.setKeyWords(Arrays.asList("evergreen", "magnificent"));
    Map<String, List<String>> facts = new HashMap<>();
    facts.put("director", Arrays.asList("M. Night Shyamalan"));
    facts.put("cast", Arrays.asList("Bruce Willis", "Haley Joel Osment", "Toni Collette"));
    facts.put("plot keywords", Arrays.asList("boy", "child psychologist", "I see dead people"));
    foreignMovies.setFacts(facts);
    GermanRelease germanMovies = MovieMapper.INSTANCE.toGerman(foreignMovies);
    assertThat(germanMovies).isNotNull();
    assertThat(germanMovies.getTitle()).isEqualTo("Der sechste Sinn");
    assertThat(germanMovies.getKeyWords()).isNotNull();
    assertThat(germanMovies.getKeyWords().size()).isEqualTo(2);
    assertThat(germanMovies.getKeyWords()).containsSequence("Evergreen", "Großartig");
    assertThat(germanMovies.getFacts()).isNotNull();
    assertThat(germanMovies.getFacts()).hasSize(3);
    assertThat(germanMovies.getFacts()).contains(entry("Regisseur", Arrays.asList("M. Night Shyamalan")), entry("Besetzung", Arrays.asList("Bruce Willis", "Haley Joel Osment", "Toni Collette")), entry("Handlungstichwörter", Arrays.asList("Jungen", "Kinderpsychologe", "Ich sehe tote Menschen")));
}
Also used : GermanRelease(org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease) CreateGermanRelease(org.mapstruct.ap.test.selection.qualifier.annotation.CreateGermanRelease) OriginalRelease(org.mapstruct.ap.test.selection.qualifier.bean.OriginalRelease) HashMap(java.util.HashMap) List(java.util.List) ProcessorTest(org.mapstruct.ap.testutil.ProcessorTest) WithClasses(org.mapstruct.ap.testutil.WithClasses)

Example 3 with GermanRelease

use of org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease in project mapstruct by mapstruct.

the class NamedTest method shouldMatchClassAndMethod.

@ProcessorTest
@WithClasses({ Titles.class, Facts.class, PlotWords.class, OriginalRelease.class, EnglishToGerman.class, TitleTranslator.class, MovieMapper.class, KeyWordMapper.class, FactMapper.class })
public void shouldMatchClassAndMethod() {
    OriginalRelease foreignMovies = new OriginalRelease();
    foreignMovies.setTitle("Sixth Sense, The");
    foreignMovies.setKeyWords(Arrays.asList("evergreen", "magnificent"));
    Map<String, List<String>> facts = new HashMap<>();
    facts.put("director", Arrays.asList("M. Night Shyamalan"));
    facts.put("cast", Arrays.asList("Bruce Willis", "Haley Joel Osment", "Toni Collette"));
    facts.put("plot keywords", Arrays.asList("boy", "child psychologist", "I see dead people"));
    foreignMovies.setFacts(facts);
    GermanRelease germanMovies = MovieMapper.INSTANCE.toGerman(foreignMovies);
    assertThat(germanMovies).isNotNull();
    assertThat(germanMovies.getTitle()).isEqualTo("Der sechste Sinn");
    assertThat(germanMovies.getKeyWords()).isNotNull();
    assertThat(germanMovies.getKeyWords().size()).isEqualTo(2);
    assertThat(germanMovies.getKeyWords()).containsSequence("Evergreen", "Großartig");
    assertThat(germanMovies.getFacts()).isNotNull();
    assertThat(germanMovies.getFacts()).hasSize(3);
    assertThat(germanMovies.getFacts()).contains(entry("Regisseur", Arrays.asList("M. Night Shyamalan")), entry("Besetzung", Arrays.asList("Bruce Willis", "Haley Joel Osment", "Toni Collette")), entry("Handlungstichwörter", Arrays.asList("Jungen", "Kinderpsychologe", "Ich sehe tote Menschen")));
}
Also used : GermanRelease(org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease) CreateGermanRelease(org.mapstruct.ap.test.selection.qualifier.annotation.CreateGermanRelease) OriginalRelease(org.mapstruct.ap.test.selection.qualifier.bean.OriginalRelease) HashMap(java.util.HashMap) List(java.util.List) ProcessorTest(org.mapstruct.ap.testutil.ProcessorTest) WithClasses(org.mapstruct.ap.testutil.WithClasses)

Aggregations

CreateGermanRelease (org.mapstruct.ap.test.selection.qualifier.annotation.CreateGermanRelease)3 GermanRelease (org.mapstruct.ap.test.selection.qualifier.bean.GermanRelease)3 OriginalRelease (org.mapstruct.ap.test.selection.qualifier.bean.OriginalRelease)3 ProcessorTest (org.mapstruct.ap.testutil.ProcessorTest)3 WithClasses (org.mapstruct.ap.testutil.WithClasses)3 HashMap (java.util.HashMap)2 List (java.util.List)2 IssueKey (org.mapstruct.ap.testutil.IssueKey)1