Spaces:
No application file
No application file
File size: 5,741 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
<?php
namespace Mautic\LeadBundle\Tests\Entity;
use Mautic\LeadBundle\Entity\Import;
use Mautic\LeadBundle\Tests\StandardImportTestHelper;
class ImportTest extends StandardImportTestHelper
{
public function testSetPath(): void
{
$import = $this->initImportEntity();
$this->assertSame(self::$csvPath, $import->getFilePath());
}
public function testCanProceed(): void
{
$import = $this->initImportEntity();
$this->assertTrue($import->canProceed());
}
public function testIsBackgroundProcess(): void
{
$import = $this->initImportEntity();
$this->assertTrue($import->isBackgroundProcess());
$import->setStatus(Import::MANUAL);
$this->assertFalse($import->isBackgroundProcess());
}
public function testIncreaseInsertedCount(): void
{
$count = 4;
$import = $this->initImportEntity();
$import->setInsertedCount($count);
$this->assertSame($count, $import->getInsertedCount());
$import->increaseInsertedCount();
$this->assertSame(5, $import->getInsertedCount());
}
public function testIncreaseUpdatedCount(): void
{
$count = 4;
$import = $this->initImportEntity();
$import->setUpdatedCount($count);
$this->assertSame($count, $import->getUpdatedCount());
$import->increaseUpdatedCount();
$this->assertSame(5, $import->getUpdatedCount());
}
public function testIncreaseIgnoredCount(): void
{
$count = 4;
$import = $this->initImportEntity();
$import->setIgnoredCount($count);
$this->assertSame($count, $import->getIgnoredCount());
$import->increaseIgnoredCount();
$this->assertSame(5, $import->getIgnoredCount());
}
public function testGetProcessedRows(): void
{
$count = 4;
$import = $this->initImportEntity();
$this->assertSame(0, $import->getProcessedRows());
$import->setIgnoredCount($count);
$import->setUpdatedCount($count);
$import->setInsertedCount($count);
$this->assertSame(3 * $count, $import->getProcessedRows());
$import->increaseIgnoredCount();
$import->increaseIgnoredCount();
$this->assertSame(3 * $count + 2, $import->getProcessedRows());
}
public function testGetProgressPercentage(): void
{
$import = $this->initImportEntity()
->setLineCount(100);
$this->assertSame(0, $import->getProgressPercentage());
$import->setIgnoredCount(3);
$this->assertEquals(3, $import->getProgressPercentage());
$import->increaseIgnoredCount()
->increaseIgnoredCount();
$this->assertEquals(5, $import->getProgressPercentage());
}
public function testStart(): void
{
$import = $this->initImportEntity();
$this->assertSame(Import::QUEUED, $import->getStatus());
$this->assertNull($import->getDateStarted());
// Date started will be set when the start is called for the first time.
$import->start();
$startDate = $import->getDateStarted();
$this->assertSame(Import::IN_PROGRESS, $import->getStatus());
$this->assertTrue($startDate instanceof \DateTime);
// But the date started will not change when started for the second time.
$import->end(false);
$import->start();
$this->assertSame($startDate, $import->getDateStarted());
}
public function testEnd(): void
{
$import = $this->initImportEntity();
$this->assertSame(Import::QUEUED, $import->getStatus());
$this->assertNull($import->getDateEnded());
$import->start()->end(false);
$this->assertSame(Import::IMPORTED, $import->getStatus());
$this->assertTrue($import->getDateEnded() instanceof \DateTime);
}
public function testGetRunTime(): void
{
$import = $this->initImportEntity()->start();
$this->assertNull($import->getRunTime());
$import->end(false);
$this->fakeImportStartDate($import, 10 * 60);
$this->assertTrue($import->getRunTime() instanceof \DateInterval);
$this->assertSame(10, $import->getRunTime()->i);
}
public function testGetRunTimeSeconds(): void
{
$import = $this->initImportEntity()->start();
$this->assertSame(0, $import->getRunTimeSeconds());
$import->end(false);
$this->fakeImportStartDate($import, 600);
$this->assertSame(600, $import->getRunTimeSeconds());
}
public function testGetSpeed(): void
{
$import = $this->initImportEntity()->start();
$this->assertSame(0, $import->getSpeed());
$import->setInsertedCount(900);
$import->end(false);
$this->fakeImportStartDate($import, 600);
$this->assertSame(1.5, $import->getSpeed());
}
public function testGetSpeedWhenRunTimeIsUnderOneSecond(): void
{
$import = $this->initImportEntity()->start();
$this->assertSame(0, $import->getSpeed());
$import->setInsertedCount(3);
$import->end(false);
$this->assertSame(3, $import->getSpeed());
}
/**
* Fake the start date to the past to emulate that the import runs for a while.
*
* @param int $runtime in seconds
*/
protected function fakeImportStartDate(Import $import, $runtime = 600)
{
$dateEnded = $import->getDateEnded();
$dateStarted = new \DateTime($dateEnded->format('Y-m-d H:i:s.u'), $dateEnded->getTimezone());
$dateStarted->modify('-'.$runtime.' seconds');
$import->setDateStarted($dateStarted);
}
}
|