ITestS3ABlocksize.java

/*
 * 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.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;

import org.junit.jupiter.api.Test;
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;

/**
 * S3A tests for configuring block size.
 */
public class ITestS3ABlocksize extends AbstractS3ATestBase {

  private static final Logger LOG =
      LoggerFactory.getLogger(ITestS3ABlocksize.class);

  @Test
  @SuppressWarnings("deprecation")
  public void testBlockSize() throws Exception {
    FileSystem fs = getFileSystem();
    long defaultBlockSize = fs.getDefaultBlockSize();
    assertEquals(S3AFileSystem.DEFAULT_BLOCKSIZE, defaultBlockSize,
        "incorrect blocksize");
    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(newBlockSize, fileStatus.getBlockSize(),
        "Double default block size in stat(): " + fileStatus);

    // 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(newBlockSize, stat.getBlockSize(),
            "Double default block size in ls(): " + stat);
      }
    }
    assertTrue(found, "Did not find " + fileStatsToString(listing, ", "));
  }

  @Test
  public void testRootFileStatusHasBlocksize() throws Throwable {
    FileSystem fs = getFileSystem();
    FileStatus status = fs.getFileStatus(new Path("/"));
    assertTrue(status.getBlockSize() >= 0, "Invalid root blocksize");
  }

}