/* * 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.client; import static org.junit.Assert.assertEquals; import alluxio.LocalAlluxioClusterResource; import alluxio.BaseIntegrationTest; import alluxio.wire.MasterInfo; import alluxio.wire.MasterInfo.MasterInfoField; import org.junit.Rule; import org.junit.Test; import java.util.Arrays; import java.util.HashSet; /** * Integration tests for the meta master. */ public final class MetaMasterIntegrationTest extends BaseIntegrationTest { @Rule public LocalAlluxioClusterResource mResource = new LocalAlluxioClusterResource.Builder().build(); @Test public void getInfoAllFields() throws Exception { try (MetaMasterClient client = new RetryHandlingMetaMasterClient(null, mResource.get().getLocalAlluxioMaster().getAddress())) { int webPort = mResource.get().getLocalAlluxioMaster().getMasterProcess().getWebAddress().getPort(); MasterInfo info = client.getInfo(null); assertEquals(webPort, info.getWebPort()); } } @Test public void getInfoWebPort() throws Exception { try (MetaMasterClient client = new RetryHandlingMetaMasterClient(null, mResource.get().getLocalAlluxioMaster().getAddress())) { int webPort = mResource.get().getLocalAlluxioMaster().getMasterProcess().getWebAddress().getPort(); MasterInfo info = client.getInfo(new HashSet<>(Arrays.asList(MasterInfoField.WEB_PORT))); assertEquals(webPort, info.getWebPort()); } } }