1 | /*! |
---|
2 | * Ext JS Library 3.4.0 |
---|
3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
4 | * licensing@sencha.com |
---|
5 | * http://www.sencha.com/license |
---|
6 | */ |
---|
7 | Ext.test.session.addTest('Number', { |
---|
8 | |
---|
9 | name: 'Global Number Decorators', |
---|
10 | |
---|
11 | planned: 15, |
---|
12 | |
---|
13 | // 15 |
---|
14 | test_constrain: function(){ |
---|
15 | Y.Assert.areEqual(1, (1).constrain(1, 1), 'Test where the number being constrained is equal to both the min and the max'); |
---|
16 | Y.Assert.areEqual(5, (5).constrain(1, 5), 'Test where the number being constrained is equal to the max'); |
---|
17 | Y.Assert.areEqual(3, (3).constrain(3, 5), 'Test where the number being constrained is equal to the min'); |
---|
18 | |
---|
19 | Y.Assert.areEqual(3, (3).constrain(1, 5), 'Test with an integer within the constraints'); |
---|
20 | Y.Assert.areEqual(-3, (-3).constrain(-5, -1), 'Test with a negative integer within the constraints'); |
---|
21 | Y.Assert.areEqual(3.3, (3.3).constrain(3.1, 3.5), 'Test with a float within the constraints'); |
---|
22 | Y.Assert.areEqual(-3.3, (-3.3).constrain(-3.5, -3.1), 'Test with a negative float within the constraints'); |
---|
23 | |
---|
24 | Y.Assert.areEqual(5, (100).constrain(1, 5), 'Test with an integer over the maximum of the constraint'); |
---|
25 | Y.Assert.areEqual(3, (1).constrain(3, 5), 'Test with an integer under the maximum of the constraint'); |
---|
26 | Y.Assert.areEqual(-50, (-5).constrain(-100, -50), 'Test with a negative integer over the maximum of the constraint'); |
---|
27 | Y.Assert.areEqual(-5, (-100).constrain(-5, -3), 'Test with a negative integer under the maximum of the constraint'); |
---|
28 | |
---|
29 | Y.Assert.areEqual(4.1, (6.7).constrain(3.1, 4.1), 'Test with a float over the maximum of the constraint'); |
---|
30 | Y.Assert.areEqual(6.7, (3.1).constrain(6.7, 12.4), 'Test with a float under the maximum of the constraint'); |
---|
31 | Y.Assert.areEqual(-50.5, (-3.1).constrain(-100.5, -50.5), 'Test with a negative float over the maximum of the constraint'); |
---|
32 | Y.Assert.areEqual(-5.4, (-100.7).constrain(-5.4, -3.1), 'Test with a negative float under the maximum of the constraint'); |
---|
33 | } |
---|
34 | |
---|
35 | }); |
---|