Skip to content

Commit bd2bc33

Browse files
author
Simon Bigelmayr
committedJan 9, 2025
- hex6Digits to uniqueHex6Digits
- test coverage
1 parent 8642d61 commit bd2bc33

File tree

3 files changed

+46
-7
lines changed

3 files changed

+46
-7
lines changed
 

‎src/LightcyclerSampleSheet/RandomHexGenerator.php

+13-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@
44

55
class RandomHexGenerator
66
{
7-
public function hex6Digits(): string
7+
/** @var list<string> */
8+
private array $generatedHexCodes = [];
9+
10+
public function uniqueHex6Digits(): string
811
{
9-
$randomNumber = mt_rand(0, 0xFFFFFF);
10-
$hexString = dechex($randomNumber);
11-
$paddedHexString = str_pad($hexString, 6, '0', STR_PAD_LEFT);
12+
do {
13+
$randomNumber = mt_rand(0, 0xFFFFFF);
14+
$hexString = dechex($randomNumber);
15+
$paddedHexString = str_pad($hexString, 6, '0', STR_PAD_LEFT);
16+
$uniqueHexCode = strtoupper($paddedHexString);
17+
} while (in_array($uniqueHexCode, $this->generatedHexCodes, true));
18+
19+
$this->generatedHexCodes[] = $uniqueHexCode;
1220

13-
return strtoupper($paddedHexString);
21+
return $uniqueHexCode;
1422
}
1523
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace MLL\Utils\Tests\LightcyclerSampleSheet;
4+
5+
use MLL\Utils\LightcyclerSampleSheet\RandomHexGenerator;
6+
use PHPUnit\Framework\TestCase;
7+
8+
final class RandomHexGeneratorTest extends TestCase
9+
{
10+
public function testGeneratesValidHexCode(): void
11+
{
12+
$generator = new RandomHexGenerator();
13+
$hexCode = $generator->uniqueHex6Digits();
14+
15+
self::assertMatchesRegularExpression('/^[A-F0-9]{6}$/', $hexCode);
16+
}
17+
18+
public function testGeneratesUniqueHexCodes(): void
19+
{
20+
$generator = new RandomHexGenerator();
21+
$hexCodes = [];
22+
23+
for ($i = 0; $i < 1000; ++$i) {
24+
$hexCodes[] = $generator->uniqueHex6Digits();
25+
}
26+
27+
self::assertCount(1000, array_unique($hexCodes));
28+
}
29+
}

‎tests/LightcyclerSampleSheet/RelativeQuantificationSheetTest.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
use Illuminate\Support\Collection;
66
use MLL\Utils\LightcyclerSampleSheet\RelativeQuantificationSample;
77
use MLL\Utils\LightcyclerSampleSheet\RelativeQuantificationSheet;
8+
use MLL\Utils\Microplate\Coordinates;
9+
use MLL\Utils\Microplate\CoordinateSystem12x8;
810
use MLL\Utils\StringUtil;
911
use PHPUnit\Framework\TestCase;
1012

@@ -17,7 +19,7 @@ public function testGenerate(): void
1719
'B1' => new RelativeQuantificationSample('Sample 2', '498-640', '4899D1', null),
1820
'C1' => new RelativeQuantificationSample('Sample 3', '498-640', '8528B9', null),
1921
'D1' => new RelativeQuantificationSample('Sample 4', '498-640', '8E05D9', null),
20-
'E1' => new RelativeQuantificationSample('Sample 5', '498-640', '4080A5', null),
22+
'E1' => new RelativeQuantificationSample('Sample 5', '498-640', '4080A5', Coordinates::fromString('C12', new CoordinateSystem12x8())),
2123
]);
2224

2325
$sheet = new RelativeQuantificationSheet();
@@ -29,7 +31,7 @@ public function testGenerate(): void
2931
B1\t"Sample 2"\t""\t498-640\t$004899D1
3032
C1\t"Sample 3"\t""\t498-640\t$008528B9
3133
D1\t"Sample 4"\t""\t498-640\t$008E05D9
32-
E1\t"Sample 5"\t""\t498-640\t$004080A5
34+
E1\t"Sample 5"\t"C12"\t498-640\t$004080A5
3335
3436
EOT;
3537

0 commit comments

Comments
 (0)