use of org.cytoscape.view.presentation.property.NullVisualProperty in project cytoscape-impl by cytoscape.
the class VisualStyleTest method setUp.
@Before
@SuppressWarnings("unchecked")
public void setUp() throws Exception {
NetworkViewTestSupport nvts = new NetworkViewTestSupport();
network = nvts.getNetworkFactory().createNetwork();
node1 = network.addNode();
node2 = network.addNode();
node3 = network.addNode();
edge = network.addEdge(node1, node2, true);
CyTable nodeTable = network.getDefaultNodeTable();
nodeTable.createColumn(attrName, String.class, true);
nodeTable.getRow(node1.getSUID()).set(attrName, "red");
nodeTable.getRow(node2.getSUID()).set(attrName, "green");
nodeTable.getRow(node3.getSUID()).set(attrName, "foo");
networkView = nvts.getNetworkViewFactory().createNetworkView(network);
// Create root node.
final NullVisualProperty minimalRoot = new NullVisualProperty("MINIMAL_ROOT", "Minimal Root Visual Property");
final BasicVisualLexicon minimalLex = new BasicVisualLexicon(minimalRoot);
final Set<VisualLexicon> lexSet = new HashSet<VisualLexicon>();
lexSet.add(minimalLex);
final VisualMappingFunctionFactory ptFactory = mock(VisualMappingFunctionFactory.class);
eventHelper = mock(CyEventHelper.class);
final RenderingEngineFactory<CyNetwork> reFatory = mock(RenderingEngineFactory.class);
when(reFatory.getVisualLexicon()).thenReturn(minimalLex);
final NetworkViewRenderer nvRenderer = mock(NetworkViewRenderer.class);
when(nvRenderer.getRenderingEngineFactory(NetworkViewRenderer.DEFAULT_CONTEXT)).thenReturn(reFatory);
final CyApplicationManager appManager = mock(CyApplicationManager.class);
when(appManager.getCurrentNetworkViewRenderer()).thenReturn(nvRenderer);
final CyServiceRegistrar serviceRegistrar = mock(CyServiceRegistrar.class);
when(serviceRegistrar.getService(CyEventHelper.class)).thenReturn(eventHelper);
when(serviceRegistrar.getService(CyApplicationManager.class)).thenReturn(appManager);
VisualProperty<NullDataType> rootVisualProperty = mock(VisualProperty.class);
BasicVisualLexicon lexicon = new BasicVisualLexicon(rootVisualProperty);
vpSet = new HashSet<VisualProperty<Paint>>();
vpSet.add(BasicVisualLexicon.NODE_BORDER_PAINT);
vpSet.add(BasicVisualLexicon.NODE_FILL_COLOR);
dependency = new VisualPropertyDependency<Paint>("dep1", "Dep 1", vpSet, lexicon);
final VisualStyleFactoryImpl visualStyleFactory = new VisualStyleFactoryImpl(serviceRegistrar, ptFactory);
originalTitle = "Style 1";
newTitle = "Style 2";
style = visualStyleFactory.createVisualStyle(originalTitle);
style.setDefaultValue(NODE_SIZE, DEF_NODE_SIZE);
style.setDefaultValue(NODE_FILL_COLOR, DEF_NODE_COLOR);
reset(eventHelper);
}
use of org.cytoscape.view.presentation.property.NullVisualProperty in project cytoscape-impl by cytoscape.
the class AbstractXGMMLWriterTest method init.
@Before
public void init() {
netViewTestSupport = new NetworkViewTestSupport();
netMgr = mock(CyNetworkManager.class);
netFactory = netViewTestSupport.getNetworkFactory();
rootNetMgr = netViewTestSupport.getRootNetworkFactory();
vmMgr = mock(VisualMappingManager.class);
VisualStyle style = mock(VisualStyle.class);
when(style.getTitle()).thenReturn("default");
when(vmMgr.getDefaultVisualStyle()).thenReturn(style);
when(vmMgr.getVisualStyle(any(CyNetworkView.class))).thenReturn(style);
renderingEngineMgr = mock(RenderingEngineManager.class);
when(renderingEngineMgr.getDefaultVisualLexicon()).thenReturn(new BasicVisualLexicon(new NullVisualProperty("MINIMAL_ROOT", "Minimal Root Visual Property")));
unrecogVisPropMgr = mock(UnrecognizedVisualPropertyManager.class);
tm = mock(TaskMonitor.class);
grMgr = mock(CyGroupManager.class);
grFactory = grTestSupport.getGroupFactory();
serviceRegistrar = mock(CyServiceRegistrar.class);
when(serviceRegistrar.getService(CyNetworkManager.class)).thenReturn(netMgr);
when(serviceRegistrar.getService(CyNetworkFactory.class)).thenReturn(netFactory);
when(serviceRegistrar.getService(CyRootNetworkManager.class)).thenReturn(rootNetMgr);
when(serviceRegistrar.getService(RenderingEngineManager.class)).thenReturn(renderingEngineMgr);
when(serviceRegistrar.getService(VisualMappingManager.class)).thenReturn(vmMgr);
when(serviceRegistrar.getService(CyGroupManager.class)).thenReturn(grMgr);
when(serviceRegistrar.getService(CyGroupFactory.class)).thenReturn(grFactory);
groupUtil = new GroupUtil(serviceRegistrar);
createBaseNetwork();
out = new ByteArrayOutputStream();
xpathFactory = XPathFactory.newInstance();
doc = null;
}
use of org.cytoscape.view.presentation.property.NullVisualProperty in project cytoscape-api by cytoscape.
the class BasicVisualLexiconTest method setUp.
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
// Create root node.
richRoot = new NullVisualProperty("RICH_ROOT", "Rich Root Visual Property");
richLex = new BasicVisualLexicon(richRoot);
}
use of org.cytoscape.view.presentation.property.NullVisualProperty in project cytoscape-api by cytoscape.
the class VisualPropertyTest method testVisualProperties.
@Test
public void testVisualProperties() {
final VisualProperty<Paint> colorProp = BasicVisualLexicon.NODE_FILL_COLOR;
assertEquals(Paint.class, colorProp.getRange().getType());
final VisualProperty<Boolean> booleanProp = BasicVisualLexicon.NODE_VISIBLE;
assertEquals(Boolean.class, booleanProp.getRange().getType());
assertEquals("false", booleanProp.toSerializableString(Boolean.FALSE));
assertEquals(false, booleanProp.parseSerializableString("false"));
assertEquals(false, booleanProp.parseSerializableString("False"));
assertEquals(false, booleanProp.parseSerializableString("FALSE"));
assertEquals(CyNode.class, booleanProp.getTargetDataType());
final VisualProperty<Double> doubleProp = BasicVisualLexicon.NODE_SIZE;
assertEquals(Double.class, doubleProp.getRange().getType());
assertEquals("20.0", doubleProp.toSerializableString(Double.valueOf(20)));
assertEquals(Double.valueOf(100.12), doubleProp.parseSerializableString("100.12"));
final VisualProperty<Paint> paintProp = BasicVisualLexicon.NODE_FILL_COLOR;
assertEquals(Paint.class, paintProp.getRange().getType());
assertEquals(CyNode.class, paintProp.getTargetDataType());
final Color testColor = new Color(10, 20, 30);
assertEquals("#0A141E", paintProp.toSerializableString(testColor).toUpperCase());
assertEquals(testColor, paintProp.parseSerializableString("#0A141E"));
assertEquals(testColor, paintProp.parseSerializableString("#0a141e"));
assertEquals(testColor, paintProp.parseSerializableString("10,20,30"));
assertEquals(testColor, paintProp.parseSerializableString("rgb(10,20,30)"));
assertEquals(testColor, paintProp.parseSerializableString("RGB ( 10 , 20 , 30 )"));
try {
paintProp.parseSerializableString(null);
} catch (Exception e) {
assertTrue(e instanceof IllegalArgumentException);
}
try {
paintProp.parseSerializableString("#2JK20A141E");
} catch (Exception e) {
assertTrue(e instanceof IllegalArgumentException);
}
try {
paintProp.parseSerializableString("10, 20");
} catch (Exception e) {
assertTrue(e instanceof IllegalArgumentException);
}
try {
paintProp.parseSerializableString("10, 20, IJK");
} catch (Exception e) {
assertTrue(e instanceof IllegalArgumentException);
}
final VisualProperty<Visualizable> visualizableProp = BasicVisualLexicon.NODE;
assertEquals(Visualizable.class, visualizableProp.getRange().getType());
assertTrue(visualizableProp.parseSerializableString("test string") instanceof Visualizable);
final VisualProperty<String> stringProp = BasicVisualLexicon.NODE_LABEL;
assertEquals(String.class, stringProp.getRange().getType());
assertEquals("test string", stringProp.toSerializableString("test string"));
assertEquals("test string 2", stringProp.parseSerializableString("test string 2"));
final VisualProperty<NullDataType> nullProp = new NullVisualProperty("ROOT", "Root Visual Property");
assertEquals(NullDataType.class, nullProp.getRange().getType());
assertTrue(nullProp.parseSerializableString("test string") instanceof NullDataType);
}
use of org.cytoscape.view.presentation.property.NullVisualProperty in project cytoscape-impl by cytoscape.
the class VisualStyleSerializerTest method setUp.
@Before
public void setUp() throws Exception {
evtHelper = mock(CyEventHelper.class);
twoDRoot = new NullVisualProperty("2D_ROOT", "2D Root Visual Property");
lexicon = new BasicVisualLexicon(twoDRoot);
VisualStyle defaultStyle = new DummyVisualStyle(DEFAULT_STYLE_NAME);
final VisualStyleFactory visualStyleFactory = mockVisualStyleFactory(defaultStyle);
final VisualMappingFunctionFactory discreteMappingFactory = mockMappingFunctionFactory(DiscreteMapping.class);
final VisualMappingFunctionFactory continuousMappingFactory = mockMappingFunctionFactory(ContinuousMapping.class);
final VisualMappingFunctionFactory passthroughMappingFactory = mockMappingFunctionFactory(PassthroughMapping.class);
final RenderingEngineManager renderingEngineManager = mock(RenderingEngineManager.class);
when(renderingEngineManager.getDefaultVisualLexicon()).thenReturn(lexicon);
serviceRegistrar = mock(CyServiceRegistrar.class);
when(serviceRegistrar.getService(CyEventHelper.class)).thenReturn(evtHelper);
when(serviceRegistrar.getService(VisualStyleFactory.class)).thenReturn(visualStyleFactory);
when(serviceRegistrar.getService(RenderingEngineManager.class)).thenReturn(renderingEngineManager);
when(serviceRegistrar.getService(VisualMappingFunctionFactory.class, "(mapping.type=discrete)")).thenReturn(discreteMappingFactory);
when(serviceRegistrar.getService(VisualMappingFunctionFactory.class, "(mapping.type=continuous)")).thenReturn(continuousMappingFactory);
when(serviceRegistrar.getService(VisualMappingFunctionFactory.class, "(mapping.type=passthrough)")).thenReturn(passthroughMappingFactory);
final CalculatorConverterFactory calcFactory = new CalculatorConverterFactory();
serializer = new VisualStyleSerializer(calcFactory, serviceRegistrar);
}
Aggregations