blob: 476d7a4f01e2a302a8211c315666f5c1784b1a3b [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.hadoop.fs.azure;
import java.net.URI;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.test.GenericTestUtils.LogCapturer;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Test to validate Azure storage client side logging. Tests works only when
* testing with Live Azure storage because Emulator does not have support for
* client-side logging.
*
* <I>Important: </I> Do not attempt to move off commons-logging.
* The tests will fail.
*/
public class ITestNativeAzureFileSystemClientLogging
extends AbstractWasbTestBase {
// Core-site config controlling Azure Storage Client logging
private static final String KEY_LOGGING_CONF_STRING = "fs.azure.storage.client.logging";
// Temporary directory created using WASB.
private static final String TEMP_DIR = "tempDir";
/*
* Helper method to verify the client logging is working. This check primarily
* checks to make sure we see a line in the logs corresponding to the entity
* that is created during test run.
*/
private boolean verifyStorageClientLogs(String capturedLogs, String entity)
throws Exception {
URI uri = testAccount.getRealAccount().getBlobEndpoint();
String container = testAccount.getRealContainer().getName();
String validateString = uri + Path.SEPARATOR + container + Path.SEPARATOR
+ entity;
boolean entityFound = false;
StringTokenizer tokenizer = new StringTokenizer(capturedLogs, "\n");
while (tokenizer.hasMoreTokens()) {
String token = tokenizer.nextToken();
if (token.contains(validateString)) {
entityFound = true;
break;
}
}
return entityFound;
}
/*
* Helper method that updates the core-site config to enable/disable logging.
*/
private void updateFileSystemConfiguration(Boolean loggingFlag)
throws Exception {
Configuration conf = fs.getConf();
conf.set(KEY_LOGGING_CONF_STRING, loggingFlag.toString());
URI uri = fs.getUri();
fs.initialize(uri, conf);
}
// Using WASB code to communicate with Azure Storage.
private void performWASBOperations() throws Exception {
Path tempDir = new Path(Path.SEPARATOR + TEMP_DIR);
fs.mkdirs(tempDir);
fs.delete(tempDir, true);
}
@Test
public void testLoggingEnabled() throws Exception {
LogCapturer logs =
LogCapturer.captureLogs(LoggerFactory.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME));
// Update configuration based on the Test.
updateFileSystemConfiguration(true);
performWASBOperations();
String output = getLogOutput(logs);
assertTrue("Log entry " + TEMP_DIR + " not found in " + output,
verifyStorageClientLogs(output, TEMP_DIR));
}
protected String getLogOutput(LogCapturer logs) {
String output = logs.getOutput();
assertTrue("No log created/captured", !output.isEmpty());
return output;
}
@Test
public void testLoggingDisabled() throws Exception {
LogCapturer logs = LogCapturer.captureLogs(LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME));
// Update configuration based on the Test.
updateFileSystemConfiguration(false);
performWASBOperations();
String output = getLogOutput(logs);
assertFalse("Log entry " + TEMP_DIR + " found in " + output,
verifyStorageClientLogs(output, TEMP_DIR));
}
@Override
protected AzureBlobStorageTestAccount createTestAccount() throws Exception {
return AzureBlobStorageTestAccount.create();
}
}