Search in sources :

Example 6 with DataAdapterList

use of com.servoy.j2db.server.ngclient.DataAdapterList in project servoy-client by Servoy.

the class PersistFieldInstanceTest method testCustomComponentWithI18NProperty.

@Test
public void testCustomComponentWithI18NProperty() throws RepositoryException, JSONException {
    Form form = solution.getForm("test");
    Assert.assertNotNull(form);
    DataAdapterList dataAdapterList = new DataAdapterList(new TestFormController(form, client));
    WebComponent bean = form.createNewWebComponent("mycustombean", "my-component");
    bean.setProperty("atype", new ServoyJSONObject("{name:'name',text:'i18n:servoy.button.ok'}", false));
    List<FormElement> formElements = FormElementHelper.INSTANCE.getFormElements(form.getAllObjects(), new ServoyDataConverterContext(client));
    Assert.assertEquals(1, formElements.size());
    WebFormComponent wc = ComponentFactory.createComponent(client, dataAdapterList, formElements.get(0), null, form);
    BrowserConverterContext allowBrowserConverterContext = new BrowserConverterContext(wc, PushToServerEnum.allow);
    Map<String, Object> type = (Map<String, Object>) wc.getProperty("atype");
    Assert.assertEquals("name", type.get("name"));
    // it gets automatically translated to a static string
    Assert.assertEquals("OK", ((BasicTagStringTypeSabloValue) type.get("text")).getDesignValue());
    Assert.assertEquals("OK", ((BasicTagStringTypeSabloValue) type.get("text")).getTagReplacedValue());
    Assert.assertEquals(0, wc.getAndClearChanges().content.size());
    TypedData<Map<String, Object>> props = wc.getProperties();
    String json = JSONUtils.writeDataWithConversions(props.content, props.contentType, allowBrowserConverterContext);
    JSONAssert.assertEquals("{\"atype\":{\"rt\":\"my-component.mytype\",\"vEr\":2,\"v\":{\"text\":\"OK\",\"name\":\"name\"}},\"svyMarkupId\":\"sf331d64ddc0c17747371b7740e3e3447\",\"svy_types\":{\"atype\":\"JSON_obj\"}}", json, true);
}
Also used : Form(com.servoy.j2db.persistence.Form) WebFormComponent(com.servoy.j2db.server.ngclient.WebFormComponent) IDataAdapterList(com.servoy.j2db.server.ngclient.IDataAdapterList) DataAdapterList(com.servoy.j2db.server.ngclient.DataAdapterList) FormElement(com.servoy.j2db.server.ngclient.FormElement) WebComponent(com.servoy.j2db.persistence.WebComponent) ServoyJSONObject(com.servoy.j2db.util.ServoyJSONObject) ServoyDataConverterContext(com.servoy.j2db.server.ngclient.ServoyDataConverterContext) BrowserConverterContext(org.sablo.specification.property.BrowserConverterContext) ServoyJSONObject(com.servoy.j2db.util.ServoyJSONObject) HashMap(java.util.HashMap) Map(java.util.Map) Test(org.junit.Test)

Aggregations

DataAdapterList (com.servoy.j2db.server.ngclient.DataAdapterList)6 WebFormComponent (com.servoy.j2db.server.ngclient.WebFormComponent)5 Form (com.servoy.j2db.persistence.Form)4 FormElement (com.servoy.j2db.server.ngclient.FormElement)4 IDataAdapterList (com.servoy.j2db.server.ngclient.IDataAdapterList)4 ServoyDataConverterContext (com.servoy.j2db.server.ngclient.ServoyDataConverterContext)4 ServoyJSONObject (com.servoy.j2db.util.ServoyJSONObject)4 HashMap (java.util.HashMap)4 Map (java.util.Map)4 Test (org.junit.Test)4 Dimension (java.awt.Dimension)3 CustomValueList (com.servoy.j2db.dataprocessing.CustomValueList)2 IValueList (com.servoy.j2db.dataprocessing.IValueList)2 TabPanel (com.servoy.j2db.persistence.TabPanel)2 ValueList (com.servoy.j2db.persistence.ValueList)2 WebComponent (com.servoy.j2db.persistence.WebComponent)2 List (java.util.List)2 IContextProvider (com.servoy.j2db.server.ngclient.IContextProvider)1 BasicTagStringTypeSabloValue (com.servoy.j2db.server.ngclient.property.types.BasicTagStringTypeSabloValue)1 BrowserConverterContext (org.sablo.specification.property.BrowserConverterContext)1