aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/options.js
blob: ec5a8c010893af97ccf1511fbd01c811ec1fe3a9 (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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
define( [
	"qunit",
	"jquery",
	"lib/helper",
	"./helper",
	"ui/widgets/resizable"
], function( QUnit, $, helper, testHelper ) {

QUnit.module( "resizable: options", { afterEach: helper.moduleAfterEach }  );

QUnit.test( "alsoResize", function( assert ) {
	assert.expect( 2 );

	var other = $( "<div>" )
			.css( {
				width: 50,
				height: 50
			} )
			.appendTo( "body" ),
		element = $( "#resizable1" ).resizable( {
			alsoResize: other
		} ),
		handle = ".ui-resizable-e";

	testHelper.drag( handle, 80 );
	assert.equal( element.width(), 180, "resizable width" );
	assert.equal( other.width(), 130, "alsoResize width" );
} );

QUnit.test( "aspectRatio: 'preserve' (e)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-e", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, 80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, -130 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (w)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-w", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, -80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, 130 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (n)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-n", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, 0, -80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, 0, 80 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (s)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-s", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, 0, 80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, 0, -80 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (se)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-se", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, 80, 80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, -80, -80 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (sw)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-sw", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, -80, 80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, 80, -80 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: 'preserve' (ne)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-ne", target = $( "#resizable1" ).resizable( { aspectRatio: "preserve", handles: "all", minWidth: 70, minHeight: 50, maxWidth: 150, maxHeight: 130 } );

	testHelper.drag( handle, 80, -80 );
	assert.equal( target.width(), 130, "compare maxWidth" );
	assert.equal( target.height(), 130, "compare maxHeight" );

	testHelper.drag( handle, -80, 80 );
	assert.equal( target.width(), 70, "compare minWidth" );
	assert.equal( target.height(), 70, "compare minHeight" );
} );

QUnit.test( "aspectRatio: Resizing can move objects", function( assert ) {
	assert.expect( 7 );

	// Http://bugs.jqueryui.com/ticket/7018 - Resizing can move objects
	var handleW = ".ui-resizable-w",
		handleNW = ".ui-resizable-nw",
		target = $( "#resizable1" ).resizable( {
			aspectRatio: true,
			handles: "all",
			containment: "parent"
		} );

	$( "#container" ).css( { width: 200, height: 300 } );
	$( "#resizable1" ).css( { width: 100, height: 100, left: 75, top: 200 } );

	testHelper.drag( handleW, -20 );
	assert.equal( target.width(), 100, "compare width - no size change" );
	assert.equal( target.height(), 100, "compare height - no size change" );
	assert.equal( target.position().left, 75, "compare left - no movement" );

	// Http://bugs.jqueryui.com/ticket/9107 - aspectRatio and containment not handled correctly
	$( "#container" ).css( { width: 200, height: 300, position: "absolute", left: 100, top: 100 } );
	$( "#resizable1" ).css( { width: 100, height: 100, left: 0, top: 0 } );

	testHelper.drag( handleNW, -20, -20 );
	assert.equal( target.width(), 100, "compare width - no size change" );
	assert.equal( target.height(), 100, "compare height - no size change" );
	assert.equal( target.position().left, 0, "compare left - no movement" );
	assert.equal( target.position().top, 0, "compare top - no movement" );
} );

QUnit.test( "aspectRatio: aspectRatio can be changed after initialization", function( assert ) {
	assert.expect( 4 );

	var target = $( "#resizable1" )
		.resizable( { aspectRatio: 1 } )
		.resizable( "option", "aspectRatio", false );

	var handle = ".ui-resizable-e";

	testHelper.drag( handle, 80 );

	assert.equal( target.width(), 180, "compare width - size change" );
	assert.equal( target.height(), 100, "compare height - no size change" );

	target.resizable( "option", "aspectRatio", 2 );

	testHelper.drag( handle, -40 );

	assert.equal( target.width(), 140, "compare width - size change" );
	assert.equal( target.height(), 70, "compare height - size change in proper relation" );
} );

QUnit.test( "containment", function( assert ) {
	assert.expect( 4 );

	var element = $( "#resizable1" ).resizable( {
		containment: "#container"
	} );

	testHelper.drag( ".ui-resizable-se", 20, 30 );
	assert.equal( element.width(), 120, "unconstrained width within container" );
	assert.equal( element.height(), 130, "unconstrained height within container" );

	testHelper.drag( ".ui-resizable-se", 400, 400 );
	assert.equal( element.width(), 300, "constrained width at containment edge" );
	assert.equal( element.height(), 200, "constrained height at containment edge" );
} );

QUnit.test( "containment - not immediate parent", function( assert ) {
	assert.expect( 4 );

	// Http://bugs.jqueryui.com/ticket/7485 - Resizable: Containment calculation is wrong
	// when containment element is not the immediate parent
	var element = $( "#child" ).resizable( {
		containment: "#container2",
		handles: "all"
	} );

	testHelper.drag( ".ui-resizable-e", 300, 0 );
	assert.equal( element.width(), 400, "Relative, contained within container width" );

	testHelper.drag( ".ui-resizable-s", 0, 300 );
	assert.equal( element.height(), 400, "Relative, contained within container height" );

	$( "#child" ).css( { left: 50, top: 50 } );
	$( "#parent" ).css( { left: 50, top: 50 } );
	$( "#container2" ).css( { left: 50, top: 50 } );

	element = $( "#child" ).resizable( {
		containment: "#container2",
		handles: "all"
	} );

	testHelper.drag( ".ui-resizable-e", 400, 0 );
	assert.equal( element.width(), 300, "Relative with Left, contained within container width" );

	testHelper.drag( ".ui-resizable-s", 0, 400 );
	assert.equal( element.height(), 300, "Relative with Top, contained within container height" );
} );

QUnit.test( "containment - immediate parent", function( assert ) {
	assert.expect( 4 );

	// Http://bugs.jqueryui.com/ticket/10140 - Resizable: Width calculation is wrong when containment element is "position: relative"
	// when containment element is  immediate parent
	var element = $( "#child" ).resizable( {
		containment: "parent",
		handles: "all"
	} );

	testHelper.drag( ".ui-resizable-e", 400, 0 );
	assert.equal( element.width(), 300, "Relative, contained within container width" );

	testHelper.drag( ".ui-resizable-s", 0, 400 );
	assert.equal( element.height(), 300, "Relative, contained within container height" );

	$( "#child" ).css( { left: 50, top: 50 } );
	$( "#parent" ).css( { left: 50, top: 50 } );
	$( "#container2" ).css( { left: 50, top: 50 } );

	element = $( "#child" ).resizable( {
		containment: "parent",
		handles: "all"
	} );

	testHelper.drag( ".ui-resizable-e", 400, 0 );
	assert.equal( element.width(), 250, "Relative with Left, contained within container width" );

	testHelper.drag( ".ui-resizable-s", 0, 400 );
	assert.equal( element.height(), 250, "Relative with Top, contained within container height" );
} );

QUnit.test( "grid", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-se", target = $( "#resizable1" ).resizable( { handles: "all", grid: [ 0, 20 ] } );

	testHelper.drag( handle, 3, 9 );
	assert.equal( target.width(), 103, "compare width" );
	assert.equal( target.height(), 100, "compare height" );

	testHelper.drag( handle, 15, 11 );
	assert.equal( target.width(), 118, "compare width" );
	assert.equal( target.height(), 120, "compare height" );
} );

QUnit.test( "grid (min/max dimensions)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-se", target = $( "#resizable1" ).resizable( { handles: "all", grid: 20, minWidth: 65, minHeight: 65, maxWidth: 135, maxHeight: 135 } );

	testHelper.drag( handle, 50, 50 );
	assert.equal( target.width(), 120, "grid should respect maxWidth" );
	assert.equal( target.height(), 120, "grid should respect maxHeight" );

	testHelper.drag( handle, -100, -100 );
	assert.equal( target.width(), 80, "grid should respect minWidth" );
	assert.equal( target.height(), 80, "grid should respect minHeight" );
} );

