Download the PHP package jdgrimes/wp-http-testcase without Composer

On this page you can find all versions of the php package jdgrimes/wp-http-testcase. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-http-testcase

WP HTTP Testcase

PHPUnit testcase for testing code that uses WordPress's WP_Http class.

If you use wp_remote_request() or other wrappers for WP_Http methods in your code, this makes it difficult to test, especially if the remote server may not be reachable from your testing environment. This testcase solves this by letting you route your requests to a different host address, use a cached set of responses, or just mock the remote responses by supplying artificial ones.

Installation

You can install this package using composer:

Usage

To use it in your code, you need to first include the wp-http-testcase.php file in your PHPUnit bootstrap file. (Or, to take advantage of Composer's autoloading, you can just include vendor/autoload.php.)

Then, in your tests that involve WP_Http, you need to extend WP_HTTP_TestCase instead of WP_UnitTestCase as you normally would.

Mocking Responses

Using Response Caching

The best way of testing, when possible, it to set up a mock host to handle the requests. In some cases, you may want or need to actually send the requests through to the real server, and that can be done as well. Which of these you do will depend on the nature of the requests, and what side-effects they produce on the recipient host.

Setting Up a Test Host

For example, if you are testing a plugin that makes requests to an API provided by another plugin or other software, you probably don't want or need to test this on a live site. Instead, you can set up a test site, or use a local server that is part of your development environment. There you can install the software that handles the requests. Once this is done, you can run your tests against that test site like this:

Just replace localhost with the hostname of the local server. Note that the WP_HTTP_TC_* flags can be defined as PHP constants, or as bash environment variables as above. The latter will take precedence.

Enabling Caching

Of course this will be much slower than most other unit tests, because the requests are bound to take a bit of time. That is where caching comes in. When caching is enabled, the response to each request is cached the first time it is run, and the cached version is used in the future. This means that your tests can remain lightning fast.

To enable caching, just add this to your bootstrap:

You'll probably also want to specify the directory to save the cache in, via WP_HTTP_TC_CACHE_DIR. You can utilize multiple cache groups and switch between them using WP_HTTP_TC_CACHE_GROUP.

Using the Live Host

There is the second case though, where you are unable to set up a test server. An example where this would be the case would be if your plugin makes requests to the API provided by GitHub. Depending on the situation, it may be feasible to actually make the requests to the "live" recipient. The main issue again is that the requests will make the tests take a long time to complete. There is also the possibility that the API isn't always accessible from your testing environment, or that your tests will end up pounding the API too hard and you'll get blocked. This is where caching can help you. You only need to run your tests against the "live" API once in a while, and the rest of the time you can test using the cached responses.

Supplying Artificial Responses

Of course, there may be times when it isn't possible to create a test server, and it isn't feasible to run against the live server either. In this case, you may want to hard-code artificial responses into your tests. Here is how you can do that:

Before calling the code that will invoke the HTTP request, you need to set the function to mock the responses like so:

The HTTP responder function will be passed two arguments, the request arguments and the URL the request was intended for.

For a full list of the $request and response arguments, see WP_Http::request()

Testing Requests

You may also wish to test that your code is making requests as expected. You can do this by checking the value of $this->http_requests, which is an array of requests. Each entry in the array stores the request arguments ('request' key) and URL ('url' key).

To check that a request was made, you could do something like this:

When you just want to test the request and don't care about the response, you can short-circuit the request before it is made, by setting the response mocker to be __return_true():


All versions of wp-http-testcase with dependencies

PHP Build Version
Package Version
Requires php Version >=5.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jdgrimes/wp-http-testcase contains the following files

Loading the files please wait ....