307 $this->assertSame( $expect[
'text'], $actual->text,
"text $from" );
308 $this->assertInstanceOf( get_class( $expect[
'message'] ), $actual->message,
309 "message class $from" );
310 $this->assertSame( $expect[
'message']->getKeysToTry(), $actual->message->getKeysToTry(),
311 "message keys $from" );
312 $this->assertEquals( $expect[
'message']->
text(), $actual->message->text(),
313 "message rendering $from" );
314 $this->assertEquals( $expect[
'data'], $actual->data,
"data $from" );
329 'text' => $expect[
'text'],
330 'message' =>
new RawMessage(
'$1', [ $expect[
'text'] ] ),
341 foreach ( $stages as $writeStage => $readRange ) {
342 if ( $key ===
'ipb_reason' ) {
343 $extraFields[
'ipb_address'] = __CLASS__ .
"#$writeStage";
346 $wstore = $this->
makeStore( $writeStage, $key );
347 $usesTemp = $key ===
'rev_comment';
350 list( $fields, $callback ) = $wstore->insertWithTempTable( $this->db, $comment, $data );
352 $fields = $wstore->insert( $this->db, $comment, $data );
356 $this->assertSame( $expect[
'text'], $fields[$key],
"old field, stage=$writeStage" );
358 $this->assertArrayNotHasKey( $key, $fields,
"old field, stage=$writeStage" );
361 $this->assertArrayHasKey(
"{$key}_id", $fields,
"new field, stage=$writeStage" );
363 $this->assertArrayNotHasKey(
"{$key}_id", $fields,
"new field, stage=$writeStage" );
366 $this->db->insert( $table, $extraFields + $fields, __METHOD__ );
367 $id = $this->db->insertId();
372 for ( $readStage = $readRange[0]; $readStage <= $readRange[1]; $readStage++ ) {
373 $rstore = $this->
makeStore( $readStage, $key );
375 $fieldRow = $this->db->selectRow(
377 $rstore->getFields(),
382 $queryInfo = $rstore->getJoin();
383 $joinRow = $this->db->selectRow(
384 [ $table ] + $queryInfo[
'tables'],
385 $queryInfo[
'fields'],
394 $rstore->getCommentLegacy( $this->db, $fieldRow ),
395 "w=$writeStage, r=$readStage, from getFields()"
399 $rstore->getComment( $joinRow ),
400 "w=$writeStage, r=$readStage, from getJoin()"
409 $msgComment =
new Message(
'parentheses', [
'message comment' ] );
410 $textCommentMsg =
new RawMessage(
'$1', [
'text comment' ] );
411 $nestedMsgComment =
new Message( [
'parentheses',
'rawmessage' ], [
new Message(
'mainpage' ) ] );
413 'ipb_range_start' =>
'',
414 'ipb_range_end' =>
'',
424 'rev_user_text' =>
'',
428 null,
'comment store comment',
null, [
'foo' =>
'bar' ]
432 'Simple table, text comment' => [
433 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields,
'text comment',
null, [
434 'text' =>
'text comment',
435 'message' => $textCommentMsg,
439 'Simple table, text comment with data' => [
440 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields,
'text comment', [
'message' => 42 ], [
441 'text' =>
'text comment',
442 'message' => $textCommentMsg,
443 'data' => [
'message' => 42 ],
446 'Simple table, message comment' => [
447 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields, $msgComment,
null, [
448 'text' =>
'(message comment)',
449 'message' => $msgComment,
453 'Simple table, message comment with data' => [
454 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields, $msgComment, [
'message' => 42 ], [
455 'text' =>
'(message comment)',
456 'message' => $msgComment,
457 'data' => [
'message' => 42 ],
460 'Simple table, nested message comment' => [
461 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields, $nestedMsgComment,
null, [
462 'text' =>
'(Main Page)',
463 'message' => $nestedMsgComment,
467 'Simple table, CommentStoreComment' => [
468 'ipblocks',
'ipb_reason',
'ipb_id', $ipbfields, clone $comStoreComment, [
'baz' =>
'baz' ], [
469 'text' =>
'comment store comment',
470 'message' => $comStoreComment->message,
471 'data' => [
'foo' =>
'bar' ],
475 'Revision, text comment' => [
476 'revision',
'rev_comment',
'rev_id', $revfields,
'text comment',
null, [
477 'text' =>
'text comment',
478 'message' => $textCommentMsg,
482 'Revision, text comment with data' => [
483 'revision',
'rev_comment',
'rev_id', $revfields,
'text comment', [
'message' => 42 ], [
484 'text' =>
'text comment',
485 'message' => $textCommentMsg,
486 'data' => [
'message' => 42 ],
489 'Revision, message comment' => [
490 'revision',
'rev_comment',
'rev_id', $revfields, $msgComment,
null, [
491 'text' =>
'(message comment)',
492 'message' => $msgComment,
496 'Revision, message comment with data' => [
497 'revision',
'rev_comment',
'rev_id', $revfields, $msgComment, [
'message' => 42 ], [
498 'text' =>
'(message comment)',
499 'message' => $msgComment,
500 'data' => [
'message' => 42 ],
503 'Revision, nested message comment' => [
504 'revision',
'rev_comment',
'rev_id', $revfields, $nestedMsgComment,
null, [
505 'text' =>
'(Main Page)',
506 'message' => $nestedMsgComment,
510 'Revision, CommentStoreComment' => [
511 'revision',
'rev_comment',
'rev_id', $revfields, clone $comStoreComment, [
'baz' =>
'baz' ], [
512 'text' =>
'comment store comment',
513 'message' => $comStoreComment->message,
514 'data' => [
'foo' =>
'bar' ],
521 MediaWiki\suppressWarnings();
522 $reset =
new ScopedCallback(
'MediaWiki\restoreWarnings' );
525 $res = $store->getComment( [
'dummy' =>
'comment' ] );
526 $this->assertSame(
'',
$res->text );
527 $res = $store->getComment( [
'dummy' =>
'comment' ],
true );
528 $this->assertSame(
'comment',
$res->text );
532 $store->getComment( [
'dummy' =>
'comment' ] );
533 $this->fail(
'Expected exception not thrown' );
534 }
catch ( InvalidArgumentException $ex ) {
535 $this->assertSame(
'$row does not contain fields needed for comment dummy', $ex->getMessage() );
537 $res = $store->getComment( [
'dummy' =>
'comment' ],
true );
538 $this->assertSame(
'comment',
$res->text );
540 $store->getComment( [
'dummy_id' => 1 ] );
541 $this->fail(
'Expected exception not thrown' );
542 }
catch ( InvalidArgumentException $ex ) {
544 '$row does not contain fields needed for comment dummy and getComment(), '
545 .
'but does have fields for getCommentLegacy()',
552 $store->getComment( [
'rev_comment' =>
'comment' ] );
553 $this->fail(
'Expected exception not thrown' );
554 }
catch ( InvalidArgumentException $ex ) {
556 '$row does not contain fields needed for comment rev_comment', $ex->getMessage()
559 $res = $store->getComment( [
'rev_comment' =>
'comment' ],
true );
560 $this->assertSame(
'comment',
$res->text );
562 $store->getComment( [
'rev_comment_pk' => 1 ] );
563 $this->fail(
'Expected exception not thrown' );
564 }
catch ( InvalidArgumentException $ex ) {
566 '$row does not contain fields needed for comment rev_comment and getComment(), '
567 .
'but does have fields for getCommentLegacy()',
619 $comment = str_repeat(
'💣', 16400 );
620 $truncated1 = str_repeat(
'💣', 63 ) .
'...';
624 $fields = $store->insert( $this->db, $comment );
625 $this->assertSame( $truncated1, $fields[
'ipb_reason'] );
626 $stored = $this->db->selectField(
627 'comment',
'comment_text', [
'comment_id' => $fields[
'ipb_reason_id'] ], __METHOD__
629 $this->assertSame( $truncated2, $stored );