/* * * * Copyright (c) 2016. David Sowerby * * * * 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 uk.q3c.krail.core.i18n; import com.google.inject.AbstractModule; import com.google.inject.Inject; import com.mycila.testing.junit.MycilaJunitRunner; import com.mycila.testing.plugin.guice.GuiceContext; import com.mycila.testing.plugin.guice.ModuleProvider; import org.junit.Test; import org.junit.runner.RunWith; import uk.q3c.krail.core.eventbus.EventBusModule; import uk.q3c.krail.core.guice.uiscope.UIScopeModule; import uk.q3c.krail.core.guice.vsscope.VaadinSessionScopeModule; import uk.q3c.krail.core.persist.inmemory.option.DefaultInMemoryOptionStore; import uk.q3c.krail.core.persist.inmemory.option.InMemoryOptionStore; import uk.q3c.krail.testutil.i18n.TestI18NModule; import uk.q3c.krail.testutil.i18n.TestLabelKey; import uk.q3c.krail.testutil.option.MockOption; import uk.q3c.krail.testutil.option.TestOptionModule; import uk.q3c.krail.testutil.persist.TestPersistenceModule; import static org.assertj.core.api.Assertions.assertThat; @RunWith(MycilaJunitRunner.class) @GuiceContext({TestI18NModule.class, TestOptionModule.class, TestPersistenceModule.class, EventBusModule.class, UIScopeModule.class, VaadinSessionScopeModule .class}) public class I18NValueTest { @Inject MockOption option; @Inject Translate i18NValue; @Test public void value() { // given // current locale is UK // when String result = i18NValue.from(LabelKey.First_Name); // then assertThat(result).isEqualTo("First Name"); } @Test public void valueFromName() { // given // current locale is UK // when String result = i18NValue.from(TestLabelKey.Login); // then assertThat(result).isEqualTo("Login"); } @Test public void valueWithParams() { // given // when String result = i18NValue.from(MessageKey.Invalid_URI, "public/wiggly/id=3"); // then assertThat(result).isEqualTo("public/wiggly/id=3 is not a valid page"); } @ModuleProvider protected AbstractModule moduleProvider() { return new AbstractModule() { @Override protected void configure() { bind(I18NProcessor.class).to(DefaultI18NProcessor.class); bind(InMemoryOptionStore.class).to(DefaultInMemoryOptionStore.class); } }; } }