use of io.confluent.connect.s3.format.avro.AvroFormat in project kafka-connect-storage-cloud by confluentinc.
the class DataWriterAvroTest method setUp.
// @Before should be omitted in order to be able to add properties per test.
public void setUp() throws Exception {
super.setUp();
s3 = PowerMockito.spy(newS3Client(connectorConfig));
storage = new S3Storage(connectorConfig, url, S3_TEST_BUCKET_NAME, s3);
partitioner = new DefaultPartitioner<>();
partitioner.configure(parsedConfig);
format = new AvroFormat(storage);
s3.createBucket(S3_TEST_BUCKET_NAME);
assertTrue(s3.doesBucketExist(S3_TEST_BUCKET_NAME));
}
use of io.confluent.connect.s3.format.avro.AvroFormat in project kafka-connect-storage-cloud by confluentinc.
the class TopicPartitionWriterTest method setUp.
public void setUp() throws Exception {
super.setUp();
s3 = newS3Client(connectorConfig);
storage = new S3Storage(connectorConfig, url, S3_TEST_BUCKET_NAME, s3);
format = new AvroFormat(storage);
Format<S3SinkConnectorConfig, String> format = new AvroFormat(storage);
writerProvider = format.getRecordWriterProvider();
extension = writerProvider.getExtension();
}
Aggregations