Пример #1
0
 /**
  * Apply POST fields and files to a request to attempt to give an accurate
  * representation.
  *
  * @param puzzle_message_RequestInterface $request Request to update
  * @param array            $body    Body to apply
  */
 protected function addPostData(puzzle_message_RequestInterface $request, array $body)
 {
     static $fields = array('string' => true, 'array' => true, 'NULL' => true, 'boolean' => true, 'double' => true, 'integer' => true);
     $post = new puzzle_post_PostBody();
     foreach ($body as $key => $value) {
         if (isset($fields[gettype($value)])) {
             $post->setField($key, $value);
         } elseif ($value instanceof puzzle_post_PostFileInterface) {
             $post->addFile($value);
         } else {
             $post->addFile(new puzzle_post_PostFile($key, $value));
         }
     }
     if ($request->getHeader('Content-Type') == 'multipart/form-data') {
         $post->forceMultipartUpload(true);
     }
     $request->setBody($post);
 }
Пример #2
0
 public function testCreatesMultipartUploadWithMultiFields()
 {
     $b = new puzzle_post_PostBody();
     $b->setField('testing', array('baz', 'bar'));
     $b->setField('other', 'hi');
     $b->setField('third', 'there');
     $b->addFile(new puzzle_post_PostFile('foo', fopen(__FILE__, 'r')));
     $s = (string) $b;
     $this->assertContains(file_get_contents(__FILE__), $s);
     $this->assertContains('testing=bar', $s);
     $this->assertContains('Content-Disposition: form-data; name="third"', $s);
     $this->assertContains('Content-Disposition: form-data; name="other"', $s);
 }