/** * AnalyzerBeans * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program 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 distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.eobjects.analyzer.test.full.scenarios; import java.io.File; import junit.framework.TestCase; import org.eobjects.analyzer.configuration.AnalyzerBeansConfiguration; import org.eobjects.analyzer.configuration.AnalyzerBeansConfigurationImpl; import org.eobjects.analyzer.connection.DatastoreCatalogImpl; import org.eobjects.analyzer.descriptors.ClasspathScanDescriptorProvider; import org.eobjects.analyzer.descriptors.DescriptorProvider; import org.eobjects.analyzer.job.JaxbJobReader; import org.eobjects.analyzer.job.builder.AnalysisJobBuilder; import org.eobjects.analyzer.job.runner.AnalysisRunner; import org.eobjects.analyzer.job.runner.AnalysisRunnerImpl; import org.eobjects.analyzer.test.TestHelper; /** * Ticket #383: Error handling when a job has been errornously configured - the * input columns of a transformer originate from different tables * * */ public class InputColumnsFromDifferentTablesTest extends TestCase { public void testScenario() throws Exception { DescriptorProvider descriptorProvider = new ClasspathScanDescriptorProvider() .scanPackage("org.eobjects.analyzer.beans", true); AnalyzerBeansConfiguration conf = new AnalyzerBeansConfigurationImpl() .replace( new DatastoreCatalogImpl(TestHelper .createSampleDatabaseDatastore("my database"))) .replace(descriptorProvider); AnalysisRunner runner = new AnalysisRunnerImpl(conf); AnalysisJobBuilder jobBuilder = new JaxbJobReader(conf) .create(new File( "src/test/resources/example-job-input-columns-from-different-tables.xml")); try { runner.run(jobBuilder.toAnalysisJob()); fail("exception expected"); } catch (IllegalStateException e) { assertEquals( "Multiple originating tables (CUSTOMERS, EMPLOYEES) found for source: TransformerJobBuilder[transformer=Concatenator,inputColumns=[MetaModelInputColumn[PUBLIC.EMPLOYEES.LASTNAME], MetaModelInputColumn[PUBLIC.CUSTOMERS.CONTACTLASTNAME]]]", e.getMessage()); } } }