2020-04-19 12:29:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit\Migration;
|
|
|
|
|
|
|
|
use App\DataMapper\BaseSettings;
|
|
|
|
use App\DataMapper\FeesAndLimits;
|
|
|
|
use Tests\TestCase;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
|
|
class FeesAndLimitsTest extends TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFeesAndLimitsFunctionWorks()
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
$data['min_limit'] = 234;
|
|
|
|
$data['max_limit'] = 65317;
|
|
|
|
$data['fee_amount'] = 0.00;
|
|
|
|
$data['fee_percent'] = 0.000;
|
2020-07-07 14:33:11 +02:00
|
|
|
$data['fee_tax_name1'] = '';
|
|
|
|
$data['fee_tax_rate1'] = '';
|
|
|
|
$data['fee_tax_name2'] = '';
|
|
|
|
$data['fee_tax_rate2'] = '';
|
|
|
|
$data['fee_tax_name3'] = '';
|
|
|
|
$data['fee_tax_rate3'] = 0;
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-07-07 14:33:11 +02:00
|
|
|
$fees_and_limits_array = [];
|
|
|
|
$fees_and_limits_array[] = $data;
|
|
|
|
|
|
|
|
$transformed = $this->cleanFeesAndLimits($fees_and_limits_array);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($transformed));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function cleanFeesAndLimits($fees_and_limits)
|
|
|
|
{
|
|
|
|
$new_arr = [];
|
|
|
|
|
|
|
|
foreach ($fees_and_limits as $key => $value) {
|
2020-07-07 14:33:11 +02:00
|
|
|
$fal = new FeesAndLimits;
|
|
|
|
// $fal->{$key} = $value;
|
|
|
|
|
|
|
|
foreach ($value as $k => $v) {
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-07-07 14:33:11 +02:00
|
|
|
$fal->{$k} = $v;
|
|
|
|
$fal->{$k} = BaseSettings::castAttribute(FeesAndLimits::$casts[$k], $v);
|
|
|
|
}
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-07-07 14:33:11 +02:00
|
|
|
$new_arr[$key] = (array)$fal;
|
2020-04-19 12:29:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $new_arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|