Example #1
0
 public function testApiSearch_FindsProperIndex_WhenReverseIsPassed()
 {
     $search = substr($this->initialString, 0, 3);
     $this->buffer->push($this->initialString);
     $index = $this->buffer->search($search, true);
     $this->assertSame(strlen($this->initialString), $index);
 }
Example #2
0
 /**
  * @override
  */
 public function readResponse(BufferInterface $buffer, $data)
 {
     $buffer->push($data);
     if (($position = $buffer->search(self::HTTP_EOM)) === false) {
         if ($buffer->length() > $this->maxStartLineLength) {
             throw new IoReadException(sprintf('Message start line exceeded maximum size of %d bytes.', $this->maxStartLineLength));
         }
         return null;
     }
     try {
         $response = $this->parser->parseResponse($buffer->drain());
     } catch (Error $ex) {
         throw new InvalidFormatException('Could not parse start line.');
     } catch (Exception $ex) {
         throw new InvalidFormatException('Could not parse start line.');
     }
     return $response;
 }