/******************************************************************************* * Copyright 2015-2016 - CNRS (Centre National de Recherche Scientifique) * * 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 eu.project.ttc.test.func; import java.io.IOException; import java.io.InputStream; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Collections; import java.util.List; import java.util.Properties; import org.junit.runner.RunWith; import org.junit.runners.Suite; import com.google.common.base.Preconditions; import com.google.common.collect.Lists; import eu.project.ttc.engines.cleaner.TermProperty; import eu.project.ttc.engines.desc.Lang; import eu.project.ttc.models.Term; import eu.project.ttc.models.TermIndex; import eu.project.ttc.test.func.align.BilingualAlignerSpec; import eu.project.ttc.test.func.tools.builders.TermSuitePreprocessorSpec; import eu.project.ttc.test.func.tools.builders.TerminoExtractorSpec; import eu.project.ttc.test.func.tools.builders.TerminoFiltererSpec; import eu.project.ttc.test.func.tools.cmd.TermSuiteAlignerCLISpec; import eu.project.ttc.test.func.tools.cmd.TermSuiteTerminoCLISpec; import eu.project.ttc.tools.cli.TermSuiteAlignerCLI; import eu.project.ttc.tools.cli.TermSuiteTerminoCLI; @RunWith(Suite.class) @Suite.SuiteClasses({ FrenchWindEnergySpec.class, EnglishWindEnergySpec.class, TermSuitePreprocessorSpec.class, TerminoFiltererSpec.class, TermSuiteTerminoCLISpec.class, TermSuiteAlignerCLISpec.class, BilingualAlignerSpec.class, TerminoExtractorSpec.class }) public class FunctionalTests { public static final Path TERM_INDEX_1=Paths.get("src", "test", "resources", "org", "project", "ttc", "test", "json", "termIndex1.json"); public static final Path CORPUS2_PATH=Paths.get("src", "test", "resources", "eu", "project", "ttc", "test", "corpus", "corpus2"); public static final Path CORPUS1_PATH=Paths.get("src", "test", "resources", "eu", "project", "ttc", "test", "corpus", "corpus1"); public static final Path TERMINO_WESHORT_PATH=Paths.get("src", "test", "resources", "eu", "project", "ttc", "test", "termino"); public static final Path DICO_PATH=Paths.get("src", "test", "resources", "eu", "project", "ttc", "test", "dico"); public static final String CORPUS_WESHORT_PATH="eu/project/ttc/test/corpus/weshort/"; public static final String CORPUS_WE_PATH="eu/project/ttc/test/corpus/we/"; private static final String FUNCTION_TESTS_CONFIG = "termsuite-test.properties"; private static final String PROP_TREETAGGER_HOME_PATH = "treetagger.home.path"; private static Object getConfigProperty( String propName) { InputStream is = FunctionalTests.class.getClassLoader().getResourceAsStream(FUNCTION_TESTS_CONFIG); Properties properties = new Properties(); try { properties.load(is); is.close(); Preconditions.checkArgument(!properties.contains(propName), "No such property in config file %s: %s", FUNCTION_TESTS_CONFIG, propName); return properties.get(propName); } catch (IOException e) { throw new RuntimeException(e); } } public static String getCorpusWEShortPath(Lang lang) { return "src/test/resources/" + CORPUS_WESHORT_PATH + lang.getName().toLowerCase() + "/txt/"; } public static String getCorpusWEPath(Lang lang) { return "src/test/resources/" + CORPUS_WE_PATH + lang.getName().toLowerCase() + "/txt/"; } public static String getTerminoWEShortPath(Lang lang) { return Paths.get(TERMINO_WESHORT_PATH.toString(), "we-short-" + lang.getCode() + ".json").toString(); } public static String getDicoPath(Lang source, Lang target) { String dicoFileName = String.format("%s-%s.txt", source.getCode(), target.getCode()); return Paths.get(DICO_PATH.toString(), dicoFileName).toString(); } public static String getTaggerPath() { return (String)getConfigProperty(PROP_TREETAGGER_HOME_PATH); } public static List<Term> termsByProperty(TermIndex termIndex, TermProperty termProperty, boolean desc) { List<Term> terms = Lists.newArrayList(termIndex.getTerms()); Collections.sort(terms, termProperty.getComparator(termIndex, desc)); return terms; } }