Skip to content

Commit 6a9799e

Browse files
authored
Merge pull request #32 from nulab/dev-2/unit-testing-coverage
Unit testing coverage
2 parents 3cd0b18 + d51a3ea commit 6a9799e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1335
-1152
lines changed

autolayout.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55

66
"github.com/nulab/autog/graph"
77
ig "github.com/nulab/autog/internal/graph"
8-
"github.com/nulab/autog/internal/graph/connected"
98
imonitor "github.com/nulab/autog/internal/monitor"
109
"github.com/nulab/autog/internal/processor"
1110
"github.com/nulab/autog/internal/processor/postprocessor"
@@ -55,7 +54,7 @@ func Layout(source graph.Source, opts ...Option) graph.Layout {
5554
shift := 0.0
5655

5756
// process each connected components and collect results into the same layout output
58-
for _, g := range connected.Components(G) {
57+
for _, g := range G.ConnectedComponents() {
5958
if len(g.Nodes) == 0 {
6059
panic("autog: connected sub-graph node set is empty: this might be a bug")
6160
}

autolayout_options.go

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ var defaultOptions = options{
3636
NetworkSimplexThoroughness: 28,
3737
NetworkSimplexMaxIterFactor: 0,
3838
NetworkSimplexBalance: graph.OptionNsBalanceV,
39+
VirtualNodeFixedSize: 0.0,
3940
WMedianMaxIter: 24,
4041
NetworkSimplexAuxiliaryGraphWeightFactor: 4,
4142
LayerSpacing: 150.0,

autolayout_options_funcs.go

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ func WithNodeFixedSize(w, h float64) Option {
5050
}
5151
}
5252

53+
func WithVirtualNodeFixedSize(n float64) Option {
54+
return func(o *options) {
55+
o.params.VirtualNodeFixedSize = n
56+
}
57+
}
58+
5359
func WithBrandesKoepfLayout(i int) Option {
5460
return func(o *options) {
5561
o.params.BrandesKoepfLayout = i

autolayout_options_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ func TestOptions(t *testing.T) {
1616
// set some random options that are different from the defaults
1717
opts := testOptions(
1818
WithCycleBreaking(CycleBreakingDepthFirst),
19+
WithLayering(LayeringLongestPath),
1920
WithOrdering(OrderingNoop),
2021
WithPositioning(PositioningVAlign),
2122
WithEdgeRouting(EdgeRoutingStraight),
@@ -25,10 +26,12 @@ func TestOptions(t *testing.T) {
2526
WithBrandesKoepfLayout(2),
2627
WithNodeFixedSize(100.0, 100.0),
2728
WithNodeSize(map[string]graph.Size{"N1": {W: 20, H: 20}}),
29+
WithVirtualNodeFixedSize(50.0),
2830
WithNonDeterministicGreedyCycleBreaker(),
2931
)
3032

3133
assert.Equal(t, phase1.DepthFirst, opts.p1)
34+
assert.Equal(t, phase2.LongestPath, opts.p2)
3235
assert.Equal(t, phase3.NoOrdering, opts.p3)
3336
assert.Equal(t, phase4.VerticalAlign, opts.p4)
3437
assert.Equal(t, phase5.Straight, opts.p5)
@@ -40,6 +43,7 @@ func TestOptions(t *testing.T) {
4043
assert.Nil(t, opts.monitor)
4144
assert.NotNil(t, opts.params.NodeFixedSizeFunc)
4245
assert.NotNil(t, opts.params.NodeSizeFunc)
46+
assert.Equal(t, 50.0, opts.params.VirtualNodeFixedSize)
4347
assert.True(t, opts.params.GreedyCycleBreakerRandomNodeChoice)
4448

4549
assert.Equal(t, CycleBreakingGreedy, phase1.Greedy)

0 commit comments

Comments
 (0)