New test for server side includes (SSI)

This commit is contained in:
bel2125 2016-05-16 16:01:51 +02:00
parent 3426051cb7
commit a2178b9045
11 changed files with 42 additions and 40 deletions

5
test/hello.shtml Normal file
View File

@ -0,0 +1,5 @@
<pre>
hello.shtml: include "hello.txt":
<!--#include file="hello.txt" -->
hello.shtml: end
</pre>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#include file="../Makefile" -->
ssi_end
</pre></html>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#include virtual="embed.c" -->
ssi_end
</pre></html>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#exec "ls -l" -->
ssi_end
</pre></html>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#exec "dir /w" -->
ssi_end
</pre></html>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#include abspath="/etc/passwd" -->
ssi_end
</pre></html>

View File

@ -1,5 +0,0 @@
<html><pre>
ssi_begin
<!--#include abspath="c:\boot.ini" -->
ssi_end
</pre></html>

View File

@ -1,6 +0,0 @@
<html><pre>
ssi_begin
<!--#include "embed.c" -->
ssi_end
</pre></html>

View File

@ -1 +0,0 @@
<!--#include "ssi9.shtml" -->

View File

@ -1,3 +0,0 @@
ssi_begin
<!--#include file="../Makefile" -->
ssi_end

37
test/ssi_test.shtml Normal file
View File

@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="author" content="CivetWeb developers">
<meta name="description" content="CivetWeb Server Side Include (SSI) Test Page">
</head>
<body>
<h1>CivetWeb Server Side Include (SSI) Test Page</h1>
<p>Note: Some of the tests below will only work on Windows, others only on Linux, and some probably not on all Linux distributions and all Windows versions.</p>
<h2>Execute: "cd"</h2>
<!--#exec "cd" -->
<h2>Execute: "pwd"</h2>
<!--#exec "pwd" -->
<h2>File relative to current document: "hello.txt"</h2>
<!--#include file="hello.txt" -->
<h2>Short form: "hello.txt"</h2>
<!--#include "hello.txt" -->
<h2>File relative to document root: "hello.txt"</h2>
<!--#include virtual="hello.txt" -->
<h2>File with absolute path: "C:\Windows\system.ini"</h2>
<!--#include abspath="C:\Windows\system.ini" -->
<h2>File with absolute path: "/etc/issue"</h2>
<!--#include abspath="/etc/issue" -->
<h2>Nested file relative to current documentt: "hello.shtml"</h2>
<!--#include file="./hello.shtml" -->
</body>
</html>