@@ -5,7 +5,9 @@ var path = require('path');
5
5
var fs = require ( 'fs' ) ;
6
6
var exec = require ( 'child_process' ) . exec ;
7
7
var completed = 0 ;
8
- var expected_tests = 2 ;
8
+ var expected_async = 4 ;
9
+ var linkTime ;
10
+ var fileTime ;
9
11
10
12
var is_windows = process . platform === 'win32' ;
11
13
@@ -20,7 +22,19 @@ var runtest = function(skip_symlinks) {
20
22
fs . symlink ( linkData , linkPath , function ( err ) {
21
23
if ( err ) throw err ;
22
24
console . log ( 'symlink done' ) ;
23
- // todo: fs.lstat?
25
+
26
+ fs . lstat ( linkPath , function ( err , stats ) {
27
+ if ( err ) throw err ;
28
+ linkTime = stats . mtime . getTime ( ) ;
29
+ completed ++ ;
30
+ } ) ;
31
+
32
+ fs . stat ( linkPath , function ( err , stats ) {
33
+ if ( err ) throw err ;
34
+ fileTime = stats . mtime . getTime ( ) ;
35
+ completed ++ ;
36
+ } ) ;
37
+
24
38
fs . readlink ( linkPath , function ( err , destination ) {
25
39
if ( err ) throw err ;
26
40
assert . equal ( destination , linkData ) ;
@@ -48,7 +62,7 @@ if (is_windows) {
48
62
// We'll only try to run symlink test if we have enough privileges.
49
63
exec ( 'whoami /priv' , function ( err , o ) {
50
64
if ( err || o . indexOf ( 'SeCreateSymbolicLinkPrivilege' ) == - 1 ) {
51
- expected_tests = 1 ;
65
+ expected_async = 1 ;
52
66
runtest ( true ) ;
53
67
} else {
54
68
runtest ( false ) ;
@@ -59,6 +73,7 @@ if (is_windows) {
59
73
}
60
74
61
75
process . on ( 'exit' , function ( ) {
62
- assert . equal ( completed , expected_tests ) ;
76
+ assert . equal ( completed , expected_async ) ;
77
+ assert ( linkTime !== fileTime ) ;
63
78
} ) ;
64
79
0 commit comments