-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransition-test-attrTween.js
59 lines (53 loc) · 1.87 KB
/
transition-test-attrTween.js
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
var assert = require("../assert"),
_ = require("../../");
module.exports = {
topic: function(d3) {
var callback = this.callback,
dd = [],
ii = [],
tt = [],
vv = [];
var s = d3.select("body").html("").append("div").selectAll("div")
.data(["red", "green"])
.enter().append("div")
.attr("color", function(d, i) { return i ? "#008000" : "#ff0000"; });
var t = s.transition()
.attrTween("color", tween);
function tween(d, i, v) {
dd.push(d);
ii.push(i);
vv.push(v);
if (tt.push(this) >= 2) callback(null, {
selection: s,
transition: t,
data: dd,
index: ii,
value: vv,
context: tt
});
return i && _.interpolateHsl(v, "blue");
}
},
"defines the corresponding attr tween": function(result) {
assert.typeOf(result.transition.tween("attr.color"), "function");
},
"invokes the tween function": function(result) {
assert.deepEqual(result.data, ["red", "green"], "expected data, got {actual}");
assert.deepEqual(result.index, [0, 1], "expected data, got {actual}");
assert.deepEqual(result.value, ["#ff0000", "#008000"], "expected value, got {actual}");
assert.domEqual(result.context[0], result.selection[0][0], "expected this, got {actual}");
assert.domEqual(result.context[1], result.selection[0][1], "expected this, got {actual}");
},
"end": {
topic: function(result) {
var callback = this.callback;
result.transition.each("end", function(d, i) { if (i >= 1) callback(null, result); });
},
"uses the returned interpolator": function(result) {
assert.equal(result.selection[0][1].getAttribute("color"), "#0000ff");
},
"does nothing if the interpolator is falsey": function(result) {
assert.equal(result.selection[0][0].getAttribute("color"), "#ff0000");
}
}
};