|
| 1 | +using Microsoft.VisualStudio.TestTools.UnitTesting; |
| 2 | +using QuickGraph.Graphviz; |
| 3 | +using System.Drawing; |
| 4 | +using System.Globalization; |
| 5 | +using System.Threading; |
| 6 | + |
| 7 | +namespace QuickGraph.Tests |
| 8 | +{ |
| 9 | + [TestClass] |
| 10 | + public class GraphVizTests |
| 11 | + { |
| 12 | + private static CultureInfo oldCulture; |
| 13 | + |
| 14 | + [ClassInitialize] |
| 15 | + public static void ClassInitialize(TestContext context) |
| 16 | + { |
| 17 | + oldCulture = Thread.CurrentThread.CurrentCulture; |
| 18 | + |
| 19 | + // Germany (de-DE) uses comma as decimal separator |
| 20 | + Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE"); |
| 21 | + } |
| 22 | + |
| 23 | + [ClassCleanup] |
| 24 | + public static void ClassCleanup() |
| 25 | + { |
| 26 | + Thread.CurrentThread.CurrentCulture = oldCulture; |
| 27 | + } |
| 28 | + |
| 29 | + [TestMethod] |
| 30 | + public void CommonVertexFormat_FontSize_UseDecimalPointForFloats() |
| 31 | + { |
| 32 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 33 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 34 | + |
| 35 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 36 | + gv.CommonVertexFormat.Font = new Font(SystemFonts.DefaultFont.FontFamily, emSize: 1.75f); |
| 37 | + |
| 38 | + var res = gv.Generate(); |
| 39 | + |
| 40 | + StringAssert.Contains(res, "fontsize=1.75", "Formatting floating points should always use dot as decimal separator"); |
| 41 | + } |
| 42 | + |
| 43 | + [TestMethod] |
| 44 | + public void CommonVertexFormat_Z_UseDecimalPointForDoubles() |
| 45 | + { |
| 46 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 47 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 48 | + |
| 49 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 50 | + gv.CommonVertexFormat.Z = 1.75; |
| 51 | + |
| 52 | + var res = gv.Generate(); |
| 53 | + |
| 54 | + StringAssert.Contains(res, "z=1.75", "Formatting floating points should always use dot as decimal separator"); |
| 55 | + } |
| 56 | + |
| 57 | + [TestMethod] |
| 58 | + public void CommonEdgeFormat_FontSize_UseDecimalPointForFloats() |
| 59 | + { |
| 60 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 61 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 62 | + |
| 63 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 64 | + gv.CommonEdgeFormat.Font = new Font(SystemFonts.DefaultFont.FontFamily, emSize: 1.75f); |
| 65 | + |
| 66 | + var res = gv.Generate(); |
| 67 | + |
| 68 | + StringAssert.Contains(res, "fontsize=1.75", "Formatting floating points should always use dot as decimal separator"); |
| 69 | + } |
| 70 | + |
| 71 | + [TestMethod] |
| 72 | + public void CommonEdgeFormat_Weight_UseDecimalPointForDoubles() |
| 73 | + { |
| 74 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 75 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 76 | + |
| 77 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 78 | + gv.CommonEdgeFormat.Weight = 1.75; |
| 79 | + |
| 80 | + var res = gv.Generate(); |
| 81 | + |
| 82 | + StringAssert.Contains(res, "weight=1.75", "Formatting floating points should always use dot as decimal separator"); |
| 83 | + } |
| 84 | + |
| 85 | + [TestMethod] |
| 86 | + public void GraphFormat_RankSeparation_UseDecimalPointForDoubles() |
| 87 | + { |
| 88 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 89 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 90 | + |
| 91 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 92 | + gv.GraphFormat.RankSeparation = 0.75d; |
| 93 | + |
| 94 | + var res = gv.Generate(); |
| 95 | + |
| 96 | + StringAssert.Contains(res, "ranksep=0.75", "Formatting floating points should always use dot as decimal separator"); |
| 97 | + } |
| 98 | + |
| 99 | + [TestMethod] |
| 100 | + public void GraphFormat_FontSize_UseDecimalPointForFloats() |
| 101 | + { |
| 102 | + var graph = new AdjacencyGraph<string, IEdge<string>>(false); |
| 103 | + graph.AddVerticesAndEdge(new Edge<string>("s", "t")); |
| 104 | + |
| 105 | + var gv = new GraphvizAlgorithm<string, IEdge<string>>(graph); |
| 106 | + gv.GraphFormat.Font = new Font(SystemFonts.DefaultFont.FontFamily, emSize: 1.75f); |
| 107 | + |
| 108 | + var res = gv.Generate(); |
| 109 | + |
| 110 | + StringAssert.Contains(res, "fontsize=1.75", "Formatting floating points should always use dot as decimal separator"); |
| 111 | + } |
| 112 | + } |
| 113 | +} |
0 commit comments