Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RequestRuleBuilder

Hierarchy

  • BaseRuleBuilder
    • RequestRuleBuilder

Index

Constructors

Completion Methods

Matching Methods

  • Match only requests sent to the given host, i.e. the full hostname plus port included in the request.

    This can behave somewhat confusingly when matching against the default ports for a protocol (i.e. 80/443), or when specifying a hostname here without specifying the port. In those cases it's usually better to use forHostname and/or forPort instead to explicit match the content you're interested in.

    Parameters

    • host: string

    Returns RequestRuleBuilder

  • Match only requests whose bodies either exactly match the given string (if a string is passed) or whose bodies match a regular expression (if a regex is passed).

    Parameters

    • content: string | RegExp

    Returns RequestRuleBuilder

  • Match only requests that include the exact query string provided. The query string must start with a ? or be entirely empty.

    Parameters

    • query: string

    Returns RequestRuleBuilder

  • Match only requests whose bodies exactly match the given object, when parsed as JSON.

    Note that this only tests that the body can be parsed as JSON - it doesn't require a content-type header.

    Parameters

    • json: {}

      Returns RequestRuleBuilder

    • Match only requests whose bodies match (contain equivalent values, ignoring extra values) the given object, when parsed as JSON. Matching behaviour is the same as Lodash's _.isMatch method.

      Note that this only tests that the body can be parsed as JSON - it doesn't require a content-type header.

      Parameters

      • json: {}

        Returns RequestRuleBuilder

      • Match only requests whose bodies include the given multipart form data.

        This can take any number of form parts to look for. Each part is specified with MultipartFieldMatchCondition object containing one or more of name (string), filename (string) and content (string or buffer) as fields to match against in the form data.

        Requests are matched if all conditions match at least one part in the request's form data.

        Parameters

        Returns RequestRuleBuilder

      Other Methods

      • Set the rule priority. Any matching rule with a higher priority will always take precedence over a matching lower-priority rule, unless the higher rule has an explicit completion check (like .once()) that has already been completed.

        The RulePriority enum defines the standard values useful for most cases, but any positive number may be used for advanced configurations.

        In many cases it may be simpler to use forUnmatchedRequest() to set a fallback rule explicitly, rather than manually setting the priority here.

        Parameters

        • priority: number

        Returns RequestRuleBuilder

      Responses Methods

      • Close connections that match this rule immediately, without any status code or response.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Returns Promise<MockedEndpoint>

      • Forward matched requests on to the specified forwardToUrl. The url specified must not include a path. Otherwise, an error is thrown. The path portion of the original request url is used instead.

        The url may optionally contain a protocol. If it does, it will override the protocol (and potentially the port, if unspecified) of the request. If no protocol is specified, the protocol (and potentially the port) of the original request URL will be used instead.

        This method takes options to configure how the request is passed through. See PassThroughHandlerOptions for the full details of the options available.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        Returns Promise<MockedEndpoint>

      • Reply to matched requests with a given status code and the current contents of a given file. The status message and headers can also be optionally provided here. If no headers are provided, only the standard required headers are set.

        The file is read near-fresh for each request, and external changes to its content will be immediately appear in all subsequent requests.

        If one string argument is provided, it's used as the body file path. If two are provided (even if one is empty), then 1st is the status message, and the 2nd the body. This matches the argument order of thenReply().

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        • status: number
        • filePath: string
        • Optional headers: Headers

        Returns Promise<MockedEndpoint>

      • Parameters

        • status: number
        • statusMessage: string
        • filePath: string
        • Optional headers: Headers

        Returns Promise<MockedEndpoint>

      • Reply to matched requests with the given status & JSON and (optionally) extra headers.

        This method is (approximately) shorthand for: server.forGet(...).thenReply(status, JSON.stringify(data), { 'Content-Type': 'application/json' })

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        • status: number
        • data: object
        • headers: Headers = {}

        Returns Promise<MockedEndpoint>

      • Pass matched requests through to their real destination. This works for proxied requests only, direct requests will be rejected with an error.

        This method takes options to configure how the request is passed through. See PassThroughHandlerOptions for the full details of the options available.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        Returns Promise<MockedEndpoint>

      • Reply to matched requests with a given status code and (optionally) status message, body and headers.

        If one string argument is provided, it's used as the body. If two are provided (even if one is empty), then 1st is the status message, and the 2nd the body. If no headers are provided, only the standard required headers are set, e.g. Date and Transfer-Encoding.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        • status: number
        • Optional data: string | Buffer
        • Optional headers: Headers

        Returns Promise<MockedEndpoint>

      • Parameters

        • status: number
        • statusMessage: string
        • data: string | Buffer
        • Optional headers: Headers

        Returns Promise<MockedEndpoint>

      • Reset connections that match this rule immediately, sending a TCP RST packet directly, without any status code or response, and without cleanly closing the TCP connection.

        This is only supported in Node.js versions (>=16.17, >=18.3.0, or later), where net.Socket includes the resetAndDestroy method.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Returns Promise<MockedEndpoint>

      • Send a failing error JSON-RPC response to a JSON-RPC request. The error data can be any JSON-serializable value. If a matching request is received that is not a valid JSON-RPC request, it will be rejected with an HTTP error.

        Parameters

        • error: any

        Returns Promise<MockedEndpoint>

      • Send a successful JSON-RPC response to a JSON-RPC request. The response data can be any JSON-serializable value. If a matching request is received that is not a valid JSON-RPC request, it will be rejected with an HTTP error.

        Parameters

        • result: any

        Returns Promise<MockedEndpoint>

      • Respond immediately with the given status (and optionally, headers), and then stream the given stream directly as the response body.

        Note that streams can typically only be read once, and as such this rule will only successfully trigger once. Subsequent requests will receive a 500 and an explanatory error message. To mock repeated requests with streams, create multiple streams and mock them independently.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Parameters

        • status: number
        • stream: Readable
        • Optional headers: Headers

        Returns Promise<MockedEndpoint>

      • Hold open connections that match this rule, but never respond with anything at all, typically causing a timeout on the client side.

        Calling this method registers the rule with the server, so it starts to handle requests.

        This method returns a promise that resolves with a mocked endpoint. Wait for the promise to confirm that the rule has taken effect before sending requests to be matched. The mocked endpoint can be used to assert on the requests matched by this rule.

        Returns Promise<MockedEndpoint>

      Generated using TypeDoc