QUnit.test( "grid (wrapped)", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-se", target = $( "#resizable2" ).resizable( { handles: "all", grid: [ 0, 20 ] } );

	testHelper.drag( handle, 3, 9 );
	assert.equal( target.width(), 103, "compare width" );
	assert.equal( target.height(), 100, "compare height" );

	testHelper.drag( handle, 15, 11 );
	assert.equal( target.width(), 118, "compare width" );
	assert.equal( target.height(), 120, "compare height" );
} );

QUnit.test( "grid - Resizable: can be moved when grid option is set (#9611)", function( assert ) {
	assert.expect( 6 );

	var oldPosition,
		handle = ".ui-resizable-nw",
		target = $( "#resizable1" ).resizable( {
			handles: "all",
			grid: 50
		} );

	testHelper.drag( handle, 50, 50 );
	assert.equal( target.width(), 50, "compare width" );
	assert.equal( target.height(), 50, "compare height" );

	oldPosition = target.position();

	testHelper.drag( handle, 50, 50 );
	assert.equal( target.width(), 50, "compare width" );
	assert.equal( target.height(), 50, "compare height" );
	assert.equal( target.position().top, oldPosition.top, "compare top" );
	assert.equal( target.position().left, oldPosition.left, "compare left" );
} );

QUnit.test( "grid - maintains grid with padding and border when approaching no dimensions", function( assert ) {
	assert.expect( 2 );

	// Http://bugs.jqueryui.com/ticket/10437 - Resizable: border with grid option working wrong
	var handle = ".ui-resizable-nw",
		target = $( "#resizable1" ).css( {
			padding: 5,
			border: "5px solid black",
			width: 80,
			height: 80
		} ).resizable( {
			handles: "all",
			grid: [ 50, 12 ]
		} );

	testHelper.drag( handle, 50, 50 );
	assert.equal( target.outerWidth(), 50, "compare width" );
	assert.equal( target.outerHeight(), 52, "compare height" );
} );

