Fix batch update job sample

This commit is contained in:
dsyer
2008-07-23 11:41:27 +00:00
parent 408f37e0c7
commit 7a106162c8
10 changed files with 65 additions and 214 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.test.context.ContextConfiguration;
* @author Robert Kasanicky
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration()
@ContextConfiguration
public class BatchSqlUpdateJobFunctionalTests extends AbstractCustomerCreditIncreaseTests {
}

View File

@@ -1,104 +0,0 @@
/*
* Copyright 2006-2007 the original author or authors.
*
* 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.
*/
package org.springframework.batch.sample.item.writer;
import static org.junit.Assert.*;
import java.math.BigDecimal;
import org.easymock.MockControl;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.sample.domain.CustomerCredit;
import org.junit.Before;
import org.junit.Test;
/**
* @author Dave Syer
*
*/
public class BatchSqlCustomerCreditIncreaseWriterTests {
private BatchSqlCustomerCreditIncreaseWriter writer = new BatchSqlCustomerCreditIncreaseWriter();
private ItemWriter delegate;
private MockControl control = MockControl.createControl(ItemWriter.class);
private CustomerCredit customerCredit;
@Before
public void setUp() throws Exception {
delegate = (ItemWriter) control.getMock();
writer.setDelegate(delegate);
customerCredit = new CustomerCredit();
customerCredit.setId(13);
customerCredit.setCredit(new BigDecimal(1000));
customerCredit.setName("foo");
}
@Test
public void testAfterPropertiesSet() throws Exception {
try {
writer.afterPropertiesSet();
fail("Expected IllegalStateException");
} catch (IllegalStateException e) {
// expected: wrong class
String message = e.getMessage();
assertTrue("Message does not contain 'instance'"+message, message.indexOf("instance")>=0);
}
}
/**
* Test method for
* {@link org.springframework.batch.sample.item.writer.BatchSqlCustomerCreditIncreaseWriter#write(CustomerCredit)}.
* @throws Exception
*/
@Test
public void testWrite() throws Exception {
delegate.write(customerCredit);
control.setVoidCallable();
control.replay();
writer.write(customerCredit);
control.verify();
}
/**
* Test method for
* {@link org.springframework.batch.sample.item.writer.BatchSqlCustomerCreditIncreaseWriter#clear()}.
*/
@Test
public void testClear() {
delegate.clear();
control.setVoidCallable();
control.replay();
writer.clear();
control.verify();
}
/**
* Test method for
* {@link org.springframework.batch.sample.item.writer.BatchSqlCustomerCreditIncreaseWriter#flush()}.
*/
@Test
public void testFlush() {
delegate.flush();
control.setVoidCallable();
control.replay();
writer.flush();
control.verify();
}
}

View File

@@ -19,10 +19,10 @@ import java.math.BigDecimal;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import org.easymock.MockControl;
import org.springframework.batch.sample.domain.CustomerCredit;
import org.easymock.EasyMock;
import org.junit.Before;
import org.junit.Test;
import org.springframework.batch.sample.domain.CustomerCredit;
/**
* @author Dave Syer
@@ -36,11 +36,9 @@ public class CustomerCreditUpdatePreparedStatementSetterTests {
private PreparedStatement ps;
private MockControl control = MockControl.createControl(PreparedStatement.class);
@Before
public void setUp() throws Exception {
ps = (PreparedStatement) control.getMock();
ps = EasyMock.createMock(PreparedStatement.class);
credit = new CustomerCredit();
credit.setId(13);
credit.setCredit(new BigDecimal(12000));
@@ -52,13 +50,13 @@ public class CustomerCreditUpdatePreparedStatementSetterTests {
*/
@Test
public void testSetValues() throws SQLException {
ps.setBigDecimal(1, credit.getCredit());
control.setVoidCallable();
ps.setBigDecimal(1, credit.getCredit().add(CustomerCreditUpdatePreparedStatementSetter.FIXED_AMOUNT));
EasyMock.expectLastCall();
ps.setLong(2, credit.getId());
control.setVoidCallable();
control.replay();
EasyMock.expectLastCall();
EasyMock.replay(ps);
setter.setValues(credit, ps);
control.verify();
EasyMock.verify(ps);
}
}