Blame view

framework/tests/forms/CurrencyFieldTest.php 2.05 KB
0084d336   Administrator   Importers CRUD
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
  <?php
  
  /**
   * @package framework
   * @subpackage tests
   */
  class CurrencyFieldTest extends SapphireTest {
  
  	public function testValidate() {
  		$f = new CurrencyField('TestField');
  		
  		$f->setValue('123.45');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates positive decimals'
  		);
  		
  		$f->setValue('-123.45');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates negative decimals'
  		);
  		
  		$f->setValue('$123.45');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates positive decimals with sign'
  		);
  		
  		$f->setValue('-$123.45');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates negative decimals with sign'
  		);
  		
  		$f->setValue('$-123.45');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates negative decimals with sign'
  		);
  		
  		$f->setValue('324511434634');
  		$this->assertTrue(
  			$f->validate(new RequiredFields()),
  			'Validates large integers'
  		);
  	}
  	
  	public function testSetValue() {
  		$f = new CurrencyField('TestField');
  		
  		$f->setValue('123.45');
  		$this->assertEquals(
  			$f->value, '$123.45',
  			'Prepends dollar sign to positive decimal'
  		);
  		
  		$f->setValue('-123.45');
  		$this->assertEquals(
  			$f->value, '$-123.45',
  			'Prepends dollar sign to negative decimal'
  		);
  		
  		$f->setValue('$1');
  		$this->assertEquals(
  			$f->value, '$1.00',
  			'Formats small value'
  		);
  		
  		$f->setValue('$2.5');
  		$this->assertEquals(
  			$f->value, '$2.50',
  			'Formats small value'
  		);
  		
  		$f->setValue('$2500000.13');
  		$this->assertEquals(
  			$f->value, '$2,500,000.13',
  			'Formats large value'
  		);
  		
  		$f->setValue('$2.50000013');
  		$this->assertEquals(
  			$f->value, '$2.50',
  			'Truncates long decimal portions'
  		);
  	}
  	
  	public function testDataValue() {
  		$f = new CurrencyField('TestField');
  		
  		$f->setValue('$123.45');
  		$this->assertEquals(
  			$f->dataValue(), 123.45
  		);
  		
  		$f->setValue('-$123.45');
  		$this->assertEquals(
  			$f->dataValue(), -123.45
  		);
  		
  		$f->setValue('$-123.45');
  		$this->assertEquals(
  			$f->dataValue(), -123.45
  		);
  	}
  }