説明なし

server.js 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /**
  2. * @author wkh237
  3. * @description react-native-fetch-blob test & dev server
  4. */
  5. var express = require('express')
  6. var bodyParser = require('body-parser')
  7. var chokidar = require('chokidar')
  8. var multer = require('multer')
  9. var upload = multer({dest : 'uploads/'})
  10. var chalk = require('chalk')
  11. var mkdirp = require('mkdirp')
  12. var dirname = require('path').dirname
  13. var app = express()
  14. var fs = require('fs')
  15. var https = require('https')
  16. var JS_SOURCE_PATH = '../test/',
  17. LIB_SOURCE_PATH = '../src/',
  18. NODE_MODULE_MODULE_PATH = '../RNFetchBlobTest/node_modules/react-native-fetch-blob/',
  19. APP_SOURCE_PATH = '../RNFetchBlobTest/'
  20. // watch test app source
  21. watch(JS_SOURCE_PATH, APP_SOURCE_PATH)
  22. // watch lib js source
  23. watch(LIB_SOURCE_PATH, NODE_MODULE_MODULE_PATH, {ignored: /\.\.\/src\/(android|ios)\//})
  24. // https
  25. var server = https.createServer({
  26. key : fs.readFileSync('./key.pem'),
  27. cert : fs.readFileSync('./cert.pem')
  28. }, app).listen(8124, function(err){
  29. if(!err)
  30. console.log('SSL test server running at port ',8124)
  31. })
  32. // http
  33. app.listen(8123, function(err){
  34. if(!err)
  35. console.log('test server running at port ',8123)
  36. })
  37. app.use(function(req,res,next){
  38. console.log(chalk.green('request url=') + chalk.magenta(req.url))
  39. next()
  40. })
  41. app.use('/upload-form', function(req, res, next) {
  42. console.log(req.headers)
  43. // req.on('data', (chunk) => {
  44. // console.log(String(chunk,'utf8'))
  45. // })
  46. // req.on('end', () => {
  47. next()
  48. // })
  49. })
  50. var count = 0
  51. app.use(function(req, res, next) {
  52. console.log(req.url, ++count);
  53. next();
  54. })
  55. app.get('/unicode', (req, res) => {
  56. res.send({ data:'你好!'})
  57. })
  58. app.all('/echo', (req, res) => {
  59. var body = ''
  60. req.on('data', (chunk) => {
  61. body+=chunk
  62. })
  63. req.on('end', () => {
  64. res.send({
  65. headers : req.headers,
  66. body : body
  67. })
  68. })
  69. })
  70. app.use(upload.any())
  71. app.use('/public', express.static('./public'))
  72. // for redirect test
  73. app.get('/redirect', function(req, res) {
  74. res.redirect('/public/github.png')
  75. })
  76. app.all('/params', function(req, res) {
  77. console.log(req.url)
  78. var resp =
  79. {
  80. time : req.query.time,
  81. name : req.query.name,
  82. lang : req.query.lang
  83. }
  84. console.log(resp)
  85. res.send(resp)
  86. })
  87. // return an empty response
  88. app.all('/empty', function(req, res) {
  89. res.send('')
  90. })
  91. app.delete('/hey', function(req, res) {
  92. res.send('man')
  93. })
  94. app.get('/stress/:id', function(req, res) {
  95. res.sendFile(process.cwd() + '/public/github.png')
  96. })
  97. app.post('/mime', mimeCheck)
  98. app.put('/mime', mimeCheck)
  99. function mimeCheck(req, res) {
  100. console.log(req.files)
  101. var mimes = []
  102. for(var i in req.files) {
  103. mimes.push(req.files[i].mimetype)
  104. }
  105. res.send(mimes)
  106. }
  107. // handle multipart/form-data request
  108. app.post('/upload-form', formUpload)
  109. app.put('/upload-form', formUpload)
  110. // for XHR tests
  111. //
  112. app.all('/xhr-code/:code', (req, res) => {
  113. console.log('code = ', req.params.code)
  114. res.status(Math.floor(req.params.code)).send()
  115. })
  116. app.all('/xhr-header', (req, res) => {
  117. console.log(req.headers)
  118. // res.header('Content-Type', 'application/json')
  119. res.send(req.headers)
  120. })
  121. app.post('/upload', bodyParser.urlencoded({ extended : true }), (req, res) => {
  122. console.log(JSON.stringify(req.headers))
  123. console.log(JSON.stringify(req.body))
  124. res.status(200).send(req.body)
  125. })
  126. app.all('/timeout408/:time', (req, res) => {
  127. setTimeout(function() {
  128. res.status(408).send('request timed out.')
  129. }, 5000)
  130. })
  131. app.all('/long', (req, res) => {
  132. var count = 0;
  133. var it = setInterval(() => {
  134. console.log('write data', count)
  135. res.write('a')
  136. if(++count >60){
  137. clearInterval(it)
  138. res.end()
  139. }
  140. }, 1000);
  141. })
  142. app.all('/timeout', (req, res) => {
  143. })
  144. function formUpload(req, res) {
  145. console.log(req.headers)
  146. console.log(req.body)
  147. console.log(req.files)
  148. if(Array.isArray(req.files)) {
  149. req.files.forEach((f) => {
  150. console.log(process.cwd() + f.path, '=>', process.cwd() + '/public/' + f.originalname)
  151. fs.renameSync('./' + f.path, './public/'+ f.originalname)
  152. })
  153. }
  154. res.status(200).send({
  155. fields : req.body,
  156. files : req.files
  157. })
  158. }
  159. function watch(source, dest, ignore) {
  160. // watch files in test folder
  161. chokidar
  162. .watch(source, ignore)
  163. .on('add', function(path) {
  164. console.log(chalk.magenta('file created'), path)
  165. var targetPath = String(path).replace(source, dest)
  166. mkdirp(dirname(targetPath), function (err) {
  167. if (err) return cb(err)
  168. fs.writeFileSync(targetPath, fs.readFileSync(path))
  169. })
  170. })
  171. .on('change', function(path) {
  172. console.log(chalk.green('file changed'), path)
  173. var targetPath = String(path).replace(source, dest)
  174. mkdirp(dirname(targetPath), function (err) {
  175. if (err) return cb(err)
  176. fs.writeFileSync(targetPath, fs.readFileSync(path))
  177. })
  178. })
  179. .on('unlink', function(path) {
  180. console.log(chalk.red('file removed'), path)
  181. var targetPath = String(path).replace(source, dest)
  182. mkdirp(dirname(targetPath), function (err) {
  183. if (err) return cb(err)
  184. fs.unlinkSync(targetPath)
  185. })
  186. })
  187. .on('error', function(err){
  188. console.log(err)
  189. })
  190. }