-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_test.go
210 lines (201 loc) · 5.5 KB
/
plot_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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package plot_test
import (
"bytes"
"fmt"
"image/color"
"reflect"
"testing"
"github.com/mison201/plot"
"github.com/mison201/plot/plotter"
"github.com/mison201/plot/vg"
"github.com/mison201/plot/vg/draw"
"github.com/mison201/plot/vg/recorder"
)
func TestLegendAlignment(t *testing.T) {
const fontSize = 10.189054726368159 // This font size gives an entry height of 10.
font, err := vg.MakeFont(plot.DefaultFont, fontSize)
if err != nil {
t.Fatalf("failed to create font: %v", err)
}
l := plot.Legend{
ThumbnailWidth: vg.Points(20),
TextStyle: draw.TextStyle{Font: font},
}
for _, n := range []string{"A", "B", "C", "D"} {
b, err := plotter.NewBarChart(plotter.Values{0}, 1)
if err != nil {
t.Fatalf("failed to create bar chart %q: %v", n, err)
}
l.Add(n, b)
}
var r recorder.Canvas
c := draw.NewCanvas(&r, 100, 100)
l.Draw(draw.Canvas{
Canvas: c.Canvas,
Rectangle: vg.Rectangle{
Min: vg.Point{0, 0},
Max: vg.Point{100, 100},
},
})
got := r.Actions
// want is a snapshot of the actions for the code above when the
// graphical output has been visually confirmed to be correct for
// the bar charts example show in gonum/plot#25.
want := []recorder.Action{
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.Fill{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 40}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 40}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 30}},
{Type: vg.CloseComp},
},
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.SetLineWidth{
Width: 1,
},
&recorder.SetLineDash{},
&recorder.Stroke{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 40}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 40}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 30}},
},
},
&recorder.SetColor{},
&recorder.FillString{
Font: string("Times-Roman"),
Size: fontSize,
Point: vg.Point{X: 70.09452736318407, Y: 30.18905472636816},
String: "A",
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.Fill{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 20}},
{Type: vg.CloseComp},
},
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.SetLineWidth{
Width: 1,
},
&recorder.SetLineDash{},
&recorder.Stroke{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 30}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 20}},
},
},
&recorder.SetColor{},
&recorder.FillString{
Font: string("Times-Roman"),
Size: fontSize,
Point: vg.Point{X: 70.65671641791045, Y: 20.18905472636816},
String: "B",
},
&recorder.SetColor{
Color: color.Gray16{
Y: uint16(0),
},
},
&recorder.Fill{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 10}},
{Type: vg.CloseComp},
},
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.SetLineWidth{
Width: 1,
},
&recorder.SetLineDash{},
&recorder.Stroke{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 20}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 10}},
},
},
&recorder.SetColor{},
&recorder.FillString{
Font: string("Times-Roman"),
Size: fontSize,
Point: vg.Point{X: 70.65671641791045, Y: 10.189054726368159},
String: "C",
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.Fill{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 0}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 0}},
{Type: vg.CloseComp},
},
},
&recorder.SetColor{
Color: color.Gray16{},
},
&recorder.SetLineWidth{
Width: 1,
},
&recorder.SetLineDash{},
&recorder.Stroke{
Path: vg.Path{
{Type: vg.MoveComp, Pos: vg.Point{X: 80, Y: 0}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 10}},
{Type: vg.LineComp, Pos: vg.Point{X: 100, Y: 0}},
{Type: vg.LineComp, Pos: vg.Point{X: 80, Y: 0}},
},
},
&recorder.SetColor{},
&recorder.FillString{
Font: string("Times-Roman"),
Size: fontSize,
Point: vg.Point{X: 70.09452736318407, Y: 0.189054726368159},
String: "D",
},
}
if !reflect.DeepEqual(got, want) {
t.Errorf("unexpected legend actions:\ngot:\n%s\nwant:\n%s", formatActions(got), formatActions(want))
}
}
func formatActions(actions []recorder.Action) string {
var buf bytes.Buffer
for _, a := range actions {
fmt.Fprintf(&buf, "\t%s\n", a.Call())
}
return buf.String()
}