This time I will bring you the implementation of the phpunit interface automated testing function. What are theprecautionsfor the implementation of the phpunit interface automated testing function. The following is a practical case, let's take a look.
I came into contact with phpunit by chance at the beginning of the year, an open source software developed with PHPprogramming language, and also aunit testingframework. If used effectively, the interface can be greatly improved. Traversal efficiency. Not much nonsense, let’s get straight to the point.
1.Install
In the directory of php
pear channel-discover pear; pear install phpunit/PHPUnit
2.Configuration
First create aconfiguration file stored in the lib folder, then create a new transfer.php file
Copy after login
Finally create a basetest.php file
Copy after login
The interface test environment is now set up.
3. Write test cases
assertEquals($obj['retval'], $expect); return $obj; } private function call_https($path, $param, $expect = 'ok') { $_param = build_get_param($param); $url = HTTPSPREFIX . "$path?" . $_param; $buf = do_Get($url); $obj = json_decode($buf, True); $this->assertEquals($obj['retval'], $expect); return $obj; } public function testLogin(){ $param = array( 'type' => 'phone' ,'token' => PHONE ,'password' => PWD ); $url = 'login'; return $this->call_http($url, $param); } /** * @depends testLogin */ public function testInfo(array $user){ $session = $user['retinfo']['session']; $param = array( 'session' => $session ); $url ='info'; return $this->call_http($url, $param); }
If it is a post request
public function testPost(){ $session = $user['retinfo']['sessionid']; $param = array( ,'data' => '111' ); $url = POSTURL.'posturl'; return do_POST($url,$param); }
I believe you have read it You have mastered the method in the case of this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
ThinkPHP implements WeChat payment (jsapi payment) process tutorial detailed explanation_php example
PHP’s WeChat refund application
The above is the detailed content of Implementation of automated testing function of phpunit interface. For more information, please follow other related articles on the PHP Chinese website!