mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fixes and tests for transactions.
This commit is contained in:
parent
61f7fbe951
commit
3fc793f014
@ -15,7 +15,6 @@ class CreateComponentTransactionTable extends Migration {
|
||||
Schema::create('component_transaction', function(Blueprint $table)
|
||||
{
|
||||
$table->increments('id');
|
||||
$table->timestamps();
|
||||
$table->integer('component_id')->unsigned();
|
||||
$table->integer('transaction_id')->unsigned();
|
||||
|
||||
|
@ -36,11 +36,11 @@ class Transaction extends Elegant
|
||||
|
||||
public function budgets()
|
||||
{
|
||||
return $this->belongsToMany('Budget');
|
||||
return $this->belongsToMany('Budget','component_transaction','transaction_id','component_id');
|
||||
}
|
||||
|
||||
public function categories()
|
||||
{
|
||||
return $this->belongsToMany('Category');
|
||||
return $this->belongsToMany('Category','component_transaction','transaction_id','component_id');
|
||||
}
|
||||
}
|
@ -35,10 +35,15 @@ class AllModelsTest extends TestCase
|
||||
|
||||
$account->user()->associate($user);
|
||||
$pref->user()->associate($user);
|
||||
$user->accounts()->save($account);
|
||||
$user->preferences()->save($pref);
|
||||
|
||||
$this->assertEquals($account->user_id, $user->id);
|
||||
$this->assertEquals($pref->user_id,$user->id);
|
||||
|
||||
$this->assertCount(1, $user->accounts()->get());
|
||||
$this->assertCount(1, $user->preferences()->get());
|
||||
|
||||
|
||||
$this->assertTrue(true);
|
||||
|
||||
@ -49,6 +54,7 @@ class AllModelsTest extends TestCase
|
||||
*/
|
||||
public function testUserAccounts()
|
||||
{
|
||||
|
||||
$this->assertTrue(true);
|
||||
|
||||
}
|
||||
@ -84,4 +90,20 @@ class AllModelsTest extends TestCase
|
||||
$this->assertEquals($tj->transaction_currency_id,$tj->transactionCurrency()->first()->id);
|
||||
|
||||
}
|
||||
|
||||
public function testTransactions() {
|
||||
$transaction = FactoryMuff::create('Transaction');
|
||||
|
||||
$budget = FactoryMuff::create('Budget');
|
||||
$category = FactoryMuff::create('Category');
|
||||
|
||||
$transaction->components()->save($budget);
|
||||
$transaction->components()->save($category);
|
||||
|
||||
$this->assertCount(2,$transaction->components()->get());
|
||||
$this->assertCount(1,$transaction->budgets()->get());
|
||||
$this->assertCount(1,$transaction->categories()->get());
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user