@Ignore
public void testGetYarnSiteConfigsShouldReturnDirectoriesProperlyWithTwoVolumes() {
// GIVEN
Template template = ServiceTestUtils.createTemplate(CloudPlatform.AWS);
Stack stack = ServiceTestUtils.createStack(template, credential, resources);
resources.add(new Resource(ResourceType.CLOUDFORMATION_STACK, "", stack));
// WHEN
Map<String, String> result = underTest.getConfiguration(stack).get(HadoopConfigurationService.YARN_SITE);
// THEN
assertEquals("/mnt/fs1,/mnt/fs2", result.get(HadoopConfigurationService.YARN_NODEMANAGER_LOCAL_DIRS));
assertEquals("/mnt/fs1,/mnt/fs2", result.get(HadoopConfigurationService.YARN_NODEMANAGER_LOG_DIRS));