/** * 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.s3a; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.contract.AbstractFSContract; import org.apache.hadoop.fs.contract.AbstractFSContractTestBase; import org.apache.hadoop.fs.contract.s3a.S3AContract; import org.junit.Rule; import org.junit.Test; import org.junit.rules.Timeout; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static org.apache.hadoop.fs.contract.ContractTestUtils.createFile; import static org.apache.hadoop.fs.contract.ContractTestUtils.dataset; import static org.apache.hadoop.fs.contract.ContractTestUtils.fileStatsToString; public class TestS3ABlocksize extends AbstractFSContractTestBase { private static final Logger LOG = LoggerFactory.getLogger(TestS3ABlocksize.class); @Override protected AbstractFSContract createContract(Configuration conf) { return new S3AContract(conf); } @Rule public Timeout testTimeout = new Timeout(30 * 60 * 1000); @Test @SuppressWarnings("deprecation") public void testBlockSize() throws Exception { FileSystem fs = getFileSystem(); long defaultBlockSize = fs.getDefaultBlockSize(); assertEquals("incorrect blocksize", S3AFileSystem.DEFAULT_BLOCKSIZE, defaultBlockSize); long newBlockSize = defaultBlockSize * 2; fs.getConf().setLong(Constants.FS_S3A_BLOCK_SIZE, newBlockSize); Path dir = path("testBlockSize"); Path file = new Path(dir, "file"); createFile(fs, file, true, dataset(1024, 'a', 'z' - 'a')); FileStatus fileStatus = fs.getFileStatus(file); assertEquals("Double default block size in stat(): " + fileStatus, newBlockSize, fileStatus.getBlockSize()); // check the listing & assert that the block size is picked up by // this route too. boolean found = false; FileStatus[] listing = fs.listStatus(dir); for (FileStatus stat : listing) { LOG.info("entry: {}", stat); if (file.equals(stat.getPath())) { found = true; assertEquals("Double default block size in ls(): " + stat, newBlockSize, stat.getBlockSize()); } } assertTrue("Did not find " + fileStatsToString(listing, ", "), found); } @Test public void testRootFileStatusHasBlocksize() throws Throwable { FileSystem fs = getFileSystem(); FileStatus status = fs.getFileStatus(new Path("/")); assertTrue("Invalid root blocksize", status.getBlockSize() >= 0); } }