summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/sjs_cache_controle_header.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/framework/test/sjs_cache_controle_header.sjs')
-rw-r--r--devtools/client/framework/test/sjs_cache_controle_header.sjs19
1 files changed, 19 insertions, 0 deletions
diff --git a/devtools/client/framework/test/sjs_cache_controle_header.sjs b/devtools/client/framework/test/sjs_cache_controle_header.sjs
new file mode 100644
index 0000000000..af58a3fc89
--- /dev/null
+++ b/devtools/client/framework/test/sjs_cache_controle_header.sjs
@@ -0,0 +1,19 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+/* exported handleRequest */
+
+"use strict";
+
+// Simple server that writes a text response displaying the value of the
+// cache-control header:
+// - if the header is missing, the text will be `cache-control:`
+// - if the header is available, the text will be `cache-control:${value}`
+function handleRequest(request, response) {
+ response.setHeader("Content-Type", "text/plain; charset=utf-8", false);
+ if (request.hasHeader("cache-control")) {
+ response.write(`cache-control:${request.getHeader("cache-control")}`);
+ } else {
+ response.write(`cache-control:`);
+ }
+}