Skip to the content.

Vibe.d Requests API

up

Mocking HTTP requests are usefull for api tests. This module allows you to mock requests for a vibe.d router.

Setup

  1. Include the vibe assert package package: fluent-asserts-vibe
  2. Import the module: import fluentasserts.vibe.request or import fluent.asserts

Summary

Examples

Mocking GET requests

Returns an array containg the keys of an Json object.

Given a simple router

	auto router = new URLRouter();

	void sayHello(HTTPServerRequest req, HTTPServerResponse res)
	{
		res.writeBody("hello");
	}

	router.any("*", &sayHello);

You can mock requests like this:

	request(router)
		.get("/")
			.end((Response response) => {
				response.bodyString.should.equal("hello");
			});

The above example creates a GET requests and sends it to the router. The handler response is sent as a callback to the end callback, where you can add your custom asserts.

Other requests

You can also mock POST, PATCH, PUT, DELETE requests by using the folowing methods:

	RequestRouter post(string path);
	RequestRouter patch(string path);
	RequestRouter put(string path);
	RequestRouter delete_(string path);

Or if you want to pass a different (HTTP method)[https://vibed.org/api/vibe.http.common/HTTPMethod] you can use the generic request methods:

	customMethod(HTTPMethod method)(string path);
	customMethod(HTTPMethod method)(URL url);

Sending headers

	auto router = new URLRouter();

	void checkHeaders(HTTPServerRequest req, HTTPServerResponse)
	{
		req.headers["Accept"].should.equal("application/json");
	}

	router.any("*", &checkHeaders);

	request(router)
		.get("/")
		.header("Accept", "application/json")
			.end();

Sending string data

	import std.string;

	auto router = new URLRouter();

	void checkStringData(HTTPServerRequest req, HTTPServerResponse)
	{
		req.bodyReader.peek.assumeUTF.should.equal("raw string");
	}

	router.any("*", &checkStringData);
	request(router)
		.post("/")
		.send("raw string")
			.end();

Sending form data

	auto router = new URLRouter();

	void checkFormData(HTTPServerRequest req, HTTPServerResponse)
	{
		req.headers["content-type"].should.equal("application/x-www-form-urlencoded");
		req.form["key1"].should.equal("value1");
		req.form["key2"].should.equal("val2ue2");
	}

	router.any("*", &checkFormData);
	request(router)
		.post("/")
		.send(["key1": "value1", "key2": "value2"])
			.end();

Sending JSON data

	auto router = new URLRouter();

	void checkJsonData(HTTPServerRequest req, HTTPServerResponse)
	{
		req.json["key"].to!string.should.equal("value");
	}

	router.any("*", &checkJsonData);
	request(router)
		.post("/")
		.send(`{ "key": "value" }`.parseJsonString)
			.end();

Receive JSON data

	auto router = new URLRouter();

	void respondJsonData(HTTPServerRequest, HTTPServerResponse res)
	{
		res.writeJsonBody(`{ "key": "value"}`.parseJsonString);
	}

	router.any("*", &respondJsonData);
	request(router)
		.get("/")
			.end((Response response) => {
				response.bodyJson["key"].to!string.should.equal("value");
			});

Expect status code

	auto router = new URLRouter();

	void respondStatus(HTTPServerRequest, HTTPServerResponse res)
	{
		res.statusCode = 200;
		res.writeBody("");
	}

	router.get("*", &respondStatus);
	request(router)
		.get("/")
		.expectStatusCode(200)
			.end();


	should.throwAnyException({
		request(router)
			.post("/")
			.expectStatusCode(200)
				.end();
	}).msg.should.equal("Expected status code `200` not found. Got `404` instead");

Expect header value

	auto router = new URLRouter();

	void respondHeader(HTTPServerRequest, HTTPServerResponse res)
	{
		res.headers["some-header"] = "some-value";
		res.writeBody("");
	}

	router.get("*", &respondHeader);

Check for the exact header value:

	request(router)
		.get("/")
		.expectHeader("some-header", "some-value")
			.end();

	should.throwAnyException({
		request(router)
			.get("/")
			.expectHeader("some-header", "other-value")
				.end();
	}).msg.should.contain("Response header `some-header` has an unexpected value");

	should.throwAnyException({
		request(router)
			.post("/")
			.expectHeader("some-header", "some-value")
				.end();
	}).msg.should.equal("Response header `some-header` is missing.");

Check if a header exists

	request(router)
		.get("/")
		.expectHeaderExist("some-header")
			.end();


	should.throwAnyException({
		request(router)
			.post("/")
			.expectHeaderExist("some-header")
				.end();
	}).msg.should.equal("Response header `some-header` is missing.");

Check if a header contains a string

	request(router)
		.get("/")
		.expectHeaderContains("some-header", "value")
			.end();


	should.throwAnyException({
		request(router)
			.get("/")
			.expectHeaderContains("some-header", "other")
				.end();
	}).msg.should.contain("Response header `some-header` has an unexpected value.");