/***************************************************************** * 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.cayenne.dbsync.reverse.dbimport; import org.apache.cayenne.configuration.ConfigurationNameMapper; import org.apache.cayenne.configuration.ConfigurationTree; import org.apache.cayenne.configuration.DataChannelDescriptor; import org.apache.cayenne.configuration.DataMapLoader; import org.apache.cayenne.configuration.DefaultConfigurationNameMapper; import org.apache.cayenne.configuration.XMLDataChannelDescriptorLoader; import org.apache.cayenne.configuration.XMLDataMapLoader; import org.apache.cayenne.dbsync.naming.DefaultObjectNameGenerator; import org.apache.cayenne.dbsync.naming.NoStemStemmer; import org.apache.cayenne.di.AdhocObjectFactory; import org.apache.cayenne.di.Binder; import org.apache.cayenne.di.ClassLoaderManager; import org.apache.cayenne.di.DIBootstrap; import org.apache.cayenne.di.Injector; import org.apache.cayenne.di.Module; import org.apache.cayenne.di.spi.DefaultAdhocObjectFactory; import org.apache.cayenne.di.spi.DefaultClassLoaderManager; import org.apache.cayenne.map.DataMap; import org.apache.cayenne.map.ObjEntity; import org.apache.cayenne.map.Relationship; import org.apache.cayenne.resource.URLResource; import org.junit.Before; import org.junit.Test; import java.net.URL; import java.util.ArrayList; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; public class ManyToManyCandidateEntityTest { private DataMap map; @Before public void setUp() throws Exception { Module testModule = new Module() { public void configure(Binder binder) { binder.bind(ClassLoaderManager.class).to(DefaultClassLoaderManager.class); binder.bind(AdhocObjectFactory.class).to(DefaultAdhocObjectFactory.class); binder.bind(DataMapLoader.class).to(XMLDataMapLoader.class); binder.bind(ConfigurationNameMapper.class).to(DefaultConfigurationNameMapper.class); } }; Injector injector = DIBootstrap.createInjector(testModule); // create and initialize loader instance to test XMLDataChannelDescriptorLoader loader = new XMLDataChannelDescriptorLoader(); injector.injectMembers(loader); String testConfigName = "relationship-optimisation"; URL url = getClass().getResource("cayenne-" + testConfigName + ".xml"); ConfigurationTree<DataChannelDescriptor> tree = loader.load(new URLResource(url)); map = tree.getRootNode().getDataMap(testConfigName); } @Test public void testMatchingForManyToManyEntity() throws Exception { ObjEntity manyToManyEntity = map.getObjEntity("Table1Table2"); assertNotNull(ManyToManyCandidateEntity.build(manyToManyEntity)); } @Test public void testMatchingForNotManyToManyEntity() throws Exception { ObjEntity entity = map.getObjEntity("Table1"); assertNull(ManyToManyCandidateEntity.build(entity)); } @Test public void testOptimisationForManyToManyEntity() { ObjEntity manyToManyEntity = map.getObjEntity("Table1Table2"); ManyToManyCandidateEntity.build(manyToManyEntity).optimizeRelationships( new DefaultObjectNameGenerator(NoStemStemmer.getInstance())); ObjEntity table1Entity = map.getObjEntity("Table1"); ObjEntity table2Entity = map.getObjEntity("Table2"); assertEquals(1, table1Entity.getRelationships().size()); assertEquals(table2Entity, new ArrayList<Relationship>(table1Entity.getRelationships()).get(0) .getTargetEntity()); assertEquals(1, table2Entity.getRelationships().size()); assertEquals(table1Entity, new ArrayList<Relationship>(table2Entity.getRelationships()).get(0) .getTargetEntity()); } }