Search in sources :

Example 31 with BeanManager

use of com.canoo.platform.remoting.BeanManager in project dolphin-platform by canoo.

the class TestModelDeletion method testWithWrongModelType.

@Test(expectedExceptions = BeanDefinitionException.class)
public void testWithWrongModelType() {
    final ServerModelStore serverModelStore = createServerModelStore();
    final EventDispatcher dispatcher = createEventDispatcher(serverModelStore);
    final BeanRepository beanRepository = createBeanRepository(serverModelStore, dispatcher);
    final BeanManager manager = createBeanManager(serverModelStore, beanRepository, dispatcher);
    beanRepository.delete("I'm a String");
}
Also used : EventDispatcher(com.canoo.dp.impl.remoting.EventDispatcher) BeanRepository(com.canoo.dp.impl.remoting.BeanRepository) ServerModelStore(com.canoo.dp.impl.server.legacy.ServerModelStore) BeanManager(com.canoo.platform.remoting.BeanManager) Test(org.testng.annotations.Test) AbstractDolphinBasedTest(com.canoo.impl.server.util.AbstractDolphinBasedTest)

Example 32 with BeanManager

use of com.canoo.platform.remoting.BeanManager in project dolphin-platform by canoo.

the class TestObservableListSync method replacingMultipleElementsAtEndFromDolphin_shouldReplaceElements.

@Test
public void replacingMultipleElementsAtEndFromDolphin_shouldReplaceElements() {
    // given :
    final ServerModelStore serverModelStore = createServerModelStore();
    final BeanManager manager = createBeanManager(serverModelStore);
    final ListReferenceModel model = manager.create(ListReferenceModel.class);
    final PresentationModel sourceModel = serverModelStore.findAllPresentationModelsByType(ListReferenceModel.class.getName()).get(0);
    model.getPrimitiveList().addAll(Arrays.asList("1", "2", "3", "4"));
    removeAllPresentationModelsOfType(serverModelStore, PlatformRemotingConstants.LIST_SPLICE);
    // when :
    new PresentationModelBuilder(serverModelStore, PlatformRemotingConstants.LIST_SPLICE).withAttribute("source", sourceModel.getId()).withAttribute("attribute", "primitiveList").withAttribute("from", 2).withAttribute("to", 4).withAttribute("count", 3).withAttribute("0", "42").withAttribute("1", "4711").withAttribute("2", "Hello World").create();
    assertThat(model.getPrimitiveList(), is(Arrays.asList("1", "2", "42", "4711", "Hello World")));
    assertThat(serverModelStore.findAllPresentationModelsByType(PlatformRemotingConstants.LIST_SPLICE), empty());
}
Also used : PresentationModel(com.canoo.dp.impl.remoting.legacy.core.PresentationModel) ServerPresentationModel(com.canoo.dp.impl.server.legacy.ServerPresentationModel) ServerModelStore(com.canoo.dp.impl.server.legacy.ServerModelStore) ListReferenceModel(com.canoo.impl.server.util.ListReferenceModel) BeanManager(com.canoo.platform.remoting.BeanManager) Test(org.testng.annotations.Test) AbstractDolphinBasedTest(com.canoo.impl.server.util.AbstractDolphinBasedTest)

Example 33 with BeanManager

use of com.canoo.platform.remoting.BeanManager in project dolphin-platform by canoo.

the class TestObservableListSync method addingSingleElementAtEndFromDolphin_shouldAddElement.

@Test
public void addingSingleElementAtEndFromDolphin_shouldAddElement() {
    // given :
    final ServerModelStore serverModelStore = createServerModelStore();
    final BeanManager manager = createBeanManager(serverModelStore);
    final ListReferenceModel model = manager.create(ListReferenceModel.class);
    final PresentationModel sourceModel = serverModelStore.findAllPresentationModelsByType(ListReferenceModel.class.getName()).get(0);
    final String newElement = "42";
    model.getPrimitiveList().addAll(Arrays.asList("1", "2", "3"));
    removeAllPresentationModelsOfType(serverModelStore, PlatformRemotingConstants.LIST_SPLICE);
    new PresentationModelBuilder(serverModelStore, PlatformRemotingConstants.LIST_SPLICE).withAttribute("source", sourceModel.getId()).withAttribute("attribute", "primitiveList").withAttribute("from", 3).withAttribute("to", 3).withAttribute("count", 1).withAttribute("0", newElement).create();
    assertThat(model.getPrimitiveList(), is(Arrays.asList("1", "2", "3", newElement)));
    assertThat(serverModelStore.findAllPresentationModelsByType(PlatformRemotingConstants.LIST_SPLICE), empty());
}
Also used : PresentationModel(com.canoo.dp.impl.remoting.legacy.core.PresentationModel) ServerPresentationModel(com.canoo.dp.impl.server.legacy.ServerPresentationModel) ServerModelStore(com.canoo.dp.impl.server.legacy.ServerModelStore) ListReferenceModel(com.canoo.impl.server.util.ListReferenceModel) BeanManager(com.canoo.platform.remoting.BeanManager) Test(org.testng.annotations.Test) AbstractDolphinBasedTest(com.canoo.impl.server.util.AbstractDolphinBasedTest)

Example 34 with BeanManager

use of com.canoo.platform.remoting.BeanManager in project dolphin-platform by canoo.

the class TestObservableListSync method replacingSingleElementInMiddleFromDolphin_shouldReplaceElement.

