/** * Licensed 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. * * Copyright 2012-2016 the original author or authors. */ package org.assertj.db.api.assertions; import org.assertj.core.api.Assertions; import org.assertj.db.api.ChangeAssert; import org.assertj.db.api.ChangeColumnAssert; import org.assertj.db.common.AbstractTest; import org.assertj.db.common.NeedReload; import org.assertj.db.type.Changes; import org.junit.Test; import java.util.UUID; import static org.assertj.db.api.Assertions.assertThat; import static org.junit.Assert.fail; /** * Tests on {@link org.assertj.db.api.assertions.AssertOnColumnOfChangeEquality} class : * {@link org.assertj.db.api.assertions.AssertOnColumnOfChangeEquality#hasValues(java.util.UUID, java.util.UUID)} method. * * @author Otoniel Isidoro (otoniel.isidoro@sofist.com.br) */ public class AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test extends AbstractTest { /** * This method tests the {@code hasValues} assertion method. */ @Test @NeedReload public void test_has_values() { Changes changes = new Changes(source).setStartPointNow(); update("update test set var15 = '0E2A1269-EFF0-4233-B87B-B53E8B6F164D' where var1 = 1"); changes.setEndPointNow(); ChangeAssert changeAssert = assertThat(changes).change(); ChangeColumnAssert changeColumnAssert = changeAssert.column("var15"); ChangeColumnAssert changeColumnAssert2 = changeColumnAssert .hasValues(UUID.fromString("30b443ae-c0c9-4790-9bec-ce1380808435"), UUID.fromString("0e2a1269-eff0-4233-b87b-b53e8b6f164d")); Assertions.assertThat(changeColumnAssert).isSameAs(changeColumnAssert2); } /** * This method should fail because the value at start point is different. */ @Test @NeedReload public void should_fail_because_value_at_start_point_is_different() { Changes changes = new Changes(source).setStartPointNow(); update("insert into test(var1, var15) values(5, '0E2A1269-EFF0-4233-B87B-B53E8B6F164D')"); changes.setEndPointNow(); try { assertThat(changes).change().column("var15").hasValues(UUID.fromString("0e2a1269-eff0-4233-b87b-b53e8b6f164d"), UUID.fromString("0e2a1269-eff0-4233-b87b-b53e8b6f164d")); fail("An exception must be raised"); } catch (AssertionError e) { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Column at index 14 (column name : VAR15) of Change at index 0 (on table : TEST and with primary key : [5]) of Changes on tables of 'sa/jdbc:h2:mem:test' source] %n" + "Expecting that start point:%n" + " <null>%n" + "to be equal to: %n" + " <0e2a1269-eff0-4233-b87b-b53e8b6f164d>")); } } /** * This method should fail because the value at end point is different. */ @Test @NeedReload public void should_fail_because_value_at_end_point_is_different() { Changes changes = new Changes(source).setStartPointNow(); update("delete from test where var1 = 1"); changes.setEndPointNow(); try { assertThat(changes).change().column("var15").hasValues(UUID.fromString("30b443ae-c0c9-4790-9bec-ce1380808435"), UUID.fromString("30b443ae-c0c9-4790-9bec-ce1380808435")); fail("An exception must be raised"); } catch (AssertionError e) { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Column at index 14 (column name : VAR15) of Change at index 0 (on table : TEST and with primary key : [1]) of Changes on tables of 'sa/jdbc:h2:mem:test' source] %n" + "Expecting that end point:%n" + " <null>%n" + "to be equal to: %n" + " <30b443ae-c0c9-4790-9bec-ce1380808435>")); } } }