File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 19
19
"url" : " https://github.com/auth0/node-jsonwebtoken/issues"
20
20
},
21
21
"dependencies" : {
22
- "jws" : " ~1 .0.1 "
22
+ "jws" : " ~2 .0.0 "
23
23
},
24
24
"devDependencies" : {
25
25
"atob" : " ~1.1.2" ,
Original file line number Diff line number Diff line change @@ -4,11 +4,27 @@ var atob = require('atob');
4
4
5
5
describe ( 'encoding' , function ( ) {
6
6
7
+ function b64_to_utf8 ( str ) {
8
+ return decodeURIComponent ( escape ( atob ( str ) ) ) ;
9
+ }
10
+
7
11
it ( 'should properly encode the token' , function ( ) {
8
12
var expected = 'José' ;
9
13
var token = jwt . sign ( { name : expected } , 'shhhhh' ) ;
10
- var decoded_name = JSON . parse ( atob ( token . split ( '.' ) [ 1 ] ) ) . name ;
14
+ var decoded_name = JSON . parse ( b64_to_utf8 ( token . split ( '.' ) [ 1 ] ) ) . name ;
11
15
expect ( decoded_name ) . to . equal ( expected ) ;
12
16
} ) ;
13
17
18
+ it ( 'should return the same result when decoding' , function ( ) {
19
+ var username = '測試' ;
20
+
21
+ var token = jwt . sign ( {
22
+ username : username
23
+ } , 'test' ) ;
24
+
25
+ var payload = jwt . verify ( token , 'test' ) ;
26
+
27
+ expect ( payload . username ) . to . equal ( username ) ;
28
+ } ) ;
29
+
14
30
} ) ;
You can’t perform that action at this time.
0 commit comments