Search in sources :

Example 1 with UnmappableStatement

use of com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement in project dsbulk by datastax.

the class DefaultRecordMapperTest method should_return_unmappable_statement_when_extra_field.

@Test
void should_return_unmappable_statement_when_extra_field() {
    when(mapping.fields()).thenReturn(set(F1, F2));
    RecordMapper mapper = new DefaultRecordMapper(Collections.singletonList(insertStatement), set(C1), set(C2, C3), V4, mapping, recordMetadata, false, false, false, statement -> boundStatementBuilder);
    Statement<?> result = mapper.map(record).single().block();
    assertThat(result).isNotSameAs(boundStatement).isInstanceOf(UnmappableStatement.class);
    UnmappableStatement unmappableStatement = (UnmappableStatement) result;
    assertThat(unmappableStatement.getError()).isInstanceOf(InvalidMappingException.class).hasMessageContaining("Extraneous field field3 was found in record. " + "Please declare it explicitly in the mapping " + "or set schema.allowExtraFields to true.");
}
Also used : UnmappableStatement(com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement) Test(org.junit.jupiter.api.Test)

Example 2 with UnmappableStatement

use of com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement in project dsbulk by datastax.

the class DefaultRecordMapperTest method should_return_unmappable_statement_when_missing_field.

@Test
void should_return_unmappable_statement_when_missing_field() {
    when(record.fields()).thenReturn(set(F1, F2));
    RecordMapper mapper = new DefaultRecordMapper(Collections.singletonList(insertStatement), set(C1), set(C2, C3), V4, mapping, recordMetadata, false, true, false, statement -> boundStatementBuilder);
    Statement<?> result = mapper.map(record).single().block();
    assertThat(result).isNotSameAs(boundStatement).isInstanceOf(UnmappableStatement.class);
    UnmappableStatement unmappableStatement = (UnmappableStatement) result;
    assertThat(unmappableStatement.getError()).isInstanceOf(InvalidMappingException.class).hasMessageContaining("Required field field3 (mapped to column \"My Fancy Column Name\") was missing from record. " + "Please remove it from the mapping " + "or set schema.allowMissingFields to true.");
}
Also used : UnmappableStatement(com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement) Test(org.junit.jupiter.api.Test)

Example 3 with UnmappableStatement

use of com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement in project dsbulk by datastax.

the class DefaultRecordMapperTest method should_return_unmappable_statement_when_pk_column_null.

@Test
void should_return_unmappable_statement_when_pk_column_null() {
    when(record.getFieldValue(F1)).thenReturn(null);
    RecordMapper mapper = new DefaultRecordMapper(Collections.singletonList(insertStatement), set(C1), set(C2, C3), V4, mapping, recordMetadata, false, true, false, statement -> boundStatementBuilder);
    Statement<?> result = mapper.map(record).single().block();
    assertThat(result).isNotSameAs(boundStatement).isInstanceOf(UnmappableStatement.class);
    UnmappableStatement unmappableStatement = (UnmappableStatement) result;
    assertThat(unmappableStatement.getError()).isInstanceOf(InvalidMappingException.class).hasMessageContaining("Primary key column col1 cannot be set to null");
}
Also used : UnmappableStatement(com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement) Test(org.junit.jupiter.api.Test)

Example 4 with UnmappableStatement

use of com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement in project dsbulk by datastax.

the class LogManagerTest method setUp.

