aboutsummaryrefslogtreecommitdiff
path: root/server/test/src
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-09-01 21:14:35 +0100
committerJuan J. Martinez <jjm@usebox.net>2021-09-01 21:14:35 +0100
commitcfbb8d48a22bd8c905b5e247c52a949d73c363be (patch)
tree9dd863be5d129cb1cc47731462963391b665196f /server/test/src
parent05b5bb6b77877cf8165d85560d5dec145a9369e1 (diff)
downloadspacebeans-cfbb8d48a22bd8c905b5e247c52a949d73c363be.tar.gz
spacebeans-cfbb8d48a22bd8c905b5e247c52a949d73c363be.zip
FIX: index file can be a CGI and should be executed
Diffstat (limited to 'server/test/src')
-rw-r--r--server/test/src/ServerSpec.scala50
1 files changed, 50 insertions, 0 deletions
diff --git a/server/test/src/ServerSpec.scala b/server/test/src/ServerSpec.scala
index d3027e3..ea40798 100644
--- a/server/test/src/ServerSpec.scala
+++ b/server/test/src/ServerSpec.scala
@@ -621,6 +621,46 @@ class ServerSpec extends AnyFlatSpec with Matchers {
cgi.body should include("env1=value")
}
+ it should "execute a CGI when it is the index document" in {
+ val cgi = Server(TestData.cgiIndexConf)
+ .handleReq(
+ "gemini://localhost/dir/",
+ "127.0.0.1"
+ )
+ .asInstanceOf[Cgi]
+
+ cgi.status should be(20)
+ cgi.meta should be("text/gemini")
+ cgi.body should include("GATEWAY_INTERFACE=CGI/1.1")
+ }
+
+ it should "execute a CGI when it is the index document (full name)" in {
+ val cgi = Server(TestData.cgiIndexConf)
+ .handleReq(
+ "gemini://localhost/dir/cgi",
+ "127.0.0.1"
+ )
+ .asInstanceOf[Cgi]
+
+ cgi.status should be(20)
+ cgi.meta should be("text/gemini")
+ cgi.body should include("GATEWAY_INTERFACE=CGI/1.1")
+ }
+
+ it should "execute a CGI when it is the index document (full name, path info)" in {
+ val cgi = Server(TestData.cgiIndexConf)
+ .handleReq(
+ "gemini://localhost/dir/cgi/path/info",
+ "127.0.0.1"
+ )
+ .asInstanceOf[Cgi]
+
+ cgi.status should be(20)
+ cgi.meta should be("text/gemini")
+ cgi.body should include("GATEWAY_INTERFACE=CGI/1.1")
+ cgi.body should include("PATH_INFO=/path/info")
+ }
+
object TestData {
val host = "localhost"
@@ -672,6 +712,16 @@ class ServerSpec extends AnyFlatSpec with Matchers {
)
)
+ val cgiIndexConf = cgiConf.copy(virtualHosts =
+ List(
+ cgiConf
+ .virtualHosts(0)
+ .copy(
+ indexFile = "cgi"
+ )
+ )
+ )
+
val confUserDir = conf.copy(virtualHosts =
List(
conf