@Test
public void replacingSingleElementInMiddleFromDolphin_shouldReplaceElement() {
    // given :
    final ServerModelStore serverModelStore = createServerModelStore();
    final BeanManager manager = createBeanManager(serverModelStore);
    final ListReferenceModel model = manager.create(ListReferenceModel.class);
    final PresentationModel sourceModel = serverModelStore.findAllPresentationModelsByType(ListReferenceModel.class.getName()).get(0);
    final String newValue = "42";
    model.getPrimitiveList().addAll(Arrays.asList("1", "2", "3"));
    removeAllPresentationModelsOfType(serverModelStore, PlatformRemotingConstants.LIST_SPLICE);
    // when :
    new PresentationModelBuilder(serverModelStore, PlatformRemotingConstants.LIST_SPLICE).withAttribute("source", sourceModel.getId()).withAttribute("attribute", "primitiveList").withAttribute("from", 1).withAttribute("to", 2).withAttribute("count", 1).withAttribute("0", newValue).create();
    // then :
    assertThat(model.getPrimitiveList(), is(Arrays.asList("1", "42", "3")));
    assertThat(serverModelStore.findAllPresentationModelsByType(PlatformRemotingConstants.LIST_SPLICE), empty());
}
Also used : PresentationModel(com.canoo.dp.impl.remoting.legacy.core.PresentationModel) ServerPresentationModel(com.canoo.dp.impl.server.legacy.ServerPresentationModel) ServerModelStore(com.canoo.dp.impl.server.legacy.ServerModelStore) ListReferenceModel(com.canoo.impl.server.util.ListReferenceModel) BeanManager(com.canoo.platform.remoting.BeanManager) Test(org.testng.annotations.Test) AbstractDolphinBasedTest(com.canoo.impl.server.util.AbstractDolphinBasedTest)

Example 35 with BeanManager

use of com.canoo.platform.remoting.BeanManager in project dolphin-platform by canoo.

the class TestObservableListSync method deletingSingleElementInBeginningFromDolphin_shouldRemoveElement.

// ////////////////////////////////////////////////////////////
// Removing elements from different positions from dolphin
// ////////////////////////////////////////////////////////////
@Test
public void deletingSingleElementInBeginningFromDolphin_shouldRemoveElement() {
    // given :
    final ServerModelStore serverModelStore = createServerModelStore();
    final BeanManager manager = createBeanManager(serverModelStore);
    final ListReferenceModel model = manager.create(ListReferenceModel.class);
    final PresentationModel sourceModel = serverModelStore.findAllPresentationModelsByType(ListReferenceModel.class.getName()).get(0);
    model.getPrimitiveList().addAll(Arrays.asList("1", "2", "3"));
    removeAllPresentationModelsOfType(serverModelStore, PlatformRemotingConstants.LIST_SPLICE);
    // when :
    new PresentationModelBuilder(serverModelStore, PlatformRemotingConstants.LIST_SPLICE).withAttribute("source", sourceModel.getId()).withAttribute("attribute", "primitiveList").withAttribute("from", 0).withAttribute("to", 1).withAttribute("count", 0).create();
    // then :
    assertThat(model.getPrimitiveList(), is(Arrays.asList("2", "3")));
    assertThat(serverModelStore.findAllPresentationModelsByType(PlatformRemotingConstants.LIST_SPLICE), empty());
}
Also used : PresentationModel(com.canoo.dp.impl.remoting.legacy.core.PresentationModel) ServerPresentationModel(com.canoo.dp.impl.server.legacy.ServerPresentationModel) ServerModelStore(com.canoo.dp.impl.server.legacy.ServerModelStore) ListReferenceModel(com.canoo.impl.server.util.ListReferenceModel) BeanManager(com.canoo.platform.remoting.BeanManager) Test(org.testng.annotations.Test) AbstractDolphinBasedTest(com.canoo.impl.server.util.AbstractDolphinBasedTest)

Aggregations

BeanManager (com.canoo.platform.remoting.BeanManager)182 Test (org.testng.annotations.Test)182 PresentationModel (com.canoo.dp.impl.remoting.legacy.core.PresentationModel)142 AbstractDolphinBasedTest (com.canoo.dolphin.client.util.AbstractDolphinBasedTest)91 ClientModelStore (com.canoo.dp.impl.client.legacy.ClientModelStore)91 ServerModelStore (com.canoo.dp.impl.server.legacy.ServerModelStore)91 AbstractDolphinBasedTest (com.canoo.impl.server.util.AbstractDolphinBasedTest)91 ClientPresentationModel (com.canoo.dp.impl.client.legacy.ClientPresentationModel)82 ServerPresentationModel (com.canoo.dp.impl.server.legacy.ServerPresentationModel)82 ListReferenceModel (com.canoo.dolphin.client.util.ListReferenceModel)65 ListReferenceModel (com.canoo.impl.server.util.ListReferenceModel)65 BeanRepository (com.canoo.dp.impl.remoting.BeanRepository)39 EventDispatcher (com.canoo.dp.impl.remoting.EventDispatcher)39 Attribute (com.canoo.dp.impl.remoting.legacy.core.Attribute)21 SimpleTestModel (com.canoo.impl.server.util.SimpleTestModel)18 SimpleTestModel (com.canoo.dolphin.client.util.SimpleTestModel)17 ValueChangeEvent (com.canoo.platform.remoting.ValueChangeEvent)8 ValueChangeListener (com.canoo.platform.remoting.ValueChangeListener)8 ServerAttribute (com.canoo.dp.impl.server.legacy.ServerAttribute)7 Subscription (com.canoo.platform.core.functional.Subscription)6