easyswoole/http-client

php stander lib

Maintainers

👁 kiss291323003

Package info

github.com/easy-swoole/http-client

Homepage

pkg:composer/easyswoole/http-client

Statistics

Installs: 98 823

Dependents: 39

Suggesters: 0

Stars: 6

Open Issues: 2

1.6.1 2023-03-07 03:00 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Apache-2.0 438b59a196e2cd62a2cb8ea88f137e14482631c0

  • YF <291323003.woop@qq.com>

frameworkasyncswooleeasyswoole


README

安装

composer require easyswoole/http-client

单元测试

./vendor/bin/co-phpunit tests/

示例代码

namespace EasySwoole\HttpClient\Test;


use EasySwoole\HttpClient\HttpClient;
use PHPUnit\Framework\TestCase;

class Test extends TestCase
{
 /*
 * url内容请看 tests/index.php
 */
 private $url = 'http://docker.local.com/index.php?arg1=1&arg2=2';

 function testGet()
 {
 $client = new HttpClient($this->url);
 $response = $client->get();
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("GET",$json['REQUEST_METHOD']);
 $this->assertEquals([],$json['POST']);
 $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
 }

 function testOptions()
 {
 $client = new HttpClient($this->url);
 $response = $client->options(['op'=>'op1'],['head'=>'head']);
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("OPTIONS",$json['REQUEST_METHOD']);
 $this->assertEquals("head",$json['HEADER']['head']);
 }

 function testPost()
 {
 $client = new HttpClient($this->url);
 $response = $client->post([
 'post1'=>'post1'
 ]);
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("POST",$json['REQUEST_METHOD']);
 $this->assertEquals([ 'post1'=>'post1'],$json['POST']);
 $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
 }

 function testPostString()
 {
 $client = new HttpClient($this->url);
 $response = $client->post('postStr');
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("POST",$json['REQUEST_METHOD']);
 $this->assertEquals([],$json['POST']);
 $this->assertEquals('postStr',$json['RAW']);
 }

 function testPostJson()
 {
 $client = new HttpClient($this->url);
 $response = $client->postJson(json_encode(['json'=>'json1']));
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("POST",$json['REQUEST_METHOD']);
 $this->assertEquals([],$json['POST']);
 $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
 $raw = $json["RAW"];
 $raw = json_decode($raw,true);
 $this->assertEquals(['json'=>'json1'],$raw);
 }

 function testPostFile()
 {
 $client = new HttpClient($this->url);
 $response = $client->post([
 'post1'=>'post1',
 'file'=> new \CURLFile(__FILE__)
 ]);
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("POST",$json['REQUEST_METHOD']);
 $this->assertEquals([ 'post1'=>'post1'],$json['POST']);
 $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
 $this->assertEquals('Test.php',$json['FILE']['file']['name']);
 }

 function testCookies()
 {
 $client = new HttpClient($this->url);
 $client->addCookies([
 'cookie1'=>'cook'
 ]);
 $response = $client->get(['head'=>'head']);
 $json = json_decode($response->getBody(),true);
 $this->assertEquals("GET",$json['REQUEST_METHOD']);
 $this->assertEquals("head",$json['HEADER']['head']);
 $this->assertEquals("cook",$json['COOKIE']['cookie1']);
 }

 function testPostXml()
 {
 $client = new HttpClient($this->url);
 $response = $client->postXml('<xml></xml>');
 $json = json_decode($response->getBody(),true);
 $this->assertEquals('<xml></xml>',$json['RAW']);
 }
}

支持方法

  • __construct
  • setUrl
  • setEnableSSL
  • setTimeout
  • setConnectTimeout
  • setKeepAlive
  • setSslVerifyPeer
  • setSslHostName
  • setSslCafile
  • setSslCapath
  • setSslCertFile
  • setSslKeyFile
  • setProxyHttp
  • setProxySocks5
  • setSocketBind
  • setClientSetting
  • setClientSettings
  • getClient
  • setMethod
  • setXMLHttpRequest
  • setContentTypeJson
  • setContentTypeXml
  • setContentTypeFormData
  • setContentTypeFormUrlencoded
  • setContentType
  • get
  • head
  • trace
  • delete
  • put
  • post
  • patch
  • options
  • postXml
  • postJson
  • download
  • setHeaders
  • setHeader
  • addCookies
  • addCookie
  • upgrade
  • push
  • recv
  • __destruct