use of alluxio.hub.proto.AgentGetConfigurationSetRequest in project alluxio by Alluxio.
the class AgentManagerServiceTest method testGetConf.
@Test
public void testGetConf() throws Exception {
AlluxioConfigurationSet s = AlluxioConfigurationSet.newBuilder().setSiteProperties("testProps").setAlluxioEnv("testEnv").build();
doReturn(s).when(mContext).getConf();
AgentGetConfigurationSetRequest r = AgentGetConfigurationSetRequest.newBuilder().build();
assertEquals(s, mClient.getConfigurationSet(r).getConfSet());
}
Aggregations