forked from request/request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-hawk.js
More file actions
54 lines (48 loc) · 1.2 KB
/
Copy pathtest-hawk.js
File metadata and controls
54 lines (48 loc) · 1.2 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
'use strict'
var http = require('http')
, request = require('../index')
, hawk = require('hawk')
, tape = require('tape')
, assert = require('assert')
var server = http.createServer(function(req, res) {
var getCred = function(id, callback) {
assert.equal(id, 'dh37fgj492je')
var credentials = {
key: 'werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn',
algorithm: 'sha256',
user: 'Steve'
}
return callback(null, credentials)
}
hawk.server.authenticate(req, getCred, {}, function(err, credentials, attributes) {
res.writeHead(err ? 401 : 200, {
'Content-Type': 'text/plain'
})
res.end(err ? 'Shoosh!' : 'Hello ' + credentials.user)
})
})
tape('setup', function(t) {
server.listen(6767, function() {
t.end()
})
})
tape('hawk', function(t) {
var creds = {
key: 'werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn',
algorithm: 'sha256',
id: 'dh37fgj492je'
}
request('http://localhost:6767', {
hawk: { credentials: creds }
}, function(err, res, body) {
t.equal(err, null)
t.equal(res.statusCode, 200)
t.equal(body, 'Hello Steve')
t.end()
})
})
tape('cleanup', function(t) {
server.close(function() {
t.end()
})
})