/* * 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.ignite.internal.processors.hadoop.impl.fs; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import java.util.concurrent.Callable; import org.apache.ignite.hadoop.fs.KerberosHadoopFileSystemFactory; import org.apache.ignite.internal.processors.hadoop.delegate.HadoopDelegateUtils; import org.apache.ignite.internal.processors.hadoop.delegate.HadoopFileSystemFactoryDelegate; import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import org.junit.Assert; /** * Tests KerberosHadoopFileSystemFactory. */ public class KerberosHadoopFileSystemFactorySelfTest extends GridCommonAbstractTest { /** * Test parameters validation. * * @throws Exception If failed. */ public void testParameters() throws Exception { checkParameters(null, null, -1); checkParameters(null, null, 100); checkParameters(null, "b", -1); checkParameters("a", null, -1); checkParameters(null, "b", 100); checkParameters("a", null, 100); checkParameters("a", "b", -1); } /** * Check parameters. * * @param keyTab Key tab. * @param keyTabPrincipal Key tab principal. * @param reloginInterval Re-login interval. */ @SuppressWarnings("ThrowableResultOfMethodCallIgnored") private void checkParameters(String keyTab, String keyTabPrincipal, long reloginInterval) { final KerberosHadoopFileSystemFactory fac = new KerberosHadoopFileSystemFactory(); fac.setKeyTab(keyTab); fac.setKeyTabPrincipal(keyTabPrincipal); fac.setReloginInterval(reloginInterval); GridTestUtils.assertThrows(null, new Callable<Object>() { @Override public Object call() throws Exception { HadoopFileSystemFactoryDelegate delegate = HadoopDelegateUtils.fileSystemFactoryDelegate( getClass().getClassLoader(), fac); delegate.start(); return null; } }, IllegalArgumentException.class, null); } /** * Checks serializatuion and deserialization of the secure factory. * * @throws Exception If failed. */ public void testSerialization() throws Exception { KerberosHadoopFileSystemFactory fac = new KerberosHadoopFileSystemFactory(); checkSerialization(fac); fac = new KerberosHadoopFileSystemFactory(); fac.setUri("igfs://igfs@localhost:10500/"); fac.setConfigPaths("/a/core-sute.xml", "/b/mapred-site.xml"); fac.setKeyTabPrincipal("foo"); fac.setKeyTab("/etc/krb5.keytab"); fac.setReloginInterval(30 * 60 * 1000L); checkSerialization(fac); } /** * Serializes the factory, * * @param fac The facory to check. * @throws Exception If failed. */ private void checkSerialization(KerberosHadoopFileSystemFactory fac) throws Exception { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutput oo = new ObjectOutputStream(baos); oo.writeObject(fac); ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray())); KerberosHadoopFileSystemFactory fac2 = (KerberosHadoopFileSystemFactory)in.readObject(); assertEquals(fac.getUri(), fac2.getUri()); Assert.assertArrayEquals(fac.getConfigPaths(), fac2.getConfigPaths()); assertEquals(fac.getKeyTab(), fac2.getKeyTab()); assertEquals(fac.getKeyTabPrincipal(), fac2.getKeyTabPrincipal()); assertEquals(fac.getReloginInterval(), fac2.getReloginInterval()); } }