/* * 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.nifi.processors.azure.storage; import java.io.IOException; import java.net.URISyntaxException; import java.security.InvalidKeyException; import java.util.List; import java.util.UUID; import org.apache.nifi.processors.azure.AzureConstants; import org.apache.nifi.util.MockFlowFile; import org.apache.nifi.util.TestRunner; import org.apache.nifi.util.TestRunners; import org.junit.Test; import com.microsoft.azure.storage.StorageException; import com.microsoft.azure.storage.blob.CloudBlobContainer; public class ITPutAzureStorageBlob { @Test public void testPuttingBlob() throws IOException, InvalidKeyException, StorageException, URISyntaxException { String containerName = String.format("%s-%s", AzureTestUtil.TEST_CONTAINER_NAME_PREFIX, UUID.randomUUID()); CloudBlobContainer container = AzureTestUtil.getContainer(containerName); container.createIfNotExists(); final TestRunner runner = TestRunners.newTestRunner(new PutAzureBlobStorage()); try { runner.setValidateExpressionUsage(true); runner.setProperty(AzureConstants.ACCOUNT_NAME, AzureTestUtil.getAccountName()); runner.setProperty(AzureConstants.ACCOUNT_KEY, AzureTestUtil.getAccountKey()); runner.setProperty(AzureConstants.CONTAINER, containerName); runner.setProperty(FetchAzureBlobStorage.BLOB, "testingUpload"); runner.enqueue("0123456789".getBytes()); runner.run(); runner.assertAllFlowFilesTransferred(PutAzureBlobStorage.REL_SUCCESS, 1); List<MockFlowFile> flowFilesForRelationship = runner.getFlowFilesForRelationship(PutAzureBlobStorage.REL_SUCCESS); for (MockFlowFile flowFile : flowFilesForRelationship) { flowFile.assertContentEquals("0123456789".getBytes()); flowFile.assertAttributeEquals("azure.length", "10"); } } finally { container.deleteIfExists(); } } }