ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
DataSizeTest Class Reference

Testing the DataSize object. More...

+ Inheritance diagram for DataSizeTest:
+ Collaboration diagram for DataSizeTest:

Public Member Functions

 testDifferentDataSizes (int $bytes, string $expected_representation)
 
 test_normal ($a, $b, $expected, $expected_in_bytes)
 
 test_division_by_zero ()
 

Static Public Member Functions

static provideDataSizes ()
 
static tDataProvider ()
 

Detailed Description

Member Function Documentation

◆ provideDataSizes()

static DataSizeTest::provideDataSizes ( )
static

Definition at line 33 of file DataSizeTest.php.

33 : array
34 {
35 return [
36 [1000, '1000 B'],
37 [1001, '1 KB'],
38 [1023, '1.02 KB'],
39 [1024, '1.02 KB'],
40 [1025, '1.03 KB'],
41 [10000, '10 KB'],
42 [11000, '11 KB'],
43 [28_566_695, '28.57 MB'],
44 [48_521_625, '48.52 MB'],
45 [58_777_412_654, '58.78 GB'],
46 [46_546_544_654_545, '46.55 TB'],
47 [125_862_151_563_255_622, '125862.15 TB'],
48 ];
49 }

◆ tDataProvider()

static DataSizeTest::tDataProvider ( )
static

Definition at line 81 of file DataSizeTest.php.

81 : array
82 {
83 return [
84 [122, 1000, "122 B", 122],
85 [-122, 1000, "-122 B", -122],
86 [122, 1000000, "122 B", 122],
87 [-122, 1000000, "-122 B", -122],
88 [122, 1000000000, "122 B", 122],
89 [-122, 1000000000, "-122 B", -122],
90 [122, 1000000000000, "122 B", null], // There is a float rounding error here
91 [-122, 1000000000000, "-122 B", null], // There is a float rounding error here
92 [122, 1024, "122 B", 122],
93 [-122, 1024, "-122 B", -122],
94 [122, 1048576, "122 B", 122],
95 [-122, 1048576, "-122 B", -122],
96 [122, 1073741824, "122 B", 122],
97 [-122, 1073741824, "-122 B", -122],
98 [122, 1099511627776, "122 B", 122],
99 [-122, 1099511627776, "-122 B", -122],
100 [10 * DataSize::KiB, DataSize::KiB, "10.24 KB", 10 * DataSize::KiB],
101 ];
102 }

◆ test_division_by_zero()

DataSizeTest::test_division_by_zero ( )

Definition at line 71 of file DataSizeTest.php.

71 : void
72 {
73 try {
74 $ds = new DataSize(4533, 0);
75 $this->assertFalse("This should not happen");
76 } catch (Exception | DivisionByZeroError $e) {
77 $this->assertTrue(true);
78 }
79 }
This class provides the data size with additional information to remove the work to calculate the siz...
Definition: DataSize.php:31

References Vendor\Package\$e.

◆ test_normal()

DataSizeTest::test_normal (   $a,
  $b,
  $expected,
  $expected_in_bytes 
)

Definition at line 60 of file DataSizeTest.php.

60 : void
61 {
62 $ds = new DataSize($a, $b);
63 $this->assertEquals($a / $b, $ds->getSize());
64 $this->assertEquals($b, $ds->getUnit());
65 $this->assertEquals($expected, $ds->__toString());
66 if ($expected_in_bytes) {
67 $this->assertEquals($expected_in_bytes, (int) $ds->inBytes());
68 }
69 }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples

References Vendor\Package\$a, and Vendor\Package\$b.

◆ testDifferentDataSizes()

DataSizeTest::testDifferentDataSizes ( int  $bytes,
string  $expected_representation 
)

Definition at line 52 of file DataSizeTest.php.

52 : void
53 {
54 $datasize = new DataSize($bytes, DataSize::Byte);
55
56 $this->assertEquals($expected_representation, $datasize->__toString());
57 }

The documentation for this class was generated from the following file: