summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/node_modules/request/tests/ssl/ca/server.js
blob: 05e21c1162c04ba574e5c430e9932b5edcdee584 (plain)
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
var fs = require("fs")
var https = require("https")
var options = { key: fs.readFileSync("./server.key")
              , cert: fs.readFileSync("./server.crt") }

var server = https.createServer(options, function (req, res) {
  res.writeHead(200)
  res.end()
  server.close()
})
server.listen(1337)

var ca = fs.readFileSync("./ca.crt")
var agent = new https.Agent({ host: "localhost", port: 1337, ca: ca })

https.request({ host: "localhost"
              , method: "HEAD"
              , port: 1337
              , headers: { host: "testing.request.mikealrogers.com" }
              , agent: agent
              , ca: [ ca ]
              , path: "/" }, function (res) {
  if (res.client.authorized) {
    console.log("node test: OK")
  } else {
    throw new Error(res.client.authorizationError)
  }
}).end()