5 use MediaWikiCoversValidator;
24 $this->assertEquals(
true, ctype_digit( $id ),
"UID made of digit characters" );
25 $this->assertLessThanOrEqual( $digitlen, strlen( $id ),
26 "UID has the right number of digits" );
27 $this->assertLessThanOrEqual( $bits, strlen(
Wikimedia\base_convert( $id, 10, 2 ) ),
28 "UID has the right number of bits" );
31 for ( $i = 0; $i < 300; $i++ ) {
35 $lastId = array_shift( $ids );
37 $this->assertSame( array_unique( $ids ), $ids,
"All generated IDs are unique." );
39 foreach ( $ids
as $id ) {
42 $id_bin = Wikimedia\base_convert( $id, 10, 2, $bits );
43 $lastId_bin = Wikimedia\base_convert( $lastId, 10, 2, $bits );
45 $timestamp_bin = substr( $id_bin, 0, $tbits );
46 $last_timestamp_bin = substr( $lastId_bin, 0, $tbits );
48 $this->assertGreaterThanOrEqual(
51 "timestamp ($timestamp_bin) of current ID ($id_bin) >= timestamp ($last_timestamp_bin) " .
52 "of prior one ($lastId_bin)" );
54 $hostbits_bin = substr( $id_bin, -$hostbits );
55 $last_hostbits_bin = substr( $lastId_bin, -$hostbits );
61 "Host ID ($hostbits_bin) of current ID ($id_bin) is same as host ID ($last_hostbits_bin) " .
62 "of prior one ($lastId_bin)." );
75 [
'newTimestampedUID128', 39, 128, 46, 48 ],
76 [
'newTimestampedUID128', 39, 128, 46, 48 ],
77 [
'newTimestampedUID88', 27, 88, 46, 32 ],
87 for ( $i = 0; $i < 100; $i++ ) {
89 $this->assertEquals(
true,
90 preg_match(
'!^[0-9a-f]{8}-[0-9a-f]{4}-1[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$!', $id ),
91 "UID $id has the right format" );
95 $this->assertEquals(
true,
96 preg_match(
'!^[0-9a-f]{12}1[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ),
97 "UID $id has the right format" );
100 $this->assertEquals(
true,
101 preg_match(
'!^[0-9a-f]{12}1[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ),
102 "UID $id has the right format" );
105 $this->assertEquals( array_unique( $ids ), $ids,
"All generated IDs are unique." );
113 for ( $i = 0; $i < 100; $i++ ) {
116 $this->assertEquals(
true,
117 preg_match(
'!^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$!', $id ),
118 "UID $id has the right format" );
121 $this->assertEquals( array_unique( $ids ), $ids,
'All generated IDs are unique.' );
128 for ( $i = 0; $i < 100; $i++ ) {
130 $this->assertEquals(
true,
131 preg_match(
'!^[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ),
132 "UID $id has the right format" );
140 for ( $i = 0; $i < 100; $i++ ) {
142 $this->assertEquals(
true,
143 preg_match(
'!^[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ),
144 "UID $id has the right format" );
155 $this->assertInternalType(
'float', $id1,
"ID returned as float" );
156 $this->assertInternalType(
'float', $id2,
"ID returned as float" );
157 $this->assertGreaterThan( 0, $id1,
"ID greater than 1" );
158 $this->assertGreaterThan( $id1, $id2,
"IDs increasing in value" );
168 foreach ( $ids
as $id ) {
169 $this->assertInternalType(
'float', $id,
"ID returned as float" );
170 $this->assertGreaterThan( 0, $id,
"ID greater than 1" );
172 $this->assertGreaterThan( $lastId, $id,
"IDs increasing in value" );