/** * 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.tika.language.translate; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.fail; import static org.junit.Assume.assumeTrue; import org.apache.tika.exception.TikaException; import java.io.IOException; import org.junit.Before; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; /** * Generic Tests to ensure that the RSS library behaves as expected * @author mark * */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class YandexTranslatorTest { private YandexTranslator translator; @Before public void setUp() throws Exception { this.translator = new YandexTranslator(); } @Test public void test1EN_ES_Translation() { String inputText = "Hello World!!!"; String expectedText = "Hola Mundo!!!"; try{ String transText = translator.translate(inputText, "en", "es"); assertNotNull("Text not translated", transText); assumeTrue(expectedText.equals(transText)); } catch(TikaException e){ e.printStackTrace(); fail(e.getMessage()); } catch(IOException e){ e.printStackTrace(); fail(e.getMessage()); } } @Test public void test2UNDEFINED_DE_ES_Translation() { String inputText = "Guten Tag!!!"; String expectedText = "Buen Día!!!"; try{ String transText = translator.translate(inputText, "es"); assertNotNull("Text not translated", transText); assumeTrue(expectedText.equals(transText)); } catch(TikaException e){ e.printStackTrace(); fail(e.getMessage()); } catch(IOException e){ e.printStackTrace(); fail(e.getMessage()); } } @Test public void test3UNDEFINED_IT_EN_Translation() { String inputText = "Buona Sera!!!"; String expectedText = "Good Evening!!!"; try{ String transText = translator.translate(inputText, "en"); assertNotNull("Text not translated", transText); assumeTrue(expectedText.equals(transText)); } catch(TikaException e){ e.printStackTrace(); fail(e.getMessage()); } catch(IOException e){ e.printStackTrace(); fail(e.getMessage()); } } }