コード例 #1
0
 /**
  * @dataProvider parseProvider
  */
 public function testParseStub($pattern, $value, $expected, $errorCode = 0, $errorMessage = 'U_ZERO_ERROR')
 {
     $formatter = $this->createStubFormatter($pattern);
     $this->assertSame($expected, $formatter->parse($value));
     $this->assertSame($errorMessage, StubIntl::getErrorMessage());
     $this->assertSame($errorCode, StubIntl::getErrorCode());
     $this->assertSame($errorCode != 0, StubIntl::isFailure(StubIntl::getErrorCode()));
 }
コード例 #2
0
ファイル: functions.php プロジェクト: n3b/symfony
/**
 * Stub implementation for the intl_get_error_code function of the intl extension
 *
 * @author Bernhard Schussek <*****@*****.**>
 * @return Boolean The error code of the last intl function call or
 *                 StubIntl::U_ZERO_ERROR if no error occurred
 * @see    Symfony\Component\Locale\Stub\StubIntl::getErrorCode
 */
function intl_get_error_code()
{
    return StubIntl::getErrorCode();
}
コード例 #3
0
 /**
  * Set the error to the default U_ZERO_ERROR
  */
 protected function resetError()
 {
     StubIntl::setError(StubIntl::U_ZERO_ERROR);
     $this->errorCode = StubIntl::getErrorCode();
     $this->errorMessage = StubIntl::getErrorMessage();
 }
コード例 #4
0
 /**
  * @dataProvider parseProvider
  */
 public function testParseStub($value, $expected, $message = '')
 {
     $formatter = $this->getStubFormatterWithDecimalStyle();
     $parsedValue = $formatter->parse($value, StubNumberFormatter::TYPE_DOUBLE);
     $this->assertSame($expected, $parsedValue, $message);
     if ($expected === false) {
         $errorCode = StubIntl::U_PARSE_ERROR;
         $errorMessage = 'Number parsing failed: U_PARSE_ERROR';
     } else {
         $errorCode = StubIntl::U_ZERO_ERROR;
         $errorMessage = 'U_ZERO_ERROR';
     }
     $this->assertSame($errorMessage, StubIntl::getErrorMessage());
     $this->assertSame($errorCode, StubIntl::getErrorCode());
     $this->assertSame($errorCode !== 0, StubIntl::isFailure(StubIntl::getErrorCode()));
     $this->assertSame($errorMessage, $formatter->getErrorMessage());
     $this->assertSame($errorCode, $formatter->getErrorCode());
     $this->assertSame($errorCode !== 0, StubIntl::isFailure($formatter->getErrorCode()));
 }
コード例 #5
0
 /**
  * Parse string to a timestamp value
  *
  * @param string $value    String to convert to a time value
  * @param int    $position Position at which to start the parsing in $value (zero-based).
  *                              If no error occurs before $value is consumed, $parse_pos will
  *                              contain -1 otherwise it will contain the position at which parsing
  *                              ended. If $parse_pos > strlen($value), the parse fails immediately.
  *
  * @return string               Parsed value as a timestamp
  *
  * @see    http://www.php.net/manual/en/intldateformatter.parse.php
  *
  * @throws MethodArgumentNotImplementedException  When $position different than null, behavior not implemented
  */
 public function parse($value, &$position = null)
 {
     // We don't calculate the position when parsing the value
     if (null !== $position) {
         throw new MethodArgumentNotImplementedException(__METHOD__, 'position');
     }
     $dateTime = $this->createDateTime(0);
     $transformer = new FullTransformer($this->getPattern(), $this->getTimeZoneId());
     $timestamp = $transformer->parse($dateTime, $value);
     // behave like the intl extension. FullTransformer::parse() set the proper error
     $this->errorCode = StubIntl::getErrorCode();
     $this->errorMessage = StubIntl::getErrorMessage();
     return $timestamp;
 }
 /**
  * @dataProvider parseErrorProvider
  */
 public function testParseErrorStub($pattern, $value)
 {
     $errorCode = StubIntl::U_PARSE_ERROR;
     $errorMessage = 'Date parsing failed: U_PARSE_ERROR';
     $formatter = $this->createStubFormatter($pattern);
     $this->assertFalse($formatter->parse($value));
     $this->assertSame($errorMessage, StubIntl::getErrorMessage());
     $this->assertSame($errorCode, StubIntl::getErrorCode());
     $this->assertTrue(StubIntl::isFailure(StubIntl::getErrorCode()));
     $this->assertSame($errorMessage, $formatter->getErrorMessage());
     $this->assertSame($errorCode, $formatter->getErrorCode());
     $this->assertTrue(StubIntl::isFailure($formatter->getErrorCode()));
 }
コード例 #7
0
ファイル: functions.php プロジェクト: rfc1483/blog
/**
 * Stub implementation for the intl_get_error_code function of the intl extension
 *
 * @author Bernhard Schussek <*****@*****.**>
 * @return Boolean The error code of the last intl function call or
 *                 StubIntl::U_ZERO_ERROR if no error occurred
 * @see    Symfony\Component\Locale\Stub\StubIntl::getErrorCode
 */
function intl_get_error_code()
{
    return \Symfony\Component\Locale\Stub\StubIntl::getErrorCode();
}