Merge "Properly get timestamp position in DiscussionParser"

This commit is contained in:
jenkins-bot 2014-01-30 07:42:53 +00:00 committed by Gerrit Code Review
commit 17ae89ae0a
2 changed files with 10 additions and 9 deletions

View file

@ -582,7 +582,7 @@ abstract class EchoDiscussionParser {
return false; return false;
} }
return $tsMatches[0][0]; return $tsMatches[0][1];
} }
/** /**
@ -627,13 +627,8 @@ abstract class EchoDiscussionParser {
foreach ( $lines as $line ) { foreach ( $lines as $line ) {
++$lineNumber; ++$lineNumber;
$tsMatches = array(); $timestampPos = self::getTimestampPosition( $line );
if ( !preg_match( if ( !$timestampPos ) {
"/$timestampRegex$endOfLine/mu",
$line,
$tsMatches,
PREG_OFFSET_CAPTURE
) ) {
// Ignore lines that don't finish with a timestamp // Ignore lines that don't finish with a timestamp
// print "I\tNo timestamp\n"; // print "I\tNo timestamp\n";
// print "$line\n"; // print "$line\n";
@ -642,7 +637,7 @@ abstract class EchoDiscussionParser {
// Now that we know we have a timestamp, look for // Now that we know we have a timestamp, look for
// the last user link on the line. // the last user link on the line.
$userData = self::getUserFromLine( $line, $tsMatches[0][0] ); $userData = self::getUserFromLine( $line, $timestampPos );
if ( $userData === false ) { if ( $userData === false ) {
// print "F\t$lineNumber\t$line\n"; // print "F\t$lineNumber\t$line\n";
continue; continue;

View file

@ -46,6 +46,12 @@ TEXT
$this->assertEquals( 1, $match ); $this->assertEquals( 1, $match );
} }
public function testGetTimestampPosition() {
$line = 'Hello World. '. self::getExemplarTimestamp();
$pos = EchoDiscussionParser::getTimestampPosition( $line );
$this->assertEquals( 13, $pos );
}
/** /**
* @dataProvider signingDetectionData * @dataProvider signingDetectionData
* FIXME some of the app logic is in the test... * FIXME some of the app logic is in the test...