2021-02-27 11:08:39 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
class RangeDetectionTest extends TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_range_detection()
|
|
|
|
{
|
|
|
|
$ranges = [];
|
|
|
|
$ranges[] = [100, 105];
|
|
|
|
$ranges[] = [106, 110];
|
|
|
|
$ranges[] = [110, 115];
|
|
|
|
|
|
|
|
$expanded_ranges = [];
|
|
|
|
|
|
|
|
foreach($ranges as $range)
|
|
|
|
{
|
2021-02-28 05:32:08 +01:00
|
|
|
$expanded_ranges = array_merge(array_values($expanded_ranges),array_values($this->makeRanges($range)));
|
2021-02-27 11:08:39 +01:00
|
|
|
}
|
|
|
|
|
2021-02-28 05:32:08 +01:00
|
|
|
$value_count_array = array_count_values($expanded_ranges);
|
2021-02-27 11:08:39 +01:00
|
|
|
|
2021-02-28 05:32:08 +01:00
|
|
|
$value_count_array = array_diff($value_count_array, [1]);
|
|
|
|
|
|
|
|
$this->assertEquals(count($value_count_array), 1);
|
2021-02-27 11:08:39 +01:00
|
|
|
}
|
|
|
|
|
2021-02-28 05:32:08 +01:00
|
|
|
|
2021-02-28 03:12:55 +01:00
|
|
|
private function makeRanges(array $range)
|
2021-02-27 11:08:39 +01:00
|
|
|
{
|
|
|
|
return range($range[0], $range[1]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|