Class: FormServlet

Inherits:
WEBrick::HTTPServlet::AbstractServlet
  • Object
show all
Defined in:
lib/mechanize/test_case/form_servlet.rb

Instance Method Summary collapse

Instance Method Details

#do_GET(req, res) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/mechanize/test_case/form_servlet.rb', line 3

def do_GET(req, res)
  res.content_type = 'text/html'

  query = []

  req.query.each_key { |k|
    key = WEBrick::HTTPUtils.unescape k

    req.query[k].each_data { |data|
      value = WEBrick::HTTPUtils.unescape data
      query << "<li><a href=\"#\">#{key}:#{value}</a>"
    }
  }

  res.body = <<-BODY
<!DOCTYPE html>
<title>GET results</title>

<ul>
#{query.join "\n"}
</ul>

<div id=\"query\">#{req.query}</div>
  BODY
end

#do_POST(req, res) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/mechanize/test_case/form_servlet.rb', line 29

def do_POST(req, res)
  res.content_type = 'text/html'

  query = []

  req.query.each_key { |k|
    key = WEBrick::HTTPUtils.unescape k

    req.query[k].each_data { |data|
      value = WEBrick::HTTPUtils.unescape data
      query << "<li><a href=\"#\">#{key}:#{value}</a>"
    }
  }

  res.body = <<-BODY
<!DOCTYPE html>
<title>POST results</title>

<ul>
#{query.join "\n"}
</ul>

<div id=\"query\">#{req.body}</div>
  BODY
end