6 use InvalidArgumentException;
32 $title->resetArticleID( 17 );
44 'ar_page_id' => strval(
$title->getArticleID() ),
45 'ar_timestamp' =>
'20200101000000',
48 'ar_parent_id' =>
'5',
49 'ar_len' => $slots->computeSize(),
50 'ar_sha1' => $slots->computeSha1(),
53 foreach ( $rowOverrides
as $field =>
$value ) {
54 $field = preg_replace(
'/^rev_/',
'ar_', $field );
63 $title->resetArticleID( 17 );
75 'ar_page_id' => strval(
$title->getArticleID() ),
76 'ar_timestamp' =>
'20200101000000',
79 'ar_parent_id' =>
'5',
80 'ar_len' => $slots->computeSize(),
81 'ar_sha1' => $slots->computeSha1(),
95 $row[
'ar_minor_edit'] =
'1';
98 yield
'minor deleted' => [
107 unset( $row[
'ar_parent'] );
109 yield
'no parent' => [
118 $row[
'ar_len'] =
null;
119 $row[
'ar_sha1'] =
'';
121 yield
'ar_len is null, ar_sha1 is ""' => [
130 yield
'no length, no hash' => [
159 $this->assertSame(
$title, $rec->getPageAsLinkTarget(),
'getPageAsLinkTarget' );
161 $this->assertSame( $comment, $rec->getComment(),
'getComment' );
163 $this->assertSame( $slots->
getSlotRoles(), $rec->getSlotRoles(),
'getSlotRoles' );
164 $this->assertSame( $wikiId, $rec->getWikiId(),
'getWikiId' );
166 $this->assertSame( (
int)$row->ar_id, $rec->getArchiveId(),
'getArchiveId' );
167 $this->assertSame( (
int)$row->ar_rev_id, $rec->getId(),
'getId' );
168 $this->assertSame( (
int)$row->ar_page_id, $rec->getPageId(),
'getId' );
169 $this->assertSame( $row->ar_timestamp, $rec->getTimestamp(),
'getTimestamp' );
170 $this->assertSame( (
int)$row->ar_deleted, $rec->getVisibility(),
'getVisibility' );
171 $this->assertSame( (
bool)$row->ar_minor_edit, $rec->isMinor(),
'getIsMinor' );
173 if ( isset( $row->ar_parent_id ) ) {
174 $this->assertSame( (
int)$row->ar_parent_id, $rec->getParentId(),
'getParentId' );
176 $this->assertSame( 0, $rec->getParentId(),
'getParentId' );
179 if ( isset( $row->ar_len ) ) {
180 $this->assertSame( (
int)$row->ar_len, $rec->getSize(),
'getSize' );
182 $this->assertSame( $slots->
computeSize(), $rec->getSize(),
'getSize' );
185 if ( !empty( $row->ar_sha1 ) ) {
186 $this->assertSame( $row->ar_sha1, $rec->getSha1(),
'getSha1' );
188 $this->assertSame( $slots->
computeSha1(), $rec->getSha1(),
'getSha1' );
194 $title->resetArticleID( 17 );
207 'ar_page_id' => strval(
$title->getArticleID() ),
208 'ar_timestamp' =>
'20200101000000',
210 'ar_minor_edit' => 0,
211 'ar_parent_id' =>
'5',
212 'ar_len' => $slots->computeSize(),
213 'ar_sha1' => $slots->computeSha1(),
216 yield
'not a row' => [
226 $row[
'ar_timestamp'] =
'kittens';
228 yield
'bad timestamp' => [
238 yield
'bad wiki' => [