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
|
<?php
class CurrencyTest extends OpenCartTest {
/**
* @before
*/
public function setupTest() {
$this->db->query("DELETE FROM " . DB_PREFIX . "currency");
$this->db->query("INSERT INTO " . DB_PREFIX . "currency SET currency_id = '1', title = 'Pound Sterling', code = 'GBP', symbol_left = '£', symbol_right = '', decimal_place = '2', value = '0.61979997', status = '1', date_modified = '2011-07-16 10:30:52'");
$this->db->query("INSERT INTO " . DB_PREFIX . "currency SET currency_id = '2', title = 'US Dollar', code = 'USD', symbol_left = '$', symbol_right = '', decimal_place = '2', value = '1.00000000', status = '1', date_modified = '2011-07-16 16:55:46'");
$this->db->query("INSERT INTO " . DB_PREFIX . "currency SET currency_id = '3', title = 'Euro', code = 'EUR', symbol_left = '', symbol_right = '€', decimal_place = '2', value = '0.70660001', status = '1', date_modified = '2011-07-16 10:30:52'");
}
/*
public function testCurrencySet() {
$this->currency->set('EUR');
$this->assertEquals('EUR', $this->session->data['currency']);
}
*/
public function testCurrencyFormat() {
$this->assertEquals('7.06€', $this->currency->format('9.99', 'EUR'));
}
public function testCurrencyConvert() {
$value = $this->currency->convert('7.06', 'EUR', 'USD');
// 9.9915084914872843
$this->assertEquals(9.9915, round($value, 4));
}
public function testCurrencyGetId() {
$this->assertEquals(3, $this->currency->getId('EUR'));
}
public function testCurrencyGetSymbolLeft() {
$this->assertEquals('£', $this->currency->getSymbolLeft('GBP'));
}
public function testCurrencyGetSymbolRight() {
$this->assertEquals('€', $this->currency->getSymbolRight('EUR'));
}
public function testCurrencyGetDecimalPlace() {
$this->assertEquals(2, $this->currency->getDecimalPlace('GBP'));
}
/*
public function testCurrencyGetCode() {
$this->currency->set('GBP');
$this->assertEquals('GBP', $this->currency->getCode());
}
*/
public function testCurrencyHas() {
$this->assertTrue($this->currency->has('USD'));
$this->assertFalse($this->currency->has('AUD'));
}
}
|