summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/server_render_static_to_disk.txt
blob: b0e76e318cee218df78a755ee9aeedf650e0426e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Test the hugo server command.

# We run these tests in parallel so let Hugo decide which port to use.
hugo server --renderStaticToDisk &

waitServer

httpget $HUGOTEST_BASEURL_0 'Title: Hugo Server Test' $HUGOTEST_BASEURL_0
httpget ${HUGOTEST_BASEURL_0}mystatic.txt 'This is a static file.'

! exists public/index.html
exists public/mystatic.txt

stopServer
! stderr .

-- hugo.toml --
title = "Hugo Server Test"
baseURL = "https://example.org/"
disableKinds = ["taxonomy", "term", "sitemap"]
-- static/mystatic.txt --
This is a static file.
-- layouts/index.html --
Title: {{ .Title }}|BaseURL: {{ site.BaseURL }}|