@BeforeEach
void setUp() throws Exception {
    session = mockSession();
    resource1 = new URI("file:///file1.csv");
    resource2 = new URI("file:///file2.csv");
    resource3 = new URI("file:///file3.csv");
    csvRecord1 = new DefaultErrorRecord(source1, resource1, 1, new RuntimeException("error 1"));
    csvRecord2 = new DefaultErrorRecord(source2, resource2, 2, new RuntimeException("error 2"));
    csvRecord3 = new DefaultErrorRecord(source3, resource3, 3, new RuntimeException("error 3"));
    unmappableStmt1 = new UnmappableStatement(csvRecord1, new RuntimeException("error 1"));
    unmappableStmt2 = new UnmappableStatement(csvRecord2, new RuntimeException("error 2"));
    unmappableStmt3 = new UnmappableStatement(csvRecord3, new RuntimeException("error 3"));
    failedWriteResult1 = new DefaultWriteResult(new BulkExecutionException(new DriverTimeoutException("error 1"), new MappedBoundStatement(csvRecord1, mockBoundStatement("INSERT 1"))));
    failedWriteResult2 = new DefaultWriteResult(new BulkExecutionException(new DriverTimeoutException("error 2"), new MappedBoundStatement(csvRecord2, mockBoundStatement("INSERT 2"))));
    failedWriteResult3 = new DefaultWriteResult(new BulkExecutionException(new DriverTimeoutException("error 3"), new MappedBoundStatement(csvRecord3, mockBoundStatement("INSERT 3"))));
    failedReadResult1 = new DefaultReadResult(new BulkExecutionException(new DriverTimeoutException("error 1"), mockBoundStatement("SELECT 1")));
    failedReadResult2 = new DefaultReadResult(new BulkExecutionException(new DriverTimeoutException("error 2"), mockBoundStatement("SELECT 2")));
    failedReadResult3 = new DefaultReadResult(new BulkExecutionException(new DriverTimeoutException("error 3"), mockBoundStatement("SELECT 3")));
    BatchStatement batch = BatchStatement.newInstance(DefaultBatchType.UNLOGGED, new MappedBoundStatement(csvRecord1, mockBoundStatement("INSERT 1", "foo", 42)), new MappedBoundStatement(csvRecord2, mockBoundStatement("INSERT 2", "bar", 43)), new MappedBoundStatement(csvRecord3, mockBoundStatement("INSERT 3", "qix", 44)));
    batchWriteResult = new DefaultWriteResult(new BulkExecutionException(new DriverTimeoutException("error batch"), batch));
    ExecutionInfo info = mock(ExecutionInfo.class);
    row1 = mockRow(1);
    Row row2 = mockRow(2);
    Row row3 = mockRow(3);
    Statement<?> stmt1 = SimpleStatement.newInstance("SELECT 1");
    Statement<?> stmt2 = SimpleStatement.newInstance("SELECT 2");
    Statement<?> stmt3 = SimpleStatement.newInstance("SELECT 3");
    successfulReadResult1 = new DefaultReadResult(stmt1, info, row1);
    ReadResult successfulReadResult2 = new DefaultReadResult(stmt2, info, row2);
    ReadResult successfulReadResult3 = new DefaultReadResult(stmt3, info, row3);
    rowRecord1 = new DefaultErrorRecord(successfulReadResult1, tableResource, 1, new RuntimeException("error 1"));
    rowRecord2 = new DefaultErrorRecord(successfulReadResult2, tableResource, 2, new RuntimeException("error 2"));
    rowRecord3 = new DefaultErrorRecord(successfulReadResult3, tableResource, 3, new RuntimeException("error 3"));
}
Also used : BulkExecutionException(com.datastax.oss.dsbulk.executor.api.exception.BulkExecutionException) DefaultWriteResult(com.datastax.oss.dsbulk.executor.api.result.DefaultWriteResult) DriverTimeoutException(com.datastax.oss.driver.api.core.DriverTimeoutException) ExecutionInfo(com.datastax.oss.driver.api.core.cql.ExecutionInfo) ReadResult(com.datastax.oss.dsbulk.executor.api.result.ReadResult) DefaultReadResult(com.datastax.oss.dsbulk.executor.api.result.DefaultReadResult) MappedBoundStatement(com.datastax.oss.dsbulk.workflow.commons.statement.MappedBoundStatement) URI(java.net.URI) UnmappableStatement(com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement) DefaultErrorRecord(com.datastax.oss.dsbulk.connectors.api.DefaultErrorRecord) BatchStatement(com.datastax.oss.driver.api.core.cql.BatchStatement) DefaultReadResult(com.datastax.oss.dsbulk.executor.api.result.DefaultReadResult) Row(com.datastax.oss.driver.api.core.cql.Row) DriverUtils.mockRow(com.datastax.oss.dsbulk.tests.driver.DriverUtils.mockRow) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 5 with UnmappableStatement

