summaryrefslogtreecommitdiff
path: root/tests/units/Model/CurrencyTest.php
blob: 0bc71da6f4429ae05baa05b8450587cf67d3221d (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
<?php

require_once __DIR__.'/../Base.php';

use Kanboard\Model\Currency;

class CurrencyTest extends Base
{
    public function testGetCurrencies()
    {
        $currencyModel = new Currency($this->container);
        $currencies = $currencyModel->getCurrencies();
        $this->assertArrayHasKey('EUR', $currencies);
    }

    public function testGetAll()
    {
        $currencyModel = new Currency($this->container);
        $currencies = $currencyModel->getAll();
        $this->assertCount(0, $currencies);

        $this->assertNotFalse($currencyModel->create('USD', 9.9));
        $currencies = $currencyModel->getAll();
        $this->assertCount(1, $currencies);
        $this->assertEquals('USD', $currencies[0]['currency']);
        $this->assertEquals(9.9, $currencies[0]['rate']);
    }

    public function testCreate()
    {
        $currencyModel = new Currency($this->container);
        $this->assertNotFalse($currencyModel->create('EUR', 1.2));
        $this->assertNotFalse($currencyModel->create('EUR', 1.5));
    }

    public function testUpdate()
    {
        $currencyModel = new Currency($this->container);
        $this->assertNotFalse($currencyModel->create('EUR', 1.1));
        $this->assertNotFalse($currencyModel->update('EUR', 2.2));
    }

    public function testGetPrice()
    {
        $currencyModel = new Currency($this->container);

        $this->assertEquals(123, $currencyModel->getPrice('USD', 123));

        $this->assertNotFalse($currencyModel->create('EUR', 0.5));
        $this->assertEquals(50.0, $currencyModel->getPrice('EUR', 100));
        $this->assertEquals(50.0, $currencyModel->getPrice('EUR', 100)); // test with cached result
    }
}