use of org.cytoscape.ding.NetworkViewTestSupport 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.ding.NetworkViewTestSupport 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.ding.NetworkViewTestSupport in project cytoscape-impl by cytoscape.
the class Cy3SessionReaderImplTest method testEscaping.
@Test
public void testEscaping() throws Exception {
NetworkViewTestSupport support = new NetworkViewTestSupport();
CyNetworkView view = support.getNetworkView();
CyNetwork network = view.getModel();
String title = "Network_With-Special Characters<>?:\"{}|=+()*&^%$#@![]|;',./\\";
network.getRow(network).set(CyNetwork.NAME, title);
{
Matcher matcher = Cy3SessionReaderImpl.NETWORK_NAME_PATTERN.matcher(SessionUtil.getXGMMLFilename(network));
Assert.assertTrue(matcher.matches());
Assert.assertEquals(String.valueOf(network.getSUID()), matcher.group(1));
Assert.assertEquals(title + ".xgmml", decode(matcher.group(3)));
}
{
Matcher matcher = Cy3SessionReaderImpl.NETWORK_VIEW_NAME_PATTERN.matcher(SessionUtil.getXGMMLFilename(view));
Assert.assertTrue(matcher.matches());
Assert.assertEquals(String.valueOf(network.getSUID()), matcher.group(1));
Assert.assertEquals(String.valueOf(view.getSUID()), matcher.group(2));
Assert.assertEquals(title + ".xgmml", decode(matcher.group(4)));
}
}
use of org.cytoscape.ding.NetworkViewTestSupport in project cytoscape-impl by cytoscape.
the class VisualStyleTest method testApplyPerformance.
@Test
public void testApplyPerformance() throws Exception {
NetworkViewTestSupport nvts = new NetworkViewTestSupport();
final CyNetwork largeNetwork = nvts.getNetworkFactory().createNetwork();
for (int i = 0; i < NETWORK_SIZE; i++) {
largeNetwork.addNode();
}
final CyNetworkView largeNetworkView = nvts.getNetworkViewFactory().createNetworkView(largeNetwork);
long global = 0;
long local = 0;
final int repeat = 5;
for (int i = 0; i < repeat; i++) {
global += runApplyGlobal(largeNetworkView);
local += runApplyLocal(largeNetworkView);
}
long globalAverage = global / repeat;
long localAverage = local / repeat;
System.out.println("* Apply to network takes: Global " + globalAverage + " msec.");
System.out.println("* Apply to network takes: Local " + localAverage + " msec.");
// assertTrue(globalAverage>localAverage);
}
use of org.cytoscape.ding.NetworkViewTestSupport in project cytoscape-impl by cytoscape.
the class OBOReaderTest method setUp.
@Before
public void setUp() throws Exception {
viewSupport = new NetworkViewTestSupport();
netSupport = new NetworkTestSupport();
netViewFactory = viewSupport.getNetworkViewFactory();
netFactory = netSupport.getNetworkFactory();
eventHelper = mock(CyEventHelper.class);
serviceRegistrar = mock(CyServiceRegistrar.class);
when(serviceRegistrar.getService(CyNetworkViewFactory.class)).thenReturn(netViewFactory);
when(serviceRegistrar.getService(CyNetworkFactory.class)).thenReturn(netFactory);
when(serviceRegistrar.getService(CyEventHelper.class)).thenReturn(eventHelper);
}
Aggregations