Revert "Merge pull request #121 from JasonGiedymin/master"
This reverts commitd3819e3209
, reversing changes made toea4210b206
.
This commit is contained in:
parent
d3819e3209
commit
fac3f8defc
|
@ -2,23 +2,35 @@ package digraph
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"reflect"
|
|
||||||
"sort"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
var testTable = []struct {
|
func TestWriteDot(t *testing.T) {
|
||||||
BasicData string // Basic graph data
|
nodes := ParseBasic(`a -> b ; foo
|
||||||
ExpectedDigraphData string // Digraph data which should be generated from BasicData
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
`a -> b ; foo
|
|
||||||
a -> c
|
a -> c
|
||||||
b -> d
|
b -> d
|
||||||
b -> e
|
b -> e
|
||||||
`,
|
`)
|
||||||
`digraph {
|
var nlist []Node
|
||||||
|
for _, n := range nodes {
|
||||||
|
nlist = append(nlist, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := bytes.NewBuffer(nil)
|
||||||
|
if err := WriteDot(buf, nlist); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
actual := strings.TrimSpace(string(buf.Bytes()))
|
||||||
|
expected := strings.TrimSpace(writeDotStr)
|
||||||
|
if actual != expected {
|
||||||
|
t.Fatalf("bad: %s", actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const writeDotStr = `
|
||||||
|
digraph {
|
||||||
"a";
|
"a";
|
||||||
"a" -> "b" [label="foo"];
|
"a" -> "b" [label="foo"];
|
||||||
"a" -> "c" [label="Edge"];
|
"a" -> "c" [label="Edge"];
|
||||||
|
@ -28,74 +40,5 @@ var testTable = []struct {
|
||||||
"c";
|
"c";
|
||||||
"d";
|
"d";
|
||||||
"e";
|
"e";
|
||||||
}`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
`a -> c ; foo
|
|
||||||
a -> d
|
|
||||||
b -> c
|
|
||||||
b -> e
|
|
||||||
a -> f
|
|
||||||
`,
|
|
||||||
`digraph {
|
|
||||||
"a";
|
|
||||||
"a" -> "c" [label="foo"];
|
|
||||||
"a" -> "f" [label="Edge"];
|
|
||||||
"a" -> "d" [label="Edge"];
|
|
||||||
"b";
|
|
||||||
"b" -> "c" [label="Edge"];
|
|
||||||
"b" -> "e" [label="Edge"];
|
|
||||||
"c";
|
|
||||||
"d";
|
|
||||||
"e";
|
|
||||||
"f";
|
|
||||||
}`,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
// Nieve normalizer. Takes a string, splits it and sorts it.
|
|
||||||
func normalize(input string) []string {
|
|
||||||
out := strings.Split(input, "\n")
|
|
||||||
|
|
||||||
// trim each line
|
|
||||||
for i, str := range out {
|
|
||||||
out[i] = strings.TrimSpace(str)
|
|
||||||
}
|
|
||||||
|
|
||||||
sort.Strings(out)
|
|
||||||
return out
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestWriteDot(t *testing.T) {
|
|
||||||
// Build []Node from BasicNode map
|
|
||||||
var buildNodes = func(nodes map[string]*BasicNode) []Node {
|
|
||||||
var nlist []Node
|
|
||||||
for _, n := range nodes {
|
|
||||||
nlist = append(nlist, n)
|
|
||||||
}
|
|
||||||
return nlist
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get a normalized string representation of the file
|
|
||||||
var writeFile = func(nlist []Node) string {
|
|
||||||
buf := bytes.NewBuffer(nil)
|
|
||||||
if err := WriteDot(buf, nlist); err != nil {
|
|
||||||
t.Fatalf("err: %s", err)
|
|
||||||
}
|
|
||||||
return strings.TrimSpace(string(buf.Bytes()))
|
|
||||||
}
|
|
||||||
|
|
||||||
// For each entry in the test table construct an
|
|
||||||
// actual and expected values and compare.
|
|
||||||
for _, data := range testTable {
|
|
||||||
nodes := buildNodes(ParseBasic(data.BasicData))
|
|
||||||
actual := normalize(writeFile(nodes))
|
|
||||||
expected := normalize(strings.TrimSpace(data.ExpectedDigraphData))
|
|
||||||
|
|
||||||
// Deep equal the array values
|
|
||||||
if !reflect.DeepEqual(actual, expected) {
|
|
||||||
t.Logf("Expected:\n%s", expected)
|
|
||||||
t.Fatalf("Bad:\n%s", actual)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
`
|
||||||
|
|
Loading…
Reference in New Issue