GitLab-CI和node.js - 如何启动本地服务器然后运行测试?

时间:2016-01-26 01:53:52

标签: node.js mocha gitlab gitlab-ci gitlab-ci-runner

我已经设置了GitLab-CI,正在编写我的.gitlab-ci.yml来运行我的测试。我的应用程序是用node.js编写的,文件如下所示:

before_script:
  - npm install
  - node server.js

stages:
  - test

job_name:
  stage: test
  script:
    - npm run test

我在启动服务器然后运行测试时遇到了麻烦,因为node server.js创建了一个从不存在的前台进程,除非您手动执行此操作。有没有办法启动服务器,然后继续,然后在测试完成后停止它?

或者我实际上做错了,我的服务器应该自己开始测试吗?我读到的所有内容都说“启动节点然后在另一个终端上运行您对本地服务器的测试”,但这在自动CI系统中显然毫无意义?

2 个答案:

答案 0 :(得分:3)

我有完全相同的设置,使用gitlab-ci docker runner。在启动测试之前,您不需要启动node server.js,您可以让测试运行器处理它。我使用Mocha + Chai(带chai-http)。您也可以使用supertest来做同样的事情。

在每次测试之前查找可用端口,这样您就不会遇到冲突的端口。

以下是它的外观:

var chai = require('chai');
var chaiHttp = require('chai-http');
// Interesting part
var app = require('../server/server');
var loginUser = require('./login.js');
var auth = {token: ''};

chai.use(chaiHttp);
chai.should();

describe('/users', function() {

  beforeEach(function(done) {
    loginUser(auth, done);
  });

  it('returns users as JSON', function(done) {
    // This is what launch the server
    chai.request(app)
    .get('/api/users')
    .set('Authorization', auth.token)
    .then(function (res) {
      res.should.have.status(200);
      res.should.be.json;
      res.body.should.be.instanceof(Array).and.have.length(1);
      res.body[0].should.have.property('username').equal('admin');
      done();
    })
    .catch(function (err) {
      return done(err);
    });
  });
});

答案 1 :(得分:1)

或者,您可以使用nohup命令在后台启动服务器。

$ nohup node server.js &

(行末尾的&用于返回提示)

在你的例子中:

before_script:
  - npm install
  - nohup node server.js &

stages:
  - test

job_name:
  stage: test
  script:
    - npm run test