EVOLUTION-MANAGER
Edit File: $httpBackend.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/ngMock/angular-mocks.js?message=docs($httpBackend)%3A%20describe%20your%20change...#L898' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.3.9/src/ngMock/angular-mocks.js#L898' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in"> </i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">$httpBackend</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - service in module <a href="api/ngMock">ngMock</a> </li> </ol> </header> <div class="api-profile-description"> <p>Fake HTTP backend implementation suitable for unit testing applications that use the <a href="api/ng/service/$http">$http service</a>.</p> <p><em>Note</em>: For fake HTTP backend implementation suitable for end-to-end testing or backend-less development please see <a href="api/ngMockE2E/service/$httpBackend">e2e $httpBackend mock</a>.</p> <p>During unit testing, we want our unit tests to run quickly and have no external dependencies so we don’t want to send <a href="https://developer.mozilla.org/en/xmlhttprequest">XHR</a> or <a href="http://en.wikipedia.org/wiki/JSONP">JSONP</a> requests to a real server. All we really need is to verify whether a certain request has been sent or not, or alternatively just let the application make requests, respond with pre-trained responses and assert that the end result is what we expect it to be.</p> <p>This mock implementation can be used to respond with static or dynamic responses via the <code>expect</code> and <code>when</code> apis and their shortcuts (<code>expectGET</code>, <code>whenPOST</code>, etc).</p> <p>When an Angular application needs some data from a server, it calls the $http service, which sends the request to a real server using $httpBackend service. With dependency injection, it is easy to inject $httpBackend mock (which has the same API as $httpBackend) and use it to verify the requests and respond with some testing data without sending a request to a real server.</p> <p>There are two ways to specify what test data should be returned as http responses by the mock backend when the code under test makes http requests:</p> <ul> <li><code>$httpBackend.expect</code> - specifies a request expectation</li> <li><code>$httpBackend.when</code> - specifies a backend definition</li> </ul> <h1 id="request-expectations-vs-backend-definitions">Request Expectations vs Backend Definitions</h1> <p>Request expectations provide a way to make assertions about requests made by the application and to define responses for those requests. The test will fail if the expected requests are not made or they are made in the wrong order.</p> <p>Backend definitions allow you to define a fake backend for your application which doesn't assert if a particular request was made or not, it just returns a trained response if a request is made. The test will pass whether or not the request gets made during testing.</p> <table class="table"> <tr><th width="220px"></th><th>Request expectations</th><th>Backend definitions</th></tr> <tr> <th>Syntax</th> <td>.expect(...).respond(...)</td> <td>.when(...).respond(...)</td> </tr> <tr> <th>Typical usage</th> <td>strict unit tests</td> <td>loose (black-box) unit testing</td> </tr> <tr> <th>Fulfills multiple requests</th> <td>NO</td> <td>YES</td> </tr> <tr> <th>Order of requests matters</th> <td>YES</td> <td>NO</td> </tr> <tr> <th>Request required</th> <td>YES</td> <td>NO</td> </tr> <tr> <th>Response required</th> <td>optional (see below)</td> <td>YES</td> </tr> </table> <p>In cases where both backend definitions and request expectations are specified during unit testing, the request expectations are evaluated first.</p> <p>If a request expectation has no response specified, the algorithm will search your backend definitions for an appropriate response.</p> <p>If a request didn't match any expectation or if the expectation doesn't have the response defined, the backend definitions are evaluated in sequential order to see if any of them match the request. The response from the first matched definition is returned.</p> <h1 id="flushing-http-requests">Flushing HTTP requests</h1> <p>The $httpBackend used in production always responds to requests asynchronously. If we preserved this behavior in unit testing, we'd have to create async unit tests, which are hard to write, to follow and to maintain. But neither can the testing mock respond synchronously; that would change the execution of the code under test. For this reason, the mock $httpBackend has a <code>flush()</code> method, which allows the test to explicitly flush pending requests. This preserves the async api of the backend, while allowing the test to execute synchronously.</p> <h1 id="unit-testing-with-mock-httpbackend">Unit testing with mock $httpBackend</h1> <p>The following code shows how to setup and use the mock backend when unit testing a controller. First we create the controller under test:</p> <pre><code class="lang-js">// The module code angular .module('MyApp', []) .controller('MyController', MyController); // The controller code function MyController($scope, $http) { var authToken; $http.get('/auth.py').success(function(data, status, headers) { authToken = headers('A-Token'); $scope.user = data; }); $scope.saveMessage = function(message) { var headers = { 'Authorization': authToken }; $scope.status = 'Saving...'; $http.post('/add-msg.py', message, { headers: headers } ).success(function(response) { $scope.status = ''; }).error(function() { $scope.status = 'ERROR!'; }); }; } </code></pre> <p>Now we setup the mock backend and create the test specs:</p> <pre><code class="lang-js">// testing controller describe('MyController', function() { var $httpBackend, $rootScope, createController, authRequestHandler; // Set up the module beforeEach(module('MyApp')); beforeEach(inject(function($injector) { // Set up the mock http service responses $httpBackend = $injector.get('$httpBackend'); // backend definition common for all tests authRequestHandler = $httpBackend.when('GET', '/auth.py') .respond({userId: 'userX'}, {'A-Token': 'xxx'}); // Get hold of a scope (i.e. the root scope) $rootScope = $injector.get('$rootScope'); // The $controller service is used to create instances of controllers var $controller = $injector.get('$controller'); createController = function() { return $controller('MyController', {'$scope' : $rootScope }); }; })); afterEach(function() { $httpBackend.verifyNoOutstandingExpectation(); $httpBackend.verifyNoOutstandingRequest(); }); it('should fetch authentication token', function() { $httpBackend.expectGET('/auth.py'); var controller = createController(); $httpBackend.flush(); }); it('should fail authentication', function() { // Notice how you can change the response even after it was set authRequestHandler.respond(401, ''); $httpBackend.expectGET('/auth.py'); var controller = createController(); $httpBackend.flush(); expect($rootScope.status).toBe('Failed...'); }); it('should send msg to server', function() { var controller = createController(); $httpBackend.flush(); // now you don’t care about the authentication, but // the controller will still send the request and // $httpBackend will respond without you having to // specify the expectation and response for this request $httpBackend.expectPOST('/add-msg.py', 'message content').respond(201, ''); $rootScope.saveMessage('message content'); expect($rootScope.status).toBe('Saving...'); $httpBackend.flush(); expect($rootScope.status).toBe(''); }); it('should send auth header', function() { var controller = createController(); $httpBackend.flush(); $httpBackend.expectPOST('/add-msg.py', undefined, function(headers) { // check if the header was send, if it wasn't the expectation won't // match the request and the test will fail return headers['Authorization'] == 'xxx'; }).respond(201, ''); $rootScope.saveMessage('whatever'); $httpBackend.flush(); }); }); </code></pre> </div> <div> <h2>Methods</h2> <ul class="methods"> <li id="when"> <h3><p><code>when(method, url, [data], [headers]);</code></p> </h3> <div><p>Creates a new backend definition.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> method </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>HTTP method.</p> </td> </tr> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers or function that receives http header object and returns true if the headers match the current definition.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> <ul> <li>respond – <code>{function([status,] data[, headers, statusText]) | function(function(method, url, data, headers)}</code> – The respond method takes a set of static data to be returned or a function that can return an array containing response status (number), response data (string), response headers (Object), and the text for the status (string). The respond method returns the <code>requestHandler</code> object for possible overrides.</li> </ul> </td> </tr> </table> </li> <li id="whenGET"> <h3><p><code>whenGET(url, [headers]);</code></p> </h3> <div><p>Creates a new backend definition for GET requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="whenHEAD"> <h3><p><code>whenHEAD(url, [headers]);</code></p> </h3> <div><p>Creates a new backend definition for HEAD requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="whenDELETE"> <h3><p><code>whenDELETE(url, [headers]);</code></p> </h3> <div><p>Creates a new backend definition for DELETE requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="whenPOST"> <h3><p><code>whenPOST(url, [data], [headers]);</code></p> </h3> <div><p>Creates a new backend definition for POST requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="whenPUT"> <h3><p><code>whenPUT(url, [data], [headers]);</code></p> </h3> <div><p>Creates a new backend definition for PUT requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="whenJSONP"> <h3><p><code>whenJSONP(url);</code></p> </h3> <div><p>Creates a new backend definition for JSONP requests. For more info see <code>when()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expect"> <h3><p><code>expect(method, url, [data], [headers]);</code></p> </h3> <div><p>Creates a new request expectation.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> method </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>HTTP method.</p> </td> </tr> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a><a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected, or Object if request body is in JSON format.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-function">function(Object)</a> </td> <td> <p>HTTP headers or function that receives http header object and returns true if the headers match the current expectation.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> <ul> <li>respond – <code>{function([status,] data[, headers, statusText]) | function(function(method, url, data, headers)}</code> – The respond method takes a set of static data to be returned or a function that can return an array containing response status (number), response data (string), response headers (Object), and the text for the status (string). The respond method returns the <code>requestHandler</code> object for possible overrides.</li> </ul> </td> </tr> </table> </li> <li id="expectGET"> <h3><p><code>expectGET(url, [headers]);</code></p> </h3> <div><p>Creates a new request expectation for GET requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled. See #expect for more info.</p> </td> </tr> </table> </li> <li id="expectHEAD"> <h3><p><code>expectHEAD(url, [headers]);</code></p> </h3> <div><p>Creates a new request expectation for HEAD requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expectDELETE"> <h3><p><code>expectDELETE(url, [headers]);</code></p> </h3> <div><p>Creates a new request expectation for DELETE requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expectPOST"> <h3><p><code>expectPOST(url, [data], [headers]);</code></p> </h3> <div><p>Creates a new request expectation for POST requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a><a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected, or Object if request body is in JSON format.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expectPUT"> <h3><p><code>expectPUT(url, [data], [headers]);</code></p> </h3> <div><p>Creates a new request expectation for PUT requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a><a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected, or Object if request body is in JSON format.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expectPATCH"> <h3><p><code>expectPATCH(url, [data], [headers]);</code></p> </h3> <div><p>Creates a new request expectation for PATCH requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> <tr> <td> data <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a><a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP request body or function that receives data string and returns true if the data is as expected, or Object if request body is in JSON format.</p> </td> </tr> <tr> <td> headers <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>HTTP headers.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="expectJSONP"> <h3><p><code>expectJSONP(url);</code></p> </h3> <div><p>Creates a new request expectation for JSONP requests. For more info see <code>expect()</code>.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> url </td> <td> <a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-regexp">RegExp</a><a href="" class="label type-hint type-hint-function">function(string)</a> </td> <td> <p>HTTP url or function that receives the url and returns true if the url match the current definition.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-requesthandler">requestHandler</a></td> <td><p>Returns an object with <code>respond</code> method that controls how a matched request is handled. You can save this object for later use and invoke <code>respond</code> again in order to change how a matched request is handled.</p> </td> </tr> </table> </li> <li id="flush"> <h3><p><code>flush([count]);</code></p> </h3> <div><p>Flushes all pending requests using the trained responses.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> count <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-number">number</a> </td> <td> <p>Number of responses to flush (in the order they arrived). If undefined, all pending requests will be flushed. If there are no pending requests when the flush method is called an exception is thrown (as this typically a sign of programming error).</p> </td> </tr> </tbody> </table> </li> <li id="verifyNoOutstandingExpectation"> <h3><p><code>verifyNoOutstandingExpectation();</code></p> </h3> <div><p>Verifies that all of the requests defined via the <code>expect</code> api were made. If any of the requests were not made, verifyNoOutstandingExpectation throws an exception.</p> <p>Typically, you would call this method following each test case that asserts requests using an "afterEach" clause.</p> <pre><code class="lang-js">afterEach($httpBackend.verifyNoOutstandingExpectation); </code></pre> </div> </li> <li id="verifyNoOutstandingRequest"> <h3><p><code>verifyNoOutstandingRequest();</code></p> </h3> <div><p>Verifies that there are no outstanding requests that need to be flushed.</p> <p>Typically, you would call this method following each test case that asserts requests using an "afterEach" clause.</p> <pre><code class="lang-js">afterEach($httpBackend.verifyNoOutstandingRequest); </code></pre> </div> </li> <li id="resetExpectations"> <h3><p><code>resetExpectations();</code></p> </h3> <div><p>Resets all request expectations, but preserves all backend definitions. Typically, you would call resetExpectations during a multiple-phase test when you want to reuse the same instance of $httpBackend mock.</p> </div> </li> </ul> </div>