-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort_test.go
109 lines (101 loc) · 1.85 KB
/
sort_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package cloudcompute
import (
"fmt"
"testing"
)
func TestTS4(t *testing.T) {
digraph := map[string][]string{
"B": []string{"A"},
"C": []string{"B"},
"D": []string{"C"},
}
sorted, err := TopologicalSort(digraph)
if err != nil {
t.Log(err)
}
fmt.Println(sorted)
}
func TestTS3(t *testing.T) {
digraph := map[string][]string{
"C": []string{"D"},
"B": []string{"C"},
"A": []string{"B"},
}
sorted, err := TopologicalSort(digraph)
if err != nil {
t.Log(err)
}
fmt.Println(sorted)
}
func TestTS2(t *testing.T) {
digraph := map[string][]string{
"5": []string{"2", "0"},
"4": []string{"0", "1"},
"2": []string{"3"},
"3": []string{"1"},
}
sorted, err := TopologicalSort(digraph)
if err != nil {
t.Log(err)
}
fmt.Println(sorted)
}
func TestTS(t *testing.T) {
digraph := map[string][]string{
"1": []string{"2", "4"},
"2": []string{"3", "5"},
"3": []string{"4", "5"},
}
sorted, err := TopologicalSort(digraph)
if err != nil {
t.Log(err)
}
fmt.Println(sorted)
}
//node() //connectedTo()
func TestTS5(t *testing.T) {
digraph := map[string][]string{
"1": []string{},
"2": []string{"1"},
"3": []string{"2"},
"4": []string{"1", "3"},
"5": []string{"2", "3"},
}
sorted, err := TopologicalSort(digraph)
if err != nil {
t.Log(err)
}
fmt.Println(sorted)
}
func TestTopoSort(t *testing.T) {
manifests := []ComputeManifest{
{
ManifestID: "1",
Dependencies: []JobDependency{},
},
{
ManifestID: "2",
Dependencies: []JobDependency{{"1"}},
},
{
ManifestID: "3",
Dependencies: []JobDependency{{"2"}},
},
{
ManifestID: "4",
Dependencies: []JobDependency{{"1"}, {"3"}},
},
{
ManifestID: "5",
Dependencies: []JobDependency{{"2"}, {"3"}},
},
}
event := Event{
Manifests: manifests,
}
ordered, err := event.TopoSort()
if err != nil {
t.Log(err)
}
fmt.Println(ordered)
}