Files
XC_VM/tests/Unit/EncryptionTest.php
T
Divarion-D da291e20f8 chore(psr4): phase 3 (Core) — namespace remaining Core subdirs
Namespace the rest of Core, completing the Core layer:
- Backup, Boundary, Cache (CacheInterface/FileCache/RedisCache), Diagnostics,
  GeoIP (GeoIPService/MaxMindUpdater), Init (LegacyInitializer), Localization
  (Translator), Process (Thread/Multithread/ProcessManager), Updates
  (GitHubReleases), Util (NetworkUtils, AdminHelpers, Encryption, GeoIP,
  ImageUtils/ImageResizeService, Mobile_Detect, StreamUtils, SystemInfo,
  TimeUtils), Validation (InputValidator) → XcVm\Core\<Subdir>.
- Rename GithubReleases.php → GitHubReleases.php so the file matches its class
  name (PSR-4 is case-sensitive); fix the WebApiBootstrap require accordingly.
- Qualify built-ins (\Exception, \DateTime, \DateTimeZone, \Redis,
  \RuntimeException, \BadMethodCallException, ...) and still-global deps
  (\ServerRepository, \CacheReader, \DatabaseFactory, \BouquetService,
  \CategoryService, \FfmpegPaths, \StreamSorter, \XC_VM). LegacyInitializer's
  Domain calls stay \-qualified (the known Core→Domain exception).
- Add use to referrers; fix leading-backslash refs from earlier commits; fix
  string class refs class_exists('Translator'/'NetworkUtils'/...) → ::class.
  Remove the duplicate global 'use BoundaryInterface;' in MinistraModule.
- phpstan-baseline.neon regenerated.

Core is now fully namespaced (procedural constant/error/RequestGuard files stay
global by design; M3uParser/PhpM3u8 remain vendored). Verified: php -l clean;
PHPStan no errors; PHPUnit 295/295; leading-backslash re-sweep clean.
2026-06-24 22:35:33 +03:00

74 lines
2.4 KiB
PHP

<?php
use XcVm\Core\Util\Encryption;
use PHPUnit\Framework\TestCase;
/**
* @covers Encryption
*/
final class EncryptionTest extends TestCase {
public function testEncryptDecryptRoundTrip() {
$plain = 'hello world / стрим 123';
$cipher = Encryption::encrypt($plain, 'secret-key', 'device-1');
$this->assertNotSame($plain, $cipher);
$this->assertSame($plain, Encryption::decrypt($cipher, 'secret-key', 'device-1'));
}
public function testEncryptIsDeterministicForSameInputs() {
// Same data/key/device → same ciphertext (derived key + IV are deterministic).
$a = Encryption::encrypt('data', 'k', 'd');
$b = Encryption::encrypt('data', 'k', 'd');
$this->assertSame($a, $b);
}
public function testDecryptWithWrongKeyFails() {
$cipher = Encryption::encrypt('secret', 'right-key', 'device');
$this->assertFalse(Encryption::decrypt($cipher, 'wrong-key', 'device'));
}
public function testDecryptWithWrongDeviceFails() {
$cipher = Encryption::encrypt('secret', 'key', 'device-a');
$this->assertFalse(Encryption::decrypt($cipher, 'key', 'device-b'));
}
public function testBase64urlIsUrlSafeAndUnpadded() {
$raw = "\xff\xfe\xfd\x00binary?";
$encoded = Encryption::base64urlEncode($raw);
$this->assertStringNotContainsString('+', $encoded);
$this->assertStringNotContainsString('/', $encoded);
$this->assertStringNotContainsString('=', $encoded);
$this->assertSame($raw, Encryption::base64urlDecode($encoded));
}
public function testRandomStringLengthAndCharset() {
$s = Encryption::randomString(40);
$this->assertSame(40, strlen($s));
$this->assertMatchesRegularExpression('/^[A-Za-z0-9]+$/', $s);
}
public function testRandomTokenLengthIsHex() {
$token = Encryption::randomToken(16);
$this->assertSame(32, strlen($token));
$this->assertMatchesRegularExpression('/^[0-9a-f]+$/', $token);
}
public function testGenerateKeyByteLength() {
$this->assertSame(16, strlen(Encryption::generateKey(128)));
$this->assertSame(32, strlen(Encryption::generateKey(256)));
}
public function testGenerateIvLengthForAes128() {
$this->assertSame(16, strlen(Encryption::generateIV('AES-128-CBC')));
}
public function testGenerateUniqueCodeIsStable15Chars() {
$code = Encryption::generateUniqueCode('pass');
$this->assertSame(15, strlen($code));
$this->assertSame($code, Encryption::generateUniqueCode('pass'));
$this->assertNotSame($code, Encryption::generateUniqueCode('other'));
}
}