Package org.zanata.feature.editor

Source Code of org.zanata.feature.editor.TranslateOdsTest

/*
* Copyright 2014, Red Hat, Inc. and individual contributors as indicated by the
* @author tags. See the copyright.txt file in the distribution for a full
* listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF
* site: http://www.fsf.org.
*/
package org.zanata.feature.editor;

import java.io.File;

import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.zanata.feature.Feature;
import org.zanata.feature.testharness.ZanataTestCase;
import org.zanata.feature.testharness.TestPlan.DetailedTest;
import org.zanata.page.webtrans.EditorPage;
import org.zanata.util.CleanDocumentStorageRule;
import org.zanata.util.SampleProjectRule;
import org.zanata.util.TestFileGenerator;
import org.zanata.util.ZanataRestCaller;
import org.zanata.workflow.BasicWorkFlow;
import org.zanata.workflow.LoginWorkFlow;
import org.zanata.workflow.ProjectWorkFlow;

import static org.assertj.core.api.Assertions.assertThat;
import static org.zanata.util.FunctionalTestHelper.assumeFalse;

/**
* @author Damian Jansen <a
*         href="mailto:djansen@redhat.com">djansen@redhat.com</a>
*/
@Category(DetailedTest.class)
public class TranslateOdsTest extends ZanataTestCase {

    @Rule
    public SampleProjectRule sampleProjectRule = new SampleProjectRule();

    @Rule
    public CleanDocumentStorageRule documentStorageRule =
            new CleanDocumentStorageRule();

    private TestFileGenerator testFileGenerator = new TestFileGenerator();
    private ZanataRestCaller zanataRestCaller;

    @Before
    public void before() {
        zanataRestCaller = new ZanataRestCaller();
        new BasicWorkFlow().goToHome().deleteCookiesAndRefresh();
        assumeFalse(
                "",
                new File(CleanDocumentStorageRule.getDocumentStoragePath()
                        .concat(File.separator).concat("documents")
                        .concat(File.separator)).exists());
        new LoginWorkFlow().signIn("admin", "admin");
    }

    @Feature(summary = "The user can translate an OpenOffice spreadsheet file",
            tcmsTestPlanIds = 5316, tcmsTestCaseIds = 0)
    @Test(timeout = ZanataTestCase.MAX_SHORT_TEST_DURATION)
    public void translateBasicOdsFile() {
        File testfile = testFileGenerator.openTestFile("test-ods.ods");
        zanataRestCaller.createProjectAndVersion("ods-translate", "ods", "file");

        EditorPage editorPage = new ProjectWorkFlow()
                .goToProjectByName("ods-translate")
                .gotoVersion("ods")
                .gotoSettingsTab()
                .gotoSettingsDocumentsTab()
                .pressUploadFileButton()
                .enterFilePath(testfile.getAbsolutePath())
                .submitUpload()
                .clickUploadDone()
                .gotoLanguageTab()
                .translate("fr", testfile.getName());

        assertThat(editorPage.getMessageSourceAtRowIndex(0))
                .isEqualTo("TestODS")
                .as("Item 1 shows TestODS (the sheet name)");
        assertThat(editorPage.getMessageSourceAtRowIndex(1))
                .isEqualTo("First")
                .as("Item 2 shows First (the page name)");
        assertThat(editorPage.getMessageSourceAtRowIndex(2))
                .isEqualTo("Line One")
                .as("Item 3 shows Line One");
        assertThat(editorPage.getMessageSourceAtRowIndex(3))
                .isEqualTo("Line Two")
                .as("Item 4 shows Line Two");
        assertThat(editorPage.getMessageSourceAtRowIndex(4))
                .isEqualTo("Line Three")
                .as("Item 5 shows Line Three");

        editorPage = editorPage
                .translateTargetAtRowIndex(0, "TestODS")
                .approveTranslationAtRow(0)
                .translateTargetAtRowIndex(1, "Début")
                .approveTranslationAtRow(1)
                .translateTargetAtRowIndex(2, "Une Ligne")
                .approveTranslationAtRow(2)
                .translateTargetAtRowIndex(3, "Deux Ligne")
                .approveTranslationAtRow(3)
                .translateTargetAtRowIndex(4, "Ligne Trois")
                .approveTranslationAtRow(4);

        assertTranslations(editorPage);

        // Close and reopen the editor to test save, switches to CodeMirror
        editorPage.reload();

        assertTranslations(editorPage);
    }

    private void assertTranslations(EditorPage editorPage) {
        assertThat(editorPage.getBasicTranslationTargetAtRowIndex(0))
                .isEqualTo("TestODS")
                .as("Item 1 shows a translation of the sheet name");
        assertThat(editorPage.getBasicTranslationTargetAtRowIndex(1))
                .isEqualTo("Début")
                .as("Item 2 shows a translation of page name");
        assertThat(editorPage.getBasicTranslationTargetAtRowIndex(2))
                .isEqualTo("Une Ligne")
                .as("Item 3 shows a translation of Line One");
        assertThat(editorPage.getBasicTranslationTargetAtRowIndex(3))
                .isEqualTo("Deux Ligne")
                .as("Item 4 shows a translation of Line Two");
        assertThat(editorPage.getBasicTranslationTargetAtRowIndex(4))
                .isEqualTo("Ligne Trois")
                .as("Item 5 shows a translation of Line Three");
    }
}
TOP

Related Classes of org.zanata.feature.editor.TranslateOdsTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.