blob: afeb31e12eef7cc049dad141144d9dfb58a74767 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.minio.integration;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.Properties;
import io.minio.MinioClient;
import org.apache.camel.BindToRegistry;
import org.apache.camel.EndpointInject;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.minio.MinioConstants;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit5.CamelTestSupport;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Disabled("Must be manually tested. Provide your own accessKey and secretKey!")
public class MinioObjectRangeOperationIntegrationTest extends CamelTestSupport {
private static final Logger LOG = LoggerFactory.getLogger(MinioObjectRangeOperationIntegrationTest.class);
final Properties properties = MinioTestUtils.loadMinioPropertiesFile();
@BindToRegistry("minioClient")
MinioClient minioClient =
MinioClient.builder()
.endpoint(properties.getProperty("endpoint"))
.credentials(properties.getProperty("accessKey"), properties.getProperty("secretKey"))
.build();
@EndpointInject
private ProducerTemplate template;
@EndpointInject("mock:result")
private MockEndpoint result;
public MinioObjectRangeOperationIntegrationTest() throws IOException {
}
@Test
public void sendIn() throws Exception {
result.expectedMessageCount(1);
template.send("direct:getPartialObject", exchange -> {
exchange.getIn().setHeader(MinioConstants.OBJECT_NAME, "element.txt");
exchange.getIn().setHeader(MinioConstants.OFFSET, 0);
exchange.getIn().setHeader(MinioConstants.LENGTH, 9);
});
assertMockEndpointsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
@Override
public void configure() {
String minioEndpoint = "minio://mycamelbucket?operation=getPartialObject&autoCreateBucket=false";
from("direct:getPartialObject").to(minioEndpoint).process(exchange -> {
InputStream minioPartialObject = exchange.getIn().getBody(InputStream.class);
LOG.info(readInputStream(minioPartialObject));
}).to("mock:result");
}
};
}
private String readInputStream(InputStream minioObject) throws IOException {
StringBuilder textBuilder = new StringBuilder();
try (Reader reader = new BufferedReader(new InputStreamReader(minioObject, Charset.forName(StandardCharsets.UTF_8.name())))) {
int c;
while ((c = reader.read()) != -1) {
textBuilder.append((char) c);
}
}
return textBuilder.toString();
}
}