81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Commands;
 | |
| 
 | |
| use App\Models\Expense\Bill;
 | |
| use App\Notifications\Expense\Bill as BillNotification;
 | |
| use Illuminate\Support\Facades\Notification;
 | |
| use Jenssegers\Date\Date;
 | |
| use Tests\Feature\FeatureTestCase;
 | |
| 
 | |
| class BillReminderTest extends FeatureTestCase
 | |
| {
 | |
|     private $addDay;
 | |
| 
 | |
|     protected function setUp()
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->addDay = 3;
 | |
|     }
 | |
| 
 | |
|     public function testBillReminderByDueDate()
 | |
|     {
 | |
|         Notification::fake();
 | |
| 
 | |
|         $bill = Bill::create($this->getBillRequest());
 | |
| 
 | |
|         Date::setTestNow(Date::now()->subDays($this->addDay));
 | |
| 
 | |
|         $this->artisan('reminder:bill');
 | |
| 
 | |
|         Notification::assertSentTo(
 | |
|             $this->user,
 | |
|             BillNotification::class,
 | |
|             function ($notification, $channels) use ($bill) {
 | |
|                 return $notification->bill->id === $bill->id;
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Copied in InvoicesTest
 | |
|      *
 | |
|      * @param int $recurring
 | |
|      * @return array
 | |
|      */
 | |
|     private function getBillRequest()
 | |
|     {
 | |
|         $amount = $this->faker->randomFloat(2, 2);
 | |
| 
 | |
|         $items = [['name' => $this->faker->text(5), 'item_id' => null, 'quantity' => '1', 'price' => $amount, 'currency' => 'USD']];
 | |
| 
 | |
| 
 | |
|         $data = [
 | |
|             'vendor_id' => '0',
 | |
|             'billed_at' => $this->faker->date(),
 | |
|             'due_at' => Date::now()->subDays($this->addDay - 1),
 | |
|             'bill_number' => '1',
 | |
|             'order_number' => '1',
 | |
|             'currency_code' => setting('general.default_currency'),
 | |
|             'currency_rate' => '1',
 | |
|             'item' => $items,
 | |
|             'discount' => '0',
 | |
|             'notes' => $this->faker->text(5),
 | |
|             'category_id' => $this->company->categories()->type('income')->first()->id,
 | |
|             'recurring_frequency' => 'no',
 | |
|             'vendor_name' => $this->faker->name,
 | |
|             'vendor_email' => $this->faker->email,
 | |
|             'vendor_tax_number' => null,
 | |
|             'vendor_phone' => null,
 | |
|             'vendor_address' => $this->faker->address,
 | |
|             'bill_status_code' => 'sent',
 | |
|             'amount' => $amount,
 | |
|             'company_id' => $this->company->id,
 | |
|         ];
 | |
| 
 | |
| 
 | |
|         return $data;
 | |
|     }
 | |
| }
 |