add test
This commit is contained in:
parent
5af55fa6b4
commit
cc0e0271b8
@ -59,7 +59,7 @@ class CheckinCsvImporter
|
||||
$imported = 0;
|
||||
foreach ($csv->getRecords() as $offset => $record) {
|
||||
$line = $offset + 1;
|
||||
if (self::IMPORT_LIMIT < $alreadyImportedCount + $imported) {
|
||||
if (self::IMPORT_LIMIT <= $alreadyImportedCount + $imported) {
|
||||
$limit = self::IMPORT_LIMIT;
|
||||
$errors[] = "{$line} 行 : インポート機能で取り込めるデータは{$limit}件までに制限されています。これ以上取り込みできません。";
|
||||
throw new CsvImportException(...$errors);
|
||||
|
@ -291,4 +291,19 @@ class CheckinCsvImporterTest extends TestCase
|
||||
$importer = new CheckinCsvImporter($user, __DIR__ . '/../../fixture/Csv/date.utf8.csv');
|
||||
$importer->execute();
|
||||
}
|
||||
|
||||
public function testRecordLimit()
|
||||
{
|
||||
$user = factory(User::class)->create();
|
||||
factory(Ejaculation::class, 5000)->create([
|
||||
'user_id' => $user->id,
|
||||
'source' => Ejaculation::SOURCE_CSV
|
||||
]);
|
||||
|
||||
$this->expectException(CsvImportException::class);
|
||||
$this->expectExceptionMessage('2 行 : インポート機能で取り込めるデータは5000件までに制限されています。これ以上取り込みできません。');
|
||||
|
||||
$importer = new CheckinCsvImporter($user, __DIR__ . '/../../fixture/Csv/link.utf8.csv');
|
||||
$importer->execute();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user