-
Notifications
You must be signed in to change notification settings - Fork 3
/
maketests.rb
172 lines (147 loc) · 5.11 KB
/
maketests.rb
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
27
28
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO(raggi): reach out to [email protected] and [email protected] and get this party started.
require 'fileutils'
require 'uri'
# TODO(raggi): add tests that exercise the FormData API.
def render(testname, page_charset, form_charset, fields)
open("tests/#{testname}.html", "w") do |io|
if page_charset && encoding = Encoding.find(page_charset)
io.set_encoding(encoding) if encoding
begin
fields.each { |f| f.encode(encoding) }
rescue Encoding::UndefinedConversionError
$stderr.puts "Cannot encode fields for #{testname} in #{encoding}"
next
end
end
etestname = page_charset ? testname.encode(page_charset, :xml => :text) : testname
quote = testname.include?('"') ? "'" : '"'
io.write <<-HTML
<!doctype html>
<html>
<head>
<title>#{etestname}</title>
#{"<meta charset='#{page_charset}'>" if page_charset}
</head>
<body>
<form action=#{quote}/dump/#{etestname}#{quote} method=POST enctype="multipart/form-data" #{"accept-charset='#{form_charset}'" if form_charset}>
#{fields.join("\n ")}
<input type="submit">
</form>
</body>
</html>
HTML
end
end
charsets = %w[utf-8 iso-8859-1 gb2312 windows-1251 windows-1252 shift_jis gbk] + [nil]
fieldsets = {
empty_text: [{name: 'text', type: 'text', value: nil}],
with_text: [{name: 'text', type: 'text', value: 'text'}],
empty_file: [{name: 'file', type: 'file', value: nil}],
with_file: [{name: 'file', type: 'file', value: File}],
two_empty_text: [
{name: 'text', type: 'text', value: nil},
{name: 'text2', type: 'text', value: nil},
],
two_with_text: [
{name: 'text', type: 'text', value: 'text'},
{name: 'text2', type: 'text', value: 'text2'}
],
two_one_text: [
{name: 'text', type: 'text', value: 'text'},
{name: 'text2', type: 'text', value: nil}
],
two_empty_file: [
{name: 'file', type: 'file', value: nil},
{name: 'file2', type: 'file', value: nil}
],
two_with_file: [
{name: 'file', type: 'file', value: File},
{name: 'file2', type: 'file', value: File}
],
two_one_file: [
{name: 'file', type: 'file', value: File},
{name: 'file2', type: 'file', value: nil}
],
one_empty_multi_file: [
{name: 'files', type: 'file', multiple: true, value: nil}
],
one_with_multi_file: [
{name: 'files', type: 'file', multiple: true, value: File}
],
eight_bit_field_name: [
{name: 'téxt', type: 'text', value: nil},
{name: 'téxt2', type: 'text', value: 'téxt2'}
],
reserved_field_name_percent: [
{name: 't%xt', type: 'text', value: 't%xt'}
],
reserved_field_name_plus: [
{name: 't+xt', type: 'text', value: 't+xt'}
],
reserved_field_name_equal: [
{name: 't=xt', type: 'text', value: 't=xt'}
],
reserved_field_name_question: [
{name: 't?xt', type: 'text', value: 't?xt'}
]
}
files = %w[a.txt a.bin a.none]
files += %w[a"file a%file a%%file a'file a+file a&file a?file]
files += ["a file", "a filé", "a ƒile"]
FileUtils.mkdir_p 'files'
FileUtils.mkdir_p 'tests'
content = (0..255).map(&:chr).join
files.each do |f|
open("files/#{f}", "w") { |io| io.write content }
end
fieldsets.each do |name, set|
(charsets * 2).combination(2).to_a.uniq.each do |page_charset, form_charset|
testname = "#{name}-#{page_charset}-#{form_charset}"
# TODO(raggi): add a data-file attribute for convenience when executing
fields = set.map do |field|
"<input name='#{field[:name]}' type='#{field[:type]}' #{'multiple' if field[:multiple]}>"
end
if set.any? { |f| f[:type] == 'file' }
files.each do |f|
render testname + "--#{f}", page_charset, form_charset, fields
end
else
render testname, page_charset, form_charset, fields
end
end
end
open('index.html', 'w') do |io|
io.puts "<!doctype html>"
io.puts <<-HTML
<!--
Copyright 2014 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
HTML
io.puts "<html><head><title>multifail</title></head><body><ul>"
Dir['tests/*.html'].each do |test|
io.puts "<li><a href='#{URI.escape test}'>#{test}</a></li>"
end
io.puts "</ul></body></html>"
end