QUnit.test( "ui-resizable-se { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 }", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-se", target = $( "#resizable1" ).resizable( { handles: "all", minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 } );

	testHelper.drag( handle, -50, -50 );
	assert.equal( target.width(), 60, "compare minWidth" );
	assert.equal( target.height(), 60, "compare minHeight" );

	testHelper.drag( handle, 70, 70 );
	assert.equal( target.width(), 100, "compare maxWidth" );
	assert.equal( target.height(), 100, "compare maxHeight" );
} );

QUnit.test( "ui-resizable-sw { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 }", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-sw", target = $( "#resizable1" ).resizable( { handles: "all", minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 } );

	testHelper.drag( handle, 50, -50 );
	assert.equal( target.width(), 60, "compare minWidth" );
	assert.equal( target.height(), 60, "compare minHeight" );

	testHelper.drag( handle, -70, 70 );
	assert.equal( target.width(), 100, "compare maxWidth" );
	assert.equal( target.height(), 100, "compare maxHeight" );
} );

QUnit.test( "ui-resizable-ne { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 }", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-ne", target = $( "#resizable1" ).resizable( { handles: "all", minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 } );

	testHelper.drag( handle, -50, 50 );
	assert.equal( target.width(), 60, "compare minWidth" );
	assert.equal( target.height(), 60, "compare minHeight" );

	testHelper.drag( handle, 70, -70 );
	assert.equal( target.width(), 100, "compare maxWidth" );
	assert.equal( target.height(), 100, "compare maxHeight" );
} );

QUnit.test( "ui-resizable-nw { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 }", function( assert ) {
	assert.expect( 4 );

	var handle = ".ui-resizable-nw", target = $( "#resizable1" ).resizable( { handles: "all", minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 } );

	testHelper.drag( handle, 70, 70 );
	assert.equal( target.width(), 60, "compare minWidth" );
	assert.equal( target.height(), 60, "compare minHeight" );

	testHelper.drag( handle, -70, -70 );
	assert.equal( target.width(), 100, "compare maxWidth" );
	assert.equal( target.height(), 100, "compare maxHeight" );
} );

QUnit.test( "custom handles { handles: { 's': $('#resizer1'), containment: 'parent' }", function( assert ) {
	assert.expect( 2 );

	var handle = "#resizer1",
		target = $( "#resizable1" ).resizable( { handles: { "s": $( "#resizer1" ) }, containment: "parent" } );

	testHelper.drag( handle, 0, 70 );
	assert.equal( target.height(), 170, "compare height" );

	testHelper.drag( handle, 0, -70 );
	assert.equal( target.height(), 100, "compare height" );
} );

