/* * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 * (the "License"). You may not use this work except in compliance with the License, which is * available at www.apache.org/licenses/LICENSE-2.0 * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied, as more fully set forth in the License. * * See the NOTICE file distributed with this work for information regarding copyright ownership. */ package alluxio.master.file.options; import alluxio.CommonTestUtils; import alluxio.Configuration; import alluxio.ConfigurationTestUtils; import alluxio.Constants; import alluxio.PropertyKey; import alluxio.security.authorization.Mode; import alluxio.util.CommonUtils; import alluxio.wire.TtlAction; import org.junit.Assert; import org.junit.Test; import java.util.Random; /** * Unit tests for {@link CreateFileOptions}. */ public class CreateFileOptionsTest { /** * Tests the {@link CreateFileOptions#defaults()} method. */ @Test public void defaults() throws Exception { Configuration.set(PropertyKey.USER_BLOCK_SIZE_BYTES_DEFAULT, "64MB"); CreateFileOptions options = CreateFileOptions.defaults(); Assert.assertEquals(64 * Constants.MB, options.getBlockSizeBytes()); Assert.assertEquals("", options.getOwner()); Assert.assertEquals("", options.getGroup()); Assert.assertEquals(Mode.defaults().applyFileUMask(), options.getMode()); Assert.assertFalse(options.isPersisted()); Assert.assertFalse(options.isRecursive()); Assert.assertEquals(Constants.NO_TTL, options.getTtl()); Assert.assertEquals(TtlAction.DELETE, options.getTtlAction()); Assert.assertFalse(options.isCacheable()); ConfigurationTestUtils.resetConfiguration(); } /** * Tests getting and setting fields. */ @Test public void fields() throws Exception { Random random = new Random(); long blockSize = random.nextLong(); boolean mountPoint = random.nextBoolean(); long operationTimeMs = random.nextLong(); String owner = CommonUtils.randomAlphaNumString(10); String group = CommonUtils.randomAlphaNumString(10); Mode mode = new Mode((short) random.nextInt()); boolean persisted = random.nextBoolean(); boolean recursive = random.nextBoolean(); long ttl = random.nextLong(); boolean cacheable = random.nextBoolean(); CreateFileOptions options = CreateFileOptions.defaults() .setBlockSizeBytes(blockSize) .setMountPoint(mountPoint) .setOperationTimeMs(operationTimeMs) .setPersisted(persisted) .setOwner(owner) .setGroup(group) .setMode(mode) .setRecursive(recursive) .setTtl(ttl) .setTtlAction(TtlAction.FREE) .setCacheable(cacheable); Assert.assertEquals(blockSize, options.getBlockSizeBytes()); Assert.assertEquals(mountPoint, options.isMountPoint()); Assert.assertEquals(operationTimeMs, options.getOperationTimeMs()); Assert.assertEquals(owner, options.getOwner()); Assert.assertEquals(group, options.getGroup()); Assert.assertEquals(mode, options.getMode()); Assert.assertEquals(persisted, options.isPersisted()); Assert.assertEquals(recursive, options.isRecursive()); Assert.assertEquals(TtlAction.FREE, options.getTtlAction()); Assert.assertEquals(ttl, options.getTtl()); Assert.assertEquals(cacheable, options.isCacheable()); } @Test public void equalsTest() throws Exception { CommonTestUtils.testEquals(CreateFileOptions.class); } }