2016-04-12 122 views
0

我幾乎肯定會以錯誤的方式解決這個問題,所以首先提出我的高級需求。運行序列同步任務永遠不會完成

我正在使用angular2-seed並希望使用Xvfb在無頭模式下運行量角器測試。我不希望任何時候都運行Xvfb服務器(這是一個構建服務器),所以我想旋轉一個Xvfb服務,使用量角器做它的事情,然後「優雅地」關閉Xvfb。孤立地說,這些任務工作正常,但是我將它們添加到gulp構建設置中時遇到了困難。

這裏是在gulpfile任務:

gulp.task('e2e.headless', (done: any) => 
    runSequence('start.xvfb', 
       'protractor', 
       'stop.xvfb', 
       done)); 

本身是通過個人的打字稿任務文件裝入任務,即:

import {runProtractor} from '../../utils'; 

export = runProtractor 

這裏是我的(最新)實用程序文件本身。

protractor.ts

import * as util from 'gulp-util'; 
import {normalize, join} from 'path'; 
import {ChildProcess} from 'child_process'; 

function reportError(message: string) { 
    console.error(require('chalk').white.bgRed.bold(message)); 
    process.exit(1); 
} 

function promiseFromChildProcess(child: ChildProcess) { 
    return new Promise(function (resolve:() => void, reject:() => void) { 
    child.on('close', (code: any) => { 
     util.log('Exited with code: ', code); 
     resolve(); 
    }); 
    child.stdout.on('data', (data: any) => { 
     util.log(`stdout: ${data}`); 
    }); 

    child.stderr.on('data', (data: any) => { 
     util.log(`stderr: ${data}`); 
     reject(); 
    }); 
    }); 
} 

export function runProtractor(): (done:() => void) => void { 
    return done => { 
    const root = normalize(join(__dirname, '..', '..', '..')); 
    const exec = require('child_process').exec; 

    // Our Xvfb instance is running on :99 
    // TODO: Pass this in instead of hard-coding 
    process.env.DISPLAY=':99'; 
    util.log('cwd:', root); 

    let child = exec('protractor', { cwd: root, env: process.env}, 
     function (error: Error, stdout: NodeBuffer, stderr: NodeBuffer) { 
     if (error !== null) { 
      reportError('Protractor error: ' + error + stderr); 
     } 
     }); 
    promiseFromChildProcess(child).then(() => done()); 
    }; 
} 

xvfb_tools.ts

import * as util from 'gulp-util'; 

const exec = require('child_process').exec; 

function reportError(message: string) { 
    console.error(require('chalk').white.bgRed.bold(message)); 
    process.exit(1); 
} 

export function stopXvfb() { 
    return exec('pkill -c -n Xvfb', 
     function (error: NodeJS.ErrnoException, stdout: NodeBuffer, stderr: NodeBuffer) { 
      if (error !== null) { 
       reportError('Failed to kill Xvfb. Not really sure why...'); 
      } else if (stdout.toString() === '0') { 
       reportError('No known Xvfb instance. Is it running?'); 
      } else { 
       util.log('Xvfb terminated'); 
      } 
     }); 
} 

export function startXvfb() { 
    return exec('Xvfb :99 -ac -screen 0 1600x1200x24', 
     function (error: NodeJS.ErrnoException, stdout: NodeBuffer, stderr: NodeBuffer) { 
      if (error !== null && error.code !== null) { 
       reportError('Xvfb failed to start. Err: ' + error.code + ', ' + error + ', ' + stderr); 
      } 
     }); 
} 

我感覺好像我在房前屋後創建從一個承諾可能將我的exec child_process,但代碼的早期交互沒有它,所以... 請注意,顯示根目錄的runProtractor()應輸出的調試日誌記錄永遠不會被調用,所以我很確定這裏有一個異步問題。這是從任務的輸出:

[00:47:49] Starting 'e2e.headless'... 
[00:47:49] Starting 'start.xvfb'... 
[00:47:49] Finished 'start.xvfb' after 12 ms 
[00:47:49] Starting 'protractor'... 
[00:47:49] Finished 'protractor' after 5.74 ms 
[00:47:49] Starting 'stop.xvfb'... 
[00:47:49] Finished 'stop.xvfb' after 11 ms 
[00:47:49] Finished 'e2e.headless' after 38 ms 
[00:47:49] Xvfb terminated 

有人可以讓我直/推我在正確的方向嗎?

回答

0

感謝來自角2種子團隊的Ludovic!

錯誤在於未從包裝類中調用runProtractor函數,即 export = runProtractor()。一旦發現這一點,我就可以去除不必要的包裝函數以及promiseFromChildProcess,這些都是分心的。

最後的任務只是一個匿名函數,它吞氣回調「完成」退出時被稱爲:

function reportError(message: string) { 
    console.error(require('chalk').white.bgRed.bold(message)); 
    process.exit(1); 
} 

export = (done: any) => { 
    const root = normalize(join(__dirname, '..', '..', '..')); 
    const exec = require('child_process').exec; 

    process.env.DISPLAY=':99'; 
    util.log('cwd:', root); 

    exec('protractor', { cwd: root, env: process.env}, 
     function (error: Error, stdout: NodeBuffer, stderr: NodeBuffer) { 
     if (error !== null) { 
      reportError('Protractor error: ' + error + stderr); 
     } else { 
      done(); 
     } 
     }); 
} 
0

您需要爲您的吞嚥任務添加回調函數,並在所有runSequence任務完成後調用cb函數。

gulp.task('e2e.headless', (cb) => 
runSequence('start.xvfb', 
    'protractor', 
    'stop.xvfb', 
    (err) => 
     if (err) { 
      console.log(err.message); 
     } else { 
      console.log("Build finished successfully"); 
     } 
     cb(err); 
    }); 
}); 
+0

不是什麼'done'是在我目前的任務嗎? – GMeister

+0

是的,完成執行? – Vish

+0

這不是,請參閱我的答案爲什麼 - 謝謝 – GMeister

相關問題