Our basic Hurl file is now:
# Our first Hurl file, just checking
# that our server is up and running.
GET http://localhost:3000
HTTP 200
Currently, we’re just checking that our home page is responding with a 200 OK
HTTP status code.
But we also want to check the content of our home page, to ensure that everything is ok. To check the response
of an HTTP request with Hurl, we have to describe tests that the response content must pass.
To do so, we’re going to use asserts.
As our endpoint http://localhost:3000 is serving HTML content, it makes sense to use XPath asserts. If we want to test a REST API or any sort of API that serves JSON content, we could use JSONPath asserts instead. There are other type of asserts but every one shares the same structure. So, let’s look how to write a XPath asserts.
An assert consists of a query and a predicate. As we want to test the value of the HTML title tag, we’re
going to use the XPath expression string(//head/title)
.
[Asserts]
section, so modify basic.hurl
file:# Our first Hurl file, just checking
# that our server is up and running.
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
basic.hurl
:$ hurl --test basic.hurl
basic.hurl: Running [1/1]
basic.hurl: Success (1 request(s) in 19 ms)
--------------------------------------------------------------------------------
Executed files: 1
Succeeded files: 1 (100.0%)
Failed files: 0 (0.0%)
Duration: 19 ms
There is no error so everything is good!
# Our first Hurl file, just checking
# that our server is up and running.
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Bax"
basic.hurl
:$ hurl --test basic.hurl
basic.hurl: Running [1/1]
error: Assert failure
--> basic.hurl:7:0
|
7 | xpath "string(//head/title)" == "Movies Bax"
| actual: string <Movies Box>
| expected: string <Movies Bax>
|
basic.hurl: Failure (1 request(s) in 22 ms)
--------------------------------------------------------------------------------
Executed files: 1
Succeeded files: 0 (0.0%)
Failed files: 1 (100.0%)
Duration: 23 ms
Hurl has failed now and provides information on which assert is not valid.
Decompose our assert:
xpath "string(//head/title)"
== "Movies Box"
You can note that tested values are typed:
xpath "string(//head/title)" ==
"true"
true
xpath "boolean(//head/title)" ==
true
true
Some queries can also return collections. For instance, the XPath expression //button
is returning all the button
elements present in the DOM. We can use it to ensure that we have exactly two <h3>
tag on our home page,
with count
:
basic.hurl
to check the number of <h3>
tags:# Checking our home page:
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
<h3>
’s content:# Checking our home page:
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
xpath "string((//h3)[1])" contains "Popular"
xpath "string((//h3)[2])" contains "Featured Today"
XPath queries can sometimes be a little tricky to write but modern browsers can help writing these expressions. Try open the JavaScript console of your browser (Firefox, Safari or Chrome) and type
$x("string(//head/title)")
then press Return. You should see the result of your XPath query.
basic.hurl
and check that every assert has been successful:$ hurl --test basic.hurl
basic.hurl: Running [1/1]
basic.hurl: Success (1 request(s) in 11 ms)
--------------------------------------------------------------------------------
Executed files: 1
Succeeded files: 1 (100.0%)
Failed files: 0 (0.0%)
Duration: 15 ms
We are also going to add tests on the HTTP response headers with explicit header
asserts.
As our endpoint is serving UTF-8 encoded HTML content, we can check the value of the Content-Type
response header.
basic.hurl
to test the value of the Content-Type
HTTP header:# Checking our home page:
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
xpath "string((//h3)[1])" contains "Popular"
xpath "string((//h3)[2])" contains "Featured Today"
# Testing HTTP response headers:
header "Content-Type" == "text/html; charset=utf-8"
Our HTTP response has only one
Content-Type
header, so we’re testing this header value as string. The same header could be present multiple times in an HTTP response, with different values. In this case, theheader
query will return collections and could be tested withcount
orincludes
.
For HTTP headers, we can also use an implicit header assert. You can use either implicit or
explicit header assert: the implicit one allows you to only check the exact value of the header,
while the explicit one allows you to use other predicates (like contains
, startsWith
, matches
etc...).
# Checking our home page:
GET http://localhost:3000
HTTP 200
# Implicitly testing response headers:
Content-Type: text/html; charset=utf-8
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
xpath "string((//h3)[1])" contains "Popular"
xpath "string((//h3)[2])" contains "Featured Today"
The line
Content-Type: text/html; charset=utf-8
is testing that the header Content-Type
is present in the response,
and its value must be exactly text/html; charset=utf-8
.
In the implicit assert, quotes in the header value are part of the value itself.
Finally, we want to check that our server is creating a new session.
When creating a new session, our Express application returns a Set-Cookie
HTTP response header.
So to test it, we can modify our Hurl file with another header assert.
Set-Cookie
header:# Checking our home page:
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
xpath "string((//h3)[1])" contains "Popular"
xpath "string((//h3)[2])" contains "Featured Today"
# Testing HTTP response headers:
header "Content-Type" == "text/html; charset=utf-8"
header "Set-Cookie" startsWith "x-session-id="
For Set-Cookie
header, we can use the specialized Cookie assert.
Not only we’ll be able to easily tests cookie attributes (like HttpOnly
, or SameSite
), but also
it simplifies tests on cookies, particularly when there are multiple Set-Cookie
header in the HTTP response.
Hurl is not a browser, one can see it as syntactic sugar over curl. Hurl has no JavaScript runtime and stays close to the HTTP layer. With others tools relying on headless browser, it can be difficult to access some HTTP requests attributes, like
Set-Cookie
header.
So to test that our server is responding with a HttpOnly
session cookie, we can modify our file and add cookie asserts.
x-session-id
:# Checking our home page:
GET http://localhost:3000
HTTP 200
[Asserts]
xpath "string(//head/title)" == "Movies Box"
xpath "//h3" count == 2
xpath "string((//h3)[1])" contains "Popular"
xpath "string((//h3)[2])" contains "Featured Today"
# Testing HTTP response headers:
header "Content-Type" == "text/html; charset=utf-8"
cookie "x-session-id" exists
cookie "x-session-id[HttpOnly]" exists
basic.hurl
and check that every assert has been successful:$ hurl --test basic.hurl
basic.hurl: Running [1/1]
basic.hurl: Success (1 request(s) in 11 ms)
--------------------------------------------------------------------------------
Executed files: 1
Succeeded files: 1 (100.0%)
Failed files: 0 (0.0%)
Duration: 20 ms
TODO: add duration assert
Our Hurl file is now around 10 lines long, but we’re already testing a lot on our home page:
200 OK
<h3>
tagsHttpOnly
attributeYou can see now that launching and running requests with Hurl is fast, really fast.
In the next session, we’re going to see how we chain request tests, and how we add basic check on a REST API.