@@ -32,61 +32,21 @@ var expectLevelAsync = function(headless, levelBlob) {
32
32
return ;
33
33
}
34
34
35
- var hasWarned = false ;
36
- var start ;
37
- runs ( function ( ) {
38
- start = Date . now ( ) ;
39
- headless . sendCommand ( command ) ;
35
+ return headless . sendCommand ( command ) . then ( function ( ) {
36
+ expect ( compareLevelTree ( headless , levelBlob ) ) . toBeTruthy ( ) ;
40
37
} ) ;
41
- waitsFor ( function ( ) {
42
- var diff = ( Date . now ( ) - start ) ;
43
- if ( diff > TIME - 10 && ! hasWarned ) {
44
- hasWarned = true ;
45
- console . log ( 'this goal tree' , loadTree ( levelBlob . goalTreeString ) ) ;
46
- console . log ( 'not going to match with command' , command ) ;
47
- console . log ( getHeadlessSummary ( headless ) ) ;
48
- }
49
- var result = compareLevelTree ( headless , levelBlob ) ;
50
- if ( result ) {
51
- console . log ( 'solved level ' + levelBlob . name . en_US ) ;
52
- }
53
- return result ;
54
- } , 'trees should be equal' , TIME ) ;
55
38
} ;
56
39
57
40
var expectTreeAsync = function ( command , expectedJSON , startJSON ) {
58
41
var headless = new HeadlessGit ( ) ;
59
- var start = Date . now ( ) ;
60
- var haveReported = false ;
61
42
62
43
if ( startJSON ) {
63
44
headless . gitEngine . loadTreeFromString ( startJSON ) ;
64
45
}
65
46
66
- runs ( function ( ) {
67
- headless . sendCommand ( command ) ;
47
+ return headless . sendCommand ( command ) . then ( function ( ) {
48
+ expect ( compareAnswer ( headless , expectedJSON ) ) . toBeTruthy ( ) ;
68
49
} ) ;
69
- waitsFor ( function ( ) {
70
- var diff = ( Date . now ( ) - start ) ;
71
- if ( diff > TIME - 40 && ! haveReported ) {
72
- haveReported = true ;
73
- var expected = loadTree ( expectedJSON ) ;
74
- console . log ( 'not going to match' , command ) ;
75
- console . log ( 'expected\n>>>>>>>>\n' , expected ) ;
76
- console . log ( '\n<<<<<<<<<<<\nactual' , getHeadlessSummary ( headless ) ) ;
77
- console . log ( '\n<<<<ORIGIN>>>>>\n' ) ;
78
- if ( expected . originTree ) {
79
- console . log ( 'expected origin tree:' ) ;
80
- console . log ( expected . originTree ) ;
81
- console . log ( '\n=========\n' ) ;
82
- console . log ( 'actual origin tree' ) ;
83
- console . log ( getHeadlessSummary ( headless ) . originTree ) ;
84
- }
85
- console . log ( expectedJSON ) ;
86
- console . log ( JSON . stringify ( getHeadlessSummary ( headless ) ) ) ;
87
- }
88
- return compareAnswer ( headless , expectedJSON ) ;
89
- } , 'trees should be equal' , 500 ) ;
90
50
} ;
91
51
92
52
var expectLevelSolved = function ( levelBlob ) {
@@ -102,20 +62,12 @@ var runCommand = function(command, resultHandler) {
102
62
var deferred = Q . defer ( ) ;
103
63
var msg = null ;
104
64
105
- deferred . promise . then ( function ( commands ) {
106
- msg = commands [ commands . length - 1 ] . get ( 'error' ) . get ( 'msg' ) ;
65
+ return headless . sendCommand ( command , deferred ) . then ( function ( ) {
66
+ return deferred . promise . then ( function ( commands ) {
67
+ msg = commands [ commands . length - 1 ] . get ( 'error' ) . get ( 'msg' ) ;
68
+ resultHandler ( msg ) ;
69
+ } ) ;
107
70
} ) ;
108
-
109
- runs ( function ( ) {
110
- headless . sendCommand ( command , deferred ) ;
111
- } ) ;
112
- waitsFor ( function ( ) {
113
- if ( null == msg ) {
114
- return false ;
115
- }
116
- resultHandler ( msg ) ;
117
- return true ;
118
- } , 'commands should be finished' , 500 ) ;
119
71
} ;
120
72
121
73
var TIME = 150 ;
@@ -131,4 +83,3 @@ module.exports = {
131
83
ONE_COMMIT_TREE : ONE_COMMIT_TREE ,
132
84
runCommand : runCommand
133
85
} ;
134
-
0 commit comments