lithium\tests\cases\net\http\ServiceTest::testPost PHP Method

testPost() public method

public testPost ( )
    public function testPost()
    {
        $http = new Service($this->_testConfig);
        $http->post('update.xml', array('status' => 'cool'));
        $expected = join("\r\n", array('POST /update.xml HTTP/1.1', 'Host: localhost:80', 'Connection: Close', 'User-Agent: Mozilla/5.0', 'Content-Type: application/x-www-form-urlencoded', 'Content-Length: 11', '', 'status=cool'));
        $result = (string) $http->last->request;
        $this->assertEqual($expected, $result);
        $expected = join("\r\n", array('HTTP/1.1 200 OK', 'Host: localhost:80', 'Connection: Close', 'User-Agent: Mozilla/5.0', 'Content-Type: application/x-www-form-urlencoded;charset=UTF-8', 'Content-Length: 11', '', 'status=cool'));
        $result = (string) $http->last->response;
        $this->assertEqual($expected, $result);
    }