use of com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement in project dsbulk by datastax.

the class LogManagerTest method should_handle_unmappable_statements_without_source.

@Test
void should_handle_unmappable_statements_without_source() throws Exception {
    Path outputDir = Files.createTempDirectory("test");
    LogManager logManager = new LogManager(session, outputDir, ErrorThreshold.forAbsoluteValue(1), ErrorThreshold.forAbsoluteValue(0), true, statementFormatter, EXTENDED, rowFormatter);
    logManager.init();
    Record record = DefaultRecord.indexed(null, resource1, 1, "foo", " bar");
    UnmappableStatement stmt = new UnmappableStatement(record, new RuntimeException("error 1"));
    Flux<BatchableStatement<?>> stmts = Flux.just(stmt);
    stmts.transform(logManager.newUnmappableStatementsHandler()).blockLast();
    logManager.close();
    Path errors = logManager.getOperationDirectory().resolve("mapping-errors.log");
    Path positions = logManager.getOperationDirectory().resolve("positions.txt");
    assertThat(errors.toFile()).exists();
    assertThat(positions.toFile()).exists();
    assertThat(FileUtils.listAllFilesInDirectory(logManager.getOperationDirectory())).containsOnly(errors, positions);
    List<String> lines = Files.readAllLines(errors, UTF_8);
    String content = String.join("\n", lines);
    assertThat(content).doesNotContain("Source: ").contains("Resource: " + resource1).contains("Position: 1").contains("java.lang.RuntimeException: error 1");
}
Also used : Path(java.nio.file.Path) BatchableStatement(com.datastax.oss.driver.api.core.cql.BatchableStatement) DefaultErrorRecord(com.datastax.oss.dsbulk.connectors.api.DefaultErrorRecord) DefaultRecord(com.datastax.oss.dsbulk.connectors.api.DefaultRecord) Record(com.datastax.oss.dsbulk.connectors.api.Record) UnmappableStatement(com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement) Test(org.junit.jupiter.api.Test)

Aggregations

UnmappableStatement (com.datastax.oss.dsbulk.workflow.commons.statement.UnmappableStatement)7 Test (org.junit.jupiter.api.Test)5 DefaultErrorRecord (com.datastax.oss.dsbulk.connectors.api.DefaultErrorRecord)3 URI (java.net.URI)2 BeforeEach (org.junit.jupiter.api.BeforeEach)2 DriverTimeoutException (com.datastax.oss.driver.api.core.DriverTimeoutException)1 BatchStatement (com.datastax.oss.driver.api.core.cql.BatchStatement)1 BatchableStatement (com.datastax.oss.driver.api.core.cql.BatchableStatement)1 ExecutionInfo (com.datastax.oss.driver.api.core.cql.ExecutionInfo)1 Row (com.datastax.oss.driver.api.core.cql.Row)1 DefaultRecord (com.datastax.oss.dsbulk.connectors.api.DefaultRecord)1 Record (com.datastax.oss.dsbulk.connectors.api.Record)1 BulkExecutionException (com.datastax.oss.dsbulk.executor.api.exception.BulkExecutionException)1 DefaultReadResult (com.datastax.oss.dsbulk.executor.api.result.DefaultReadResult)1 DefaultWriteResult (com.datastax.oss.dsbulk.executor.api.result.DefaultWriteResult)1 ReadResult (com.datastax.oss.dsbulk.executor.api.result.ReadResult)1 DriverUtils.mockRow (com.datastax.oss.dsbulk.tests.driver.DriverUtils.mockRow)1 MappedBoundStatement (com.datastax.oss.dsbulk.workflow.commons.statement.MappedBoundStatement)1 MappedSimpleStatement (com.datastax.oss.dsbulk.workflow.commons.statement.MappedSimpleStatement)1 Path (java.nio.file.Path)1