Example #1
0
 def test_default(self):
     graph_name = 'graph_XKW'  # (7 nodes)
     graph_name = 'graph_MKF'  # ( 20 nodes,  27 edges)
     #graph_name = 'graph_YT4'   # (199 nodes, 236 edges)
     #graph_name = 'graph_VZ5'   # (367 nodes, 653 edges)
     #graph_name = 'graph_EE3'    # fails in lambda in visjs (but works here :) )
     #graph_name = 'graph_OJF'   # org chart
     self.png_data = Go_Js_Views.default(params=[graph_name])
Example #2
0
 def test_fixed_bug___graph_doesnt_create_good_mindmap(self):
     graph_name = 'graph_56Q'  # prob was this graph (that was missing a root node)
     graph_name = 'graph_O80'
     self.png_data = Go_Js_Views.mindmap(params=[graph_name])
Example #3
0
 def test_fixed__bug___graph_breaks_mindmap(self):
     #graph_name = 'graph_W2E'  # example 1
     graph_name = 'graph_0QZ'  # example 2
     self.png_data = Go_Js_Views.mindmap(params=[graph_name])
Example #4
0
 def test_fixed__bug_default_doesnt_render(self):
     self.png_data = Go_Js_Views.default(
         params=['graph_414'])  # graph_name has a node whose text is None
Example #5
0
 def test_mindmap_issue(self):
     jira_id = 'GSCS-14'
     #jira_id = 'IA-402'
     self.png_data = Go_Js_Views.mindmap_issue(params=[jira_id])
Example #6
0
 def test_mindmap___with_non_issue_nodes(self):
     self.png_data = Go_Js_Views.mindmap(params=['graph_THV', 1000, 500])
Example #7
0
 def test_mindmap___with_size(self):
     self.png_data = Go_Js_Views.mindmap(params=['graph_EPU', 1000, 300])
Example #8
0
 def test_chart_js(self):
     self.png_data = Go_Js_Views.chart_js(params=['_'])
Example #9
0
 def test_timeline(self):
     self.png_data = Go_Js_Views.timeline(params=['graph_MKF'],
                                          headless=False)
Example #10
0
 def test_kanban(self):
     self.png_data = Go_Js_Views.kanban(params=['graph_MKF'],
                                        headless=False)
Example #11
0
 def test_piechart(self):
     self.png_data = Go_Js_Views.piechart(params=['_'])
Example #12
0
 def test_mindmap(self):
     self.png_data = Go_Js_Views.mindmap(params=['graph_FCM'])
Example #13
0
 def test_swimlanes(self):
     self.png_data = Go_Js_Views.swimlanes(params=['graph_MKF'])
Example #14
0
 def test_sankey(self):
     self.png_data = Go_Js_Views.sankey(params=['graph_MKF'])
Example #15
0
 def test_circular(self):
     self.png_data = Go_Js_Views.circular(params=['graph_GYY'])