mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test;
|
|
|
|
class LargeFileHelperTest extends TestCase {
|
|
protected $helper;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
$this->helper = new \OC\LargeFileHelper;
|
|
}
|
|
|
|
public function testFormatUnsignedIntegerFloat() {
|
|
$this->assertSame(
|
|
'9007199254740992',
|
|
$this->helper->formatUnsignedInteger((float) 9007199254740992)
|
|
);
|
|
}
|
|
|
|
public function testFormatUnsignedIntegerInt() {
|
|
$this->assertSame(
|
|
PHP_INT_SIZE === 4 ? '4294967295' : '18446744073709551615',
|
|
$this->helper->formatUnsignedInteger(-1)
|
|
);
|
|
}
|
|
|
|
public function testFormatUnsignedIntegerString() {
|
|
$this->assertSame(
|
|
'9007199254740993',
|
|
$this->helper->formatUnsignedInteger('9007199254740993')
|
|
);
|
|
}
|
|
|
|
|
|
public function testFormatUnsignedIntegerStringException() {
|
|
$this->expectException(\UnexpectedValueException::class);
|
|
|
|
$this->helper->formatUnsignedInteger('900ABCD254740993');
|
|
}
|
|
}
|