/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.isis.applib.services.i18n; import java.util.Locale; import org.jmock.Expectations; import org.jmock.auto.Mock; import org.junit.Rule; import org.junit.Test; import org.apache.isis.core.unittestsupport.jmocking.JUnitRuleMockery2; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; public class TranslatableStringTest { public static class GetText extends TranslatableStringTest { @Test public void singularForm() throws Exception { final TranslatableString ts = TranslatableString.tr("No, you can't do that!"); assertThat(ts.getPattern(), is("No, you can't do that!")); } @Test public void pluralFormOne() throws Exception { final TranslatableString ts = TranslatableString.trn("You can't do that because there is a dependent object", "You can't do that because there are dependent objects", 1); assertThat(ts.getPattern(), is("You can't do that because there is a dependent object")); } @Test public void pluralFormTwo() throws Exception { final TranslatableString ts = TranslatableString.trn("You can't do that because there is a dependent object", "You can't do that because there are dependent objects", 2); assertThat(ts.getPattern(), is("You can't do that because there are dependent objects")); } } public static class Translated extends TranslatableStringTest { @Test public void singularForm() throws Exception { final TranslatableString ts = TranslatableString.tr("My name is {lastName}, {firstName} {lastName}.", "lastName", "Bond", "firstName", "James"); assertThat(ts.translated("Iche heisse {lastName}, {firstName} {lastName}."), is("Iche heisse Bond, James Bond.")); } @Test public void pluralFormOne() throws Exception { final TranslatableString ts = TranslatableString.trn( "My name is {lastName}, {firstName} {lastName}.", "My name is {firstName} {lastName}.", 1, "lastName", "Bond", "firstName", "James"); assertThat(ts.translated("Iche heisse {lastName}, {firstName} {lastName}."), is("Iche heisse Bond, James Bond.")); } } public static class Translate extends TranslatableStringTest { @Rule public JUnitRuleMockery2 context = JUnitRuleMockery2.createFor(JUnitRuleMockery2.Mode.INTERFACES_AND_CLASSES); @Mock private TranslationService mockTranslationService; @Test public void singularForm() throws Exception { // given final String simpleText = "text to translate"; final String someContext = "someContext"; final Locale someLocale = Locale.CANADA; // any final String translation = "the translation"; final TranslatableString ts = TranslatableString.tr(simpleText); // expect context.checking(new Expectations() {{ oneOf(mockTranslationService).translate(someContext, simpleText); will(returnValue(translation)); }}); // when assertThat(ts.translate(mockTranslationService, someContext), is(translation)); } @Test public void pluralFormOne() throws Exception { // given final String singularText = "singular text to translate"; final String pluralText = "plural text to translate"; final String someContext = "someContext"; final Locale someLocale = Locale.CANADA; // any final String translation = "the translation"; final TranslatableString ts = TranslatableString.trn(singularText, pluralText, 1); // expect context.checking(new Expectations() {{ oneOf(mockTranslationService).translate(someContext, singularText, pluralText, 1); will(returnValue(translation)); }}); // when assertThat(ts.translate(mockTranslationService, someContext), is(translation)); } @Test public void pluralFormTwo() throws Exception { // given final String singularText = "singular text to translate"; final String pluralText = "plural text to translate"; final String someContext = "someContext"; final Locale someLocale = Locale.CANADA; // any final String translation = "the translation"; final int number = 2; // != 1 final TranslatableString ts = TranslatableString.trn(singularText, pluralText, number); // expect context.checking(new Expectations() {{ oneOf(mockTranslationService).translate(someContext, singularText, pluralText, number); will(returnValue(translation)); }}); // when assertThat(ts.translate(mockTranslationService, someContext), is(translation)); } } }