mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * ReportSumTest.php
 | |
|  * Copyright (c) 2019 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as
 | |
|  * published by the Free Software Foundation, either version 3 of the
 | |
|  * License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Tests\Unit\Console\Commands\Integrity;
 | |
| 
 | |
| 
 | |
| use FireflyIII\Models\Transaction;
 | |
| use FireflyIII\Repositories\User\UserRepositoryInterface;
 | |
| use Illuminate\Support\Collection;
 | |
| use Log;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * Class ReportSumTest
 | |
|  * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
 | |
|  * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
 | |
|  * @SuppressWarnings(PHPMD.TooManyPublicMethods)
 | |
|  */
 | |
| class ReportSumTest extends TestCase
 | |
| {
 | |
|     /**
 | |
|      *
 | |
|      */
 | |
|     public function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
|         Log::info(sprintf('Now in %s.', get_class($this)));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @covers \FireflyIII\Console\Commands\Integrity\ReportSum
 | |
|      */
 | |
|     public function testHandle(): void
 | |
|     {
 | |
|         $repository = $this->mock(UserRepositoryInterface::class);
 | |
|         $repository->shouldReceive('all')->atLeast()->once()->andReturn(new Collection([$this->user()]));
 | |
| 
 | |
|         $this->artisan('firefly-iii:report-sum')
 | |
|              ->expectsOutput(sprintf('Amount integrity OK for user #%d', $this->user()->id))
 | |
|              ->assertExitCode(0);
 | |
| 
 | |
|         // this method changes no objects so there is nothing to verify.
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Create transaction to make balance uneven.
 | |
|      * @covers \FireflyIII\Console\Commands\Integrity\ReportSum
 | |
|      */
 | |
|     public function testHandleUneven(): void
 | |
|     {
 | |
|         $transaction = Transaction::create(
 | |
|             [
 | |
|                 'transaction_journal_id' => $this->getRandomWithdrawal()->id,
 | |
|                 'user_id'                => 1,
 | |
|                 'account_id'             => $this->getRandomAsset()->id,
 | |
|                 'amount'                 => 10,
 | |
|             ]
 | |
|         );
 | |
| 
 | |
|         $repository = $this->mock(UserRepositoryInterface::class);
 | |
|         $repository->shouldReceive('all')->atLeast()->once()->andReturn(new Collection([$this->user()]));
 | |
| 
 | |
|         $this->artisan('firefly-iii:report-sum')
 | |
|              ->expectsOutput(sprintf('Error: Transactions for user #%d (%s) are off by %s!', $this->user()->id, $this->user()->email, '10.0'))
 | |
|              ->assertExitCode(0);
 | |
|         $transaction->forceDelete();
 | |
| 
 | |
|         // this method changes no objects so there is nothing to verify.
 | |
|     }
 | |
| }
 |