Search in sources :

Example 11 with RecordFactory

use of javax.resource.cci.RecordFactory in project spring-framework by spring-projects.

the class CciTemplateTests method testTemplateExecuteInputTrueWithCreator2.

@Test
public void testTemplateExecuteInputTrueWithCreator2() throws ResourceException {
    ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
    RecordFactory recordFactory = mock(RecordFactory.class);
    Connection connection = mock(Connection.class);
    Interaction interaction = mock(Interaction.class);
    RecordCreator creator = mock(RecordCreator.class);
    Record inputRecord = mock(Record.class);
    final Record outputRecord = mock(Record.class);
    InteractionSpec interactionSpec = mock(InteractionSpec.class);
    given(connectionFactory.getConnection()).willReturn(connection);
    given(connectionFactory.getRecordFactory()).willReturn(recordFactory);
    given(connection.createInteraction()).willReturn(interaction);
    given(creator.createRecord(recordFactory)).willReturn(outputRecord);
    given(interaction.execute(interactionSpec, inputRecord, outputRecord)).willReturn(true);
    CciTemplate ct = new CciTemplate(connectionFactory);
    ct.setOutputRecordCreator(creator);
    ct.execute(interactionSpec, inputRecord);
    verify(interaction).execute(interactionSpec, inputRecord, outputRecord);
    verify(interaction).close();
    verify(connection).close();
}
Also used : ConnectionFactory(javax.resource.cci.ConnectionFactory) RecordFactory(javax.resource.cci.RecordFactory) NotSupportedRecordFactory(org.springframework.jca.cci.connection.NotSupportedRecordFactory) Interaction(javax.resource.cci.Interaction) RecordCreator(org.springframework.jca.cci.core.RecordCreator) InteractionSpec(javax.resource.cci.InteractionSpec) Connection(javax.resource.cci.Connection) MappedRecord(javax.resource.cci.MappedRecord) IndexedRecord(javax.resource.cci.IndexedRecord) Record(javax.resource.cci.Record) CciTemplate(org.springframework.jca.cci.core.CciTemplate) Test(org.junit.Test)

Example 12 with RecordFactory

use of javax.resource.cci.RecordFactory in project spring-framework by spring-projects.

the class CciTemplateTests method testCreateMappedRecord.

@Test
public void testCreateMappedRecord() throws ResourceException {
    ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
    RecordFactory recordFactory = mock(RecordFactory.class);
    MappedRecord mappedRecord = mock(MappedRecord.class);
    given(connectionFactory.getRecordFactory()).willReturn(recordFactory);
    given(recordFactory.createMappedRecord("name")).willReturn(mappedRecord);
    CciTemplate ct = new CciTemplate(connectionFactory);
    ct.createMappedRecord("name");
    verify(recordFactory).createMappedRecord("name");
}
Also used : ConnectionFactory(javax.resource.cci.ConnectionFactory) RecordFactory(javax.resource.cci.RecordFactory) NotSupportedRecordFactory(org.springframework.jca.cci.connection.NotSupportedRecordFactory) CciTemplate(org.springframework.jca.cci.core.CciTemplate) MappedRecord(javax.resource.cci.MappedRecord) Test(org.junit.Test)

Aggregations

ConnectionFactory (javax.resource.cci.ConnectionFactory)12 RecordFactory (javax.resource.cci.RecordFactory)12 Test (org.junit.Test)12 Connection (javax.resource.cci.Connection)10 Interaction (javax.resource.cci.Interaction)10 InteractionSpec (javax.resource.cci.InteractionSpec)10 Record (javax.resource.cci.Record)10 NotSupportedRecordFactory (org.springframework.jca.cci.connection.NotSupportedRecordFactory)10 CciTemplate (org.springframework.jca.cci.core.CciTemplate)10 IndexedRecord (javax.resource.cci.IndexedRecord)9 MappedRecord (javax.resource.cci.MappedRecord)9 RecordCreator (org.springframework.jca.cci.core.RecordCreator)9 NotSupportedException (javax.resource.NotSupportedException)1 ResultSet (javax.resource.cci.ResultSet)1