/***************************************************************** * 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.access.dbsync; import org.apache.cayenne.CayenneRuntimeException; import org.apache.cayenne.access.MockOperationObserver; import org.apache.cayenne.query.Query; import org.apache.cayenne.query.SQLTemplate; import org.apache.cayenne.unit.di.server.CayenneProjects; import org.apache.cayenne.unit.di.server.UseServerRuntime; import org.junit.Test; import java.util.Collections; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.fail; @UseServerRuntime(CayenneProjects.SUS_PROJECT) public class ThrowOnPartialSchemaStrategyIT extends SchemaUpdateStrategyBase { @Test public void testThrowOnPartialStrategyTableNoExist() throws Exception { String template = "SELECT #result('ARTIST_ID' 'int') FROM ARTIST ORDER BY ARTIST_ID"; SQLTemplate query = new SQLTemplate(Object.class, template); MockOperationObserver observer = new MockOperationObserver(); setStrategy(ThrowOnPartialSchemaStrategy.class); try { node.performQueries(Collections.singletonList((Query) query), observer); } catch (CayenneRuntimeException e) { assertNotNull(e); } try { node.performQueries(Collections.singletonList((Query) query), observer); } catch (CayenneRuntimeException e) { assertNotNull(e); } } @Test public void testThrowOnPartialStrategyTableExist() throws Exception { String template = "SELECT #result('ARTIST_ID' 'int') FROM ARTIST ORDER BY ARTIST_ID"; SQLTemplate query = new SQLTemplate(Object.class, template); MockOperationObserver observer = new MockOperationObserver(); createOneTable("SUS1"); createOneTable("SUS2"); setStrategy(ThrowOnPartialSchemaStrategy.class); node.performQueries(Collections.singletonList(query), observer); } @Test public void testThrowOnPartialStrategyWithOneTable() throws Exception { createOneTable("SUS1"); setStrategy(ThrowOnPartialSchemaStrategy.class); String template = "SELECT #result('ARTIST_ID' 'int') FROM ARTIST ORDER BY ARTIST_ID"; SQLTemplate query = new SQLTemplate(Object.class, template); MockOperationObserver observer = new MockOperationObserver(); try { node.performQueries(Collections.singletonList(query), observer); assertEquals(1, existingTables().size()); fail("Must have thrown on partial schema"); } catch (CayenneRuntimeException e) { // expected } } }