ngMock.$httpBackend.expect()

expect(method, url, [data], [headers], [keys]);

Creates a new request expectation.

Parameters

Param Type Details
method string

HTTP method.

url stringRegExpfunction(string)

HTTP url or function that receives a url and returns true if the url matches the current definition.

data
(optional)
stringRegExpfunction(string)Object

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.

headers
(optional)
Objectfunction(Object)

HTTP headers or function that receives http header object and returns true if the headers match the current expectation.

keys
(optional)
Array

Array of keys to assign to regex matches in request url described above.

Returns

requestHandler

Returns an object with respond method that controls how a matched request is handled. You can save this object for later use and invoke respond again in order to change how a matched request is handled.

  • respond â {function([status,] data[, headers, statusText]) | function(function(method, url, data, headers, params)} â 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 requestHandler object for possible overrides.
doc_AngularJS
2016-03-29 16:11:59
Comments
Leave a Comment

Please login to continue.