GithubHelp home page GithubHelp logo

merk / dough Goto Github PK

View Code? Open in Web Editor NEW
22.0 22.0 4.0 100 KB

An immutable Money implementation in PHP. Based on the Money implementation by Kent Beck in his book, TDD by Example.

License: MIT License

PHP 100.00%

dough's People

Contributors

jmclean avatar merk avatar yethee avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

dough's Issues

MultiCurrencyMoney to string error

I have encountered an error when MultiCurrencyMoney is being converted to string using the __toString() method.

Here are test cases that reproduce the error, add them to MultiCurrencyMoneyText:

public function testToStringIncorrectBank()
    {
        $fiveDollars = $this->bank->createMoney(5, 'USD');

        try {
            $fiveDollars->__toString();
            $is_ok = true;
        } catch(\Exception $e) {
            $is_ok = $e->getMessage();
        }

        $this->assertTrue($is_ok, 'Unable to convert MultiCurrencyMoney to string: '.$is_ok);
    }

    public function testToStringCorrectBank()
    {
        $fiveDollars = $this->bank->createMoney(5, 'USD');
        $fiveDollars->setBank( $this->bank );

        try {
            $fiveDollars->__toString();
            $is_ok = true;
        } catch(\Exception $e) {
            $is_ok = $e->getMessage();
        }

        $this->assertTrue($is_ok, 'Unable to convert MultiCurrencyMoney to string: '.$is_ok);
    }

First one returns: Unable to convert MultiCurrencyMoney to string: The supplied bank must implement MultiCurrencyBankInterface
This is because when using $this->bank->createMoney it doesnt set the bank.
To fix this i need to manually call ->setBank( $this->bank );

Second one returns: Unable to convert MultiCurrencyMoney to string: "" is an unknown currency code.
This is because when BaseMoney method __toString() calls $this->reduce()->getAmount(), the MultiCurrencyMoney reduce() method has $toCurrency = null. So when it calls $bank->getRate(..) it passes null as the fromCurrency parameter, and the MultiCurrencyBank calls $this->checkCurrencies(array($fromCurrency, $toCurrency)) and the checkCurrencies method crashes because of the null.

Suggested fix: when calling MultiCurrencyMoney reduce() withtoCurrency == null, dont call getRate, we dont need to convert to other currency, so this is not needed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.