QUnit.test( "custom handles { handles: { 's': $('#resizer1')[0], containment: 'parent' }", function( assert ) {
	assert.expect( 2 );

	var handle = "#resizer1",
		target = $( "#resizable1" ).resizable( { handles: { "s": $( "#resizer1" )[ 0 ] }, containment: "parent" } );

	testHelper.drag( handle, 0, 70 );
	assert.equal( target.height(), 170, "compare height" );

	testHelper.drag( handle, 0, -70 );
	assert.equal( target.height(), 100, "compare height" );
} );

QUnit.test( "zIndex, applied to all handles", function( assert ) {
	assert.expect( 8 );

	var target = $( "<div></div>" ).resizable( { handles: "all", zIndex: 100 } );
	target.children( ".ui-resizable-handle" ).each( function( index, handle ) {
		assert.equal( $( handle ).css( "zIndex" ), 100, "compare zIndex" );
	} );
} );

QUnit.test( "setOption handles", function( assert ) {
	assert.expect( 19 );

	// https://bugs.jqueryui.com/ticket/3423
	// https://bugs.jqueryui.com/ticket/15084
	var target = $( "<div></div>" ).resizable(),
		target2 = $( "<div>" +
					"<div class='ui-resizable-handle ui-resizable-e'></div>" +
					"<div class='ui-resizable-handle ui-resizable-w'></div>" +
					"</div>" ).resizable( {
						handles: {
							"e": "ui-resizable-e",
							"w": "ui-resizable-w"
						}
					} );

	function checkHandles( target, expectedHandles ) {
		expectedHandles = $.map( expectedHandles, function( value ) {
			return ".ui-resizable-" + value;
		} );

		var handles = target.find( ".ui-resizable-handle" );

		assert.equal( handles.length, expectedHandles.length, "Correct number of handles found" );
		$.each( expectedHandles, function( index, handleClass ) {
			assert.equal( handles.filter( handleClass ).length, 1, "Found " + handleClass );
		} );
	}

	checkHandles( target, [ "e", "s", "se" ] );

	target.resizable( "option", "handles", "n, w, nw" );
	checkHandles( target, [ "n", "w", "nw" ] );

	target.resizable( "option", "handles", "s, w" );
	checkHandles( target, [ "s", "w" ] );

	target2.resizable( "option", "handles", "e, s, w" );
	checkHandles( target2, [ "e", "s", "w" ] );

	target.resizable( "destroy" );
	checkHandles( target, [ ] );

	target2.resizable( "destroy" );
	checkHandles( target2, [ "e", "w" ] );
} );

QUnit.test( "alsoResize + containment", function( assert ) {
	assert.expect( 4 );
	var other = $( "<div>" )
			.css( {
				width: 50,
				height: 50
			} )
			.appendTo( "body" ),
		element = $( "#resizable1" ).resizable( {
			alsoResize: other,
			containment: "#container"
		} );

	testHelper.drag( ".ui-resizable-se", 400, 400 );
	assert.equal( element.width(), 300, "resizable constrained width at containment edge" );
	assert.equal( element.height(), 200, "resizable constrained height at containment edge" );
	assert.equal( other.width(), 250, "alsoResize constrained width at containment edge" );
	assert.equal( other.height(), 150, "alsoResize constrained height at containment edge" );
} );

QUnit.test( "alsoResize + multiple selection", function( assert ) {
	assert.expect( 6 );
	var other1 = $( "<div>" )
			.addClass( "other" )
			.css( {
				width: 50,
				height: 50
			} )
			.appendTo( "body" ),
		other2 = $( "<div>" )
			.addClass( "other" )
			.css( {
				width: 50,
				height: 50
			} )
			.appendTo( "body" ),
		element = $( "#resizable1" ).resizable( {
			alsoResize: other1.add( other2 ),
			containment: "#container"
		} );

	testHelper.drag( ".ui-resizable-se", 400, 400 );
	assert.equal( element.width(), 300, "resizable constrained width at containment edge" );
	assert.equal( element.height(), 200, "resizable constrained height at containment edge" );
	assert.equal( other1.width(), 250, "alsoResize o1 constrained width at containment edge" );
	assert.equal( other1.height(), 150, "alsoResize o1 constrained height at containment edge" );
	assert.equal( other2.width(), 250, "alsoResize o2 constrained width at containment edge" );
	assert.equal( other2.height(), 150, "alsoResize o2 constrained height at containment edge" );
} );

} );