use of org.terasology.module.ModuleRegistry in project Terasology by MovingBlocks.
the class ModuleDownloadListGeneratorTest method testSingleModuleNeedsUpdate.
@Test
public void testSingleModuleNeedsUpdate() throws DependencyResolutionFailedException {
Module moduleV1 = buildSimpleModule("myModule", "1.0.0");
Module moduleV2 = buildSimpleModule("myModule", "2.0.0");
ModuleRegistry localRegistry = buildRegistry("1.0.0", moduleV1);
DependencyResolver resolver = mockResolver(true, moduleV2, buildEngineModule("1.0.0"));
ModuleDownloadListGenerator listGenerator = new ModuleDownloadListGenerator(localRegistry, resolver);
assertEquals(Collections.singleton(moduleV2), buildList(listGenerator));
}
use of org.terasology.module.ModuleRegistry in project Terasology by MovingBlocks.
the class ModuleDownloadListGeneratorTest method buildRegistry.
private ModuleRegistry buildRegistry(String engineVersion, Module... modules) {
ModuleRegistry result = new TableModuleRegistry();
result.add(buildEngineModule(engineVersion));
result.addAll(Arrays.asList(modules));
return result;
}
use of org.terasology.module.ModuleRegistry in project Terasology by MovingBlocks.
the class BindsSubsystemTest method setUpMockModuleEnvironment.
private void setUpMockModuleEnvironment() {
ModuleManager moduleManager = mock(ModuleManager.class);
ModuleRegistry moduleRegistry = new TableModuleRegistry();
Module module = mock(Module.class);
when(module.isCodeModule()).thenReturn(true);
when(module.getId()).thenReturn(new Name(TEST_MODULE));
when(module.getVersion()).thenReturn(new Version(0, 0, 1, true));
when(module.getMetadata()).thenReturn(new ModuleMetadata());
moduleRegistry.add(module);
when(moduleManager.getRegistry()).thenReturn(moduleRegistry);
ModuleEnvironment environment = mock(ModuleEnvironment.class);
when(moduleManager.loadEnvironment(any(), anyBoolean())).thenReturn(environment);
when(moduleManager.getEnvironment()).thenReturn(environment);
registerBindButtonClasses = new ArrayList<>();
when(environment.getTypesAnnotatedWith(eq(RegisterBindButton.class))).thenReturn(registerBindButtonClasses);
when(environment.getTypesAnnotatedWith(eq(RegisterBindButton.class), any())).thenReturn(registerBindButtonClasses);
registerRealBindAxisClasses = new ArrayList<>();
when(environment.getTypesAnnotatedWith(eq(RegisterBindAxis.class))).thenReturn(registerRealBindAxisClasses);
when(environment.getTypesAnnotatedWith(eq(RegisterBindAxis.class), any())).thenReturn(registerRealBindAxisClasses);
when(environment.getModuleProviding(any())).thenReturn(new Name(TEST_MODULE));
context.put(ModuleManager.class, moduleManager);
}
Aggregations