aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/slider/slider_options.js
blob: d354ef91c8d55a0ed2f75c1175dcbc0260a09628 (plain)
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
/*
 * slider_options.js
 */
(function($) {

var el, options;

function handle() {
	return el.find(".ui-slider-handle");
}

module("slider: options");

test("max", function() {
	expect( 2 );
	el = $("<div></div>");

	options = {
		max: 37,
		min: 6,
		orientation: "horizontal",
		step: 1,
		value: 50
	};

	el.slider(options);
	ok(el.slider("option", "value") === options.value, "value option is not contained by max");
	ok(el.slider("value") === options.max, "value method is contained by max");
	el.slider("destroy");

});

test("min", function() {
	expect( 2 );
	el = $("<div></div>");

	options = {
		max: 37,
		min: 6,
		orientation: "vertical",
		step: 1,
		value: 2
	};

	el.slider(options);
	ok(el.slider("option", "value") === options.value, "value option is not contained by min");
	ok(el.slider("value") === options.min, "value method is contained by min");
	el.slider("destroy");

});

test("orientation", function() {
	expect( 6 );
	el = $("#slider1");

	options = {
		max: 2,
		min: -2,
		orientation: "vertical",
		value: 1
	};

	var percentVal = (options.value - options.min) / (options.max - options.min) * 100;

	el.slider(options).slider("option", "orientation", "horizontal");
	ok(el.is(".ui-slider-horizontal"), "horizontal slider has class .ui-slider-horizontal");
	ok(!el.is(".ui-slider-vertical"), "horizontal slider does not have class .ui-slider-vertical");
	equal(handle()[0].style.left, percentVal + "%", "horizontal slider handle is positioned with left: %");

	el.slider("destroy");

	options = {
		max: 2,
		min: -2,
		orientation: "horizontal",
		value: -1
	};

	percentVal = (options.value - options.min) / (options.max - options.min) * 100;

	el.slider(options).slider("option", "orientation", "vertical");
	ok(el.is(".ui-slider-vertical"), "vertical slider has class .ui-slider-vertical");
	ok(!el.is(".ui-slider-horizontal"), "vertical slider does not have class .ui-slider-horizontal");
	equal(handle()[0].style.bottom, percentVal + "%", "vertical slider handle is positioned with bottom: %");

	el.slider("destroy");

});

//test("range", function() {
//	ok(false, "missing test - untested code is broken code.");
//});

//spec: http://wiki.jqueryui.com/Slider#specs
// value option/method: the value option is not restricted by min/max/step.
// What is returned by the value method is restricted by min (>=), max (<=), and step (even multiple)
test("step", function() {
	expect( 9 );
	var el = $("<div></div>").slider({
		min: 0,
		value: 0,
		step: 10,
		max: 100
	});
	equal( el.slider("value"), 0 );

	el.slider("value", 1);
	equal( el.slider("value"), 0 );

	el.slider("value", 9);
	equal( el.slider("value"), 10 );

	el.slider("value", 11);
	equal( el.slider("value"), 10 );

	el.slider("value", 19);
	equal( el.slider("value"), 20 );

	el = $("<div></div>").slider({
		min: 0,
		value: 0,
		step: 20,
		max: 100
	});
	el.slider("value", 0);

	el.slider("option", "value", 1);
	equal( el.slider("value"), 0 );

	el.slider("option", "value", 9);
	equal( el.slider("value"), 0 );

	el.slider("option", "value", 11);
	equal( el.slider("value"), 20 );

	el.slider("option", "value", 19);
	equal( el.slider("value"), 20 );

	el.slider("destroy");
});

//test("value", function() {
//	ok(false, "missing test - untested code is broken code.");
//});

test("values", function() {
	expect( 2 );

	// testing multiple ranges on the same page, the object reference to the values
	// property is preserved via multiple range elements, so updating options.values
	// of 1 slider updates options.values of all the others
	var ranges = $([
		document.createElement("div"),
		document.createElement("div")
	]).slider({
		range:  true,
		values: [ 25, 75 ]
	});

	notStrictEqual(
		ranges.eq(0).data("uiSlider").options.values,
		ranges.eq(1).data("uiSlider").options.values,
		"multiple range sliders should not have a reference to the same options.values array"
	);

	ranges.eq(0).slider("values", 0, 10);

	notEqual(
		ranges.eq(0).slider("values", 0),
		ranges.eq(1).slider("values", 0),
		"the values for multiple sliders should be different"
	);
});

})(jQuery);