Пример #1
0
 /**
  * Creates the first line of the request body - it contains the
  * authentication credentials.
  *
  * @return string
  */
 protected function getLoginLine()
 {
     $csvGenerator = new SimpleGenerator();
     return $csvGenerator->generate(['LOGIN', $this->user, $this->password]);
 }
Пример #2
0
 /**
  * Tests if CSV generation works in a special case: text contains a
  * backslash followed by a double quote. There exists a PHP bug where
  * fputcsv() creates an invalid CSV string in this case.
  *
  * @see https://bugs.php.net/bug.php?id=43225
  */
 public function testGenerateCsvWithSpecialCharactersWorksAsExpected()
 {
     $data = array('CMXINV', '-1001338', 'Some string data here: "quoted text // highlight string \\\\" and "foo" bar', 'baz');
     $expected = 'CMXINV;-1001338;"Some string data here: ""quoted text // highlight string \\\\"" and ""foo"" bar";baz' . PHP_EOL;
     $this->assertEquals($expected, $this->generator->generate($data));
 }