REPO-3766 Disable test for MM

This commit is contained in:
Alex Mukha
2018-09-22 11:22:54 +01:00
parent c85c9563cf
commit 283e2c550a
@@ -74,12 +74,13 @@ public class DiscoveryTests extends RestTest
assertTrue(modules.contains("alfresco-share-services"));
assertTrue(modules.contains("alfresco-saml-repo"));
assertTrue(modules.contains("org_alfresco_device_sync_repo"));
assertTrue(modules.contains("org_alfresco_mm_repo"));
// The MM does not support new RenditionService2
// assertTrue(modules.contains("org_alfresco_mm_repo"));
assertTrue(modules.contains("org.alfresco.module.TransformationServer"));
// Check that all installed modules are in INSTALLED state
List<String> modulesStates = restClient.onResponse().getResponse().jsonPath().getList("entry.repository.modules.installState", String.class);
assertEquals(Collections.frequency(modulesStates, "INSTALLED"), 11);
assertEquals(Collections.frequency(modulesStates, "INSTALLED"), 10);
}
@Test(groups = { TestGroup.REST_API, TestGroup.DISCOVERY, TestGroup.SANITY, TestGroup.CORE })