forked from request/request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-form-data.js
More file actions
134 lines (111 loc) · 4.23 KB
/
Copy pathtest-form-data.js
File metadata and controls
134 lines (111 loc) · 4.23 KB
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
'use strict'
var http = require('http')
, path = require('path')
, mime = require('mime-types')
, request = require('../index')
, fs = require('fs')
, tape = require('tape')
function runTest(t, options) {
var remoteFile = path.join(__dirname, 'googledoodle.jpg')
, localFile = path.join(__dirname, 'unicycle.jpg')
, multipartFormData = {}
var server = http.createServer(function(req, res) {
if (req.url === '/file') {
res.writeHead(200, {'content-type': 'image/jpg', 'content-length':7187})
res.end(fs.readFileSync(remoteFile), 'binary')
return
}
if (options.auth) {
if (!req.headers.authorization) {
res.writeHead(401, {'www-authenticate': 'Basic realm="Private"'})
res.end()
return
} else {
t.ok(req.headers.authorization === 'Basic ' + new Buffer('user:pass').toString('base64'))
}
}
t.ok(/multipart\/form-data; boundary=--------------------------\d+/
.test(req.headers['content-type']))
// temp workaround
var data = ''
req.setEncoding('utf8')
req.on('data', function(d) {
data += d
})
req.on('end', function() {
// check for the fields' traces
// 1st field : my_field
t.ok( data.indexOf('form-data; name="my_field"') !== -1 )
t.ok( data.indexOf(multipartFormData.my_field) !== -1 )
// 2nd field : my_buffer
t.ok( data.indexOf('form-data; name="my_buffer"') !== -1 )
t.ok( data.indexOf(multipartFormData.my_buffer) !== -1 )
// 3rd field : my_file
t.ok( data.indexOf('form-data; name="my_file"') !== -1 )
t.ok( data.indexOf('; filename="' + path.basename(multipartFormData.my_file.path) + '"') !== -1 )
// check for unicycle.jpg traces
t.ok( data.indexOf('2005:06:21 01:44:12') !== -1 )
t.ok( data.indexOf('Content-Type: ' + mime.lookup(multipartFormData.my_file.path) ) !== -1 )
// 4th field : remote_file
t.ok( data.indexOf('form-data; name="remote_file"') !== -1 )
t.ok( data.indexOf('; filename="' + path.basename(multipartFormData.remote_file.path) + '"') !== -1 )
// 5th field : file with metadata
t.ok( data.indexOf('form-data; name="secret_file"') !== -1 )
t.ok( data.indexOf('Content-Disposition: form-data; name="secret_file"; filename="topsecret.jpg"') !== -1 )
t.ok( data.indexOf('Content-Type: image/custom') !== -1 )
// 6th field : batch of files
t.ok( data.indexOf('form-data; name="batch"') !== -1 )
t.ok( data.match(/form-data; name="batch"/g).length === 2 )
// check for http://localhost:6767/file traces
t.ok( data.indexOf('Photoshop ICC') !== -1 )
t.ok( data.indexOf('Content-Type: ' + mime.lookup(remoteFile) ) !== -1 )
res.writeHead(200)
res.end(options.json ? JSON.stringify({status: 'done'}) : 'done')
})
})
server.listen(6767, function() {
// @NOTE: multipartFormData properties must be set here so that my_file read stream does not leak in node v0.8
multipartFormData.my_field = 'my_value'
multipartFormData.my_buffer = new Buffer([1, 2, 3])
multipartFormData.my_file = fs.createReadStream(localFile)
multipartFormData.remote_file = request('http://localhost:6767/file')
multipartFormData.secret_file = {
value: fs.createReadStream(localFile),
options: {
filename: 'topsecret.jpg',
contentType: 'image/custom'
}
}
multipartFormData.batch = [
fs.createReadStream(localFile),
fs.createReadStream(localFile)
]
var reqOptions = {
url: 'http://localhost:6767/upload',
formData: multipartFormData
}
if (options.json) {
reqOptions.json = true
}
if (options.auth) {
reqOptions.auth = {user: 'user', pass: 'pass', sendImmediately: false}
}
request.post(reqOptions, function (err, res, body) {
t.equal(err, null)
t.equal(res.statusCode, 200)
t.deepEqual(body, options.json ? {status: 'done'} : 'done')
server.close(function() {
t.end()
})
})
})
}
tape('multipart formData', function(t) {
runTest(t, {json: false})
})
tape('multipart formData + JSON', function(t) {
runTest(t, {json: true})
})
tape('multipart formData + basic auth', function(t) {
runTest(t, {json: false, auth: true})
})