Files
espocrm/tests/unit/Espo/Tools/WorkingTime/CalendarUtilityTest.php
Taras Machyshyn 6f676c8a2f 2023 year
2023-01-03 16:01:43 +02:00

268 lines
8.6 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace tests\unit\Espo\Tools\WorkingTime;
use Espo\Core\Field\DateTime;
use Espo\Tools\WorkingTime\Calendar;
use Espo\Tools\WorkingTime\CalendarUtility;
use Espo\Tools\WorkingTime\Extractor;
class CalendarUtilityTest extends \PHPUnit\Framework\TestCase
{
protected Calendar $calendar;
protected Extractor $extractor;
protected CalendarUtility $calendarUtility;
protected function setUp(): void
{
$this->calendar = $this->createMock(Calendar::class);
$this->extractor = $this->createMock(Extractor::class);
$this->calendarUtility = new CalendarUtility($this->calendar, $this->extractor);
}
public function testHasWorkingDay1(): void
{
$time = DateTime::fromString('2023-01-01 01:01:01');
$from = DateTime::fromString('2023-01-01 00:00:00');
$to = DateTime::fromString('2023-01-02 00:00:00');
$this->extractor
->expects($this->any())
->method('extractAllDay')
->with($this->calendar, $from, $to)
->willReturn([
[
$from,
$to
]
]);
$this->assertTrue($this->calendarUtility->isWorkingDay($time));
}
public function testHasWorkingTime1(): void
{
$from = DateTime::fromString('2023-01-01 00:00:00');
$to = DateTime::fromString('2023-01-02 00:00:00');
$this->extractor
->expects($this->any())
->method('extract')
->with($this->calendar, $from, $to)
->willReturn([
[
DateTime::fromString('2023-01-01 05:00:00'),
DateTime::fromString('2023-01-01 06:00:00')
]
]);
$this->assertTrue($this->calendarUtility->hasWorkingTime($from, $to));
}
public function testHasWorkingTime2(): void
{
$from = DateTime::fromString('2023-01-01 00:00:00');
$to = DateTime::fromString('2023-01-02 00:00:00');
$this->extractor
->expects($this->any())
->method('extract')
->with($this->calendar, $from, $to)
->willReturn([]);
$this->assertFalse($this->calendarUtility->hasWorkingTime($from, $to));
}
public function testGetSummedWorkingHours1(): void
{
$from = DateTime::fromString('2023-01-01 00:00:00');
$to = DateTime::fromString('2023-01-02 00:00:00');
$this->extractor
->expects($this->any())
->method('extract')
->with($this->calendar, $from, $to)
->willReturn([
[
DateTime::fromString('2023-01-01 05:00:00'),
DateTime::fromString('2023-01-01 06:00:00')
],
[
DateTime::fromString('2023-01-01 07:00:00'),
DateTime::fromString('2023-01-01 08:00:00')
]
]);
$this->assertEquals(2.0, $this->calendarUtility->getSummedWorkingHours($from, $to));
}
public function testGetWorkingDays1(): void
{
$from = DateTime::fromString('2023-01-01 00:00:00');
$to = DateTime::fromString('2023-01-07 00:00:00');
$this->extractor
->expects($this->any())
->method('extractAllDay')
->with($this->calendar, $from, $to)
->willReturn([
[
DateTime::fromString('2023-01-01 00:00:00'),
DateTime::fromString('2023-01-02 00:00:00')
],
[
DateTime::fromString('2023-01-04 00:00:00'),
DateTime::fromString('2023-01-05 00:00:00')
]
]);
$this->assertEquals(2, $this->calendarUtility->getWorkingDays($from, $to));
}
public function testFindClosestWorkingTime1(): void
{
$time = DateTime::fromString('2023-01-01 00:00:00');
$this->extractor
->expects($this->exactly(2))
->method('extract')
->withConsecutive(
[
$this->calendar,
$time,
$time->modify('+10 days')
],
[
$this->calendar,
$time->modify('+10 days'),
$time->modify('+20 days'),
]
)
->willReturnOnConsecutiveCalls(
[],
[
[
DateTime::fromString('2023-01-11 01:00:00'),
DateTime::fromString('2023-01-11 02:00:00')
],
]
);
$found = $this->calendarUtility->findClosestWorkingTime($time);
$this->assertEquals(DateTime::fromString('2023-01-11 01:00:00'), $found);
}
public function testFindClosestWorkingTime2(): void
{
$time = DateTime::fromString('2023-01-01 00:00:00');
$this->extractor
->expects($this->exactly(20))
->method('extract')
->willReturn([]);
$found = $this->calendarUtility->findClosestWorkingTime($time);
$this->assertEquals(null, $found);
}
public function testAddWorkingDays1(): void
{
$time = DateTime::fromString('2023-01-01 01:00:00');
$point = $time->withTime(0, 0, 0)->modify('+1 day');
$this->extractor
->expects($this->exactly(2))
->method('extractAllDay')
->withConsecutive(
[
$this->calendar,
$point,
$point->modify('+30 days')
],
[
$this->calendar,
$point->modify('+30 days'),
$point->modify('+60 days'),
]
)
->willReturnOnConsecutiveCalls(
[],
[
[
DateTime::fromString('2023-04-01 00:00:00'),
DateTime::fromString('2023-04-01 00:00:00')
],
]
);
$found = $this->calendarUtility->addWorkingDays($time, 1);
$this->assertEquals(DateTime::fromString('2023-04-01 00:00:00'), $found);
}
public function testAddWorkingDays2(): void
{
$time = DateTime::fromString('2023-01-01 01:00:00');
$point = $time->withTime(0, 0, 0)->modify('+1 day');
$this->extractor
->expects($this->exactly(1))
->method('extractAllDay')
->withConsecutive(
[
$this->calendar,
$point,
$point->modify('+30 days')
],
)
->willReturnOnConsecutiveCalls(
[
[
DateTime::fromString('2023-01-02 00:00:00'),
DateTime::fromString('2023-01-03 00:00:00')
],
[
DateTime::fromString('2023-01-03 00:00:00'),
DateTime::fromString('2023-01-04 00:00:00')
],
]
);
$found = $this->calendarUtility->addWorkingDays($time, 2);
$this->assertEquals(DateTime::fromString('2023-01-03 00:00:00'), $found);
}
}