Pact退出代码1

时间:2017-07-14 12:35:18

标签: node.js testing pact pact-node

我正在尝试使用Pact库执行一些测试,但是我遇到了一些错误。这是测试配置:

const path = require('path');
const Pact = require('pact');
const expect = require('expect.js');
const config = require('../../../src/server/config');
const service = require('../../../src/routes/interactions/interactions.service');

describe('@component/interactions tests', () => {
    const url = 'http://localhost';
    const port = 8989;

    const provider = Pact({
        port: port,
        log: path.resolve(process.cwd(), 'test/component/interactions/log/interactions-pact.log'),
        dir: path.resolve(process.cwd(), 'test/component/interactions/pacts'),
        spec: 2,
        consumer: 'cx_issue',
        provider: 'interaction',
        // logLevel: 'WARN'
    });

    config.settingsToExport.INTERACTION_URL = `${url}:${port}`;

    before(done => {
        provider.setup()
            .then(() => {
                done();
            })
            .catch(err => {
                done(err);
            });
    });

    after(done => {
        provider.finalize()
            .then(() => {
                done();
            })
            .catch(err => {
                done(err);
            });
    });

    describe('#createInteraction', () => {
        before(done => {
            const INTERACTION_BODY = {
                contact: 'contact1'
            };
            const TERM = {
                generate: '0dae5b93-9451-4b08-b7bb-f0b944fbcdf2',
                matcher: '^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$'
            };

            const pactInteractionCreate = {
                state: 'Creates a new interaction',
                uponReceiving: 'a new interaction is created successfully',
                withRequest: {
                    method: 'POST',
                    path: '/interactions',
                    body: INTERACTION_BODY
                },
                willRespondWith: {
                    status: 201,
                    body: {
                        id: Pact.Matchers.term(TERM)
                    }
                }
            };

            const promises = [
                provider.addInteraction(pactInteractionCreate)
            ];
            Promise.all(promises)
                .then(() => {
                    done();
                });
        });

        it('/api/interactions POST', done => {

            const interaction = {
                contact: 'The xx'
            };

            service.createInteraction(interaction)
                .then(response => {
                    expect(response.id).to.be.equal(TERM.generate);
                    done();
                })
                .catch(done);
        });
    });
});

这是我的package.json文件内容,其中包含我已安装的所有依赖项:

{
  "name": "issueAPI",
  "version": "1.0.0",
  "private": true,
  "main": "./src/index.js",
  "scripts": {
    "dev": "nodemon -e  js ./src/index.js",
    "start": "node ./src/index.js",
    "linter": "node ./node_modules/eslint/bin/eslint.js ./src",
    "test": "mocha test",
    "test-component": "mocha test/component",
    "install-test-build": "npm install && npm test && npm run linter",
    "test-build": "npm test && npm run linter"
  },
  "jshintConfig": {
    "esversion": 6
  },
  "dependencies": {
    "ajv": "^4.11.3",
    "body-parser": "^1.17.2",
    "express": "^4.15.3",
    "express-winston": "^2.4.0",
    "request": "^2.81.0",
    "winston": "^2.3.1",
    "yamljs": "^0.2.9"
  },
  "devDependencies": {
    "@pact-foundation/pact-node": "^4.8.3",
    "dotenv": "^4.0.0",
    "eslint": "^4.2.0",
    "eslint-config-node": "^1.6.0",
    "expect.js": "^0.3.1",
    "mocha": "^3.2.0",
    "nodemon": "^1.11.0",
    "pact": "^2.3.3",
    "sinon": "^2.3.8",
    "supertest": "^3.0.0"
  }
}

这是我得到的错误: enter image description here

基本上,现在我根本不介意测试是否合适。现在的主要问题是pact模拟服务器没有启动。

这里奇怪的是我有其他项目,其中pact测试正常运行。我已经将要测试的服务从未能执行那些测试的项目中移动到了,并且它正在工作(至少启动了pact模拟服务器)。这个其他项目中的依赖项与problemmathic项目几乎相同:

"dependencies": {
    "ajv": "^4.11.3",
    "body-parser": "^1.16.1",
    "dotenv": "^4.0.0",
    "express": "^4.14.0",
    "jsonwebtoken": "^7.4.1",
    "jwt-simple": "^0.5.1",
    "morgan": "^1.8.1",
    "mustache-express": "^1.2.4",
    "node-env-file": "^0.1.8",
    "request": "^2.79.0",
    "when": "^3.7.8"
  },
  "devDependencies": {
    "@pact-foundation/pact-node": "^4.8.3",
    "eslint": "^3.17.1",
    "eslint-config-node": "^1.6.0",
    "expect.js": "^0.3.1",
    "mocha": "^3.2.0",
    "nodemon": "^1.11.0",
    "pact": "^2.3.3",
    "sinon": "^1.17.7",
    "supertest": "^3.0.0",
    "nock": "^9.0.13"
  }

这种情况发生了什么?

编辑:我已使用pact标志启动了DEBUG测试,这是生成的日志: enter image description here enter image description here

3 个答案:

答案 0 :(得分:2)

看起来服务器无法正常启动,从退出代码1判断。这可能是端口8989上的端口冲突,因此值得检查。

它可能与https://github.com/pact-foundation/pact-js/issues/64(Windows文件路径长度有限)有关。

是否可以使用DEBUG启用logLevel: 'DEBUG'日志记录并记下输出内容,并共享任何*.log文件。启动服务器时,可能是参数格式不正确。

正如您所说,它无法启动底层的Ruby进程,因此我们需要深入了解它。

答案 1 :(得分:1)

最后,在@Matthew Fellows回答并阅读了https://github.com/pact-foundation/pact-js/issues/64的链接后,我将项目移动到较短的路径位置,类似于D:\myproject\,然后是pact模拟服务器推出,我的测试通过。因此,在找到更好的解决方案之前,我将在该短路径目录下工作,以避免出现更多问题。

请阅读上一个链接,以获取有关此错误的更多信息,因为有很好的解释。

答案 2 :(得分:0)

在我看来服务器没有正常启动,这通常是因为端口已被使用。要查看是否是这种情况,请在节点命令行中(在cmd中,键入node以转到节点命令行),复制/粘贴以下内容:

require('http').createServer(function(){}).listen(11108);

'listen'功能接收我从截图中获取的端口号。看看节点输出是什么;我猜它会显示这样的东西:

Error: listen EADDRINUSE :::11108
    at Object.exports._errnoException (util.js:1018:11)
    at exports._exceptionWithHostPort (util.js:1041:20)
    at Server._listen2 (net.js:1258:14)
    at listen (net.js:1294:10)
    at Server.listen (net.js:1390:5)
    at repl:1:44
    at sigintHandlersWrap (vm.js:22:35)
    at sigintHandlersWrap (vm.js:73:12)
    at ContextifyScript.Script.runInThisContext (vm.js:21:12)
    at REPLServer.defaultEval (repl.js:340:29)

这意味着实际上存在端口冲突。查看您的任务管理器,确保后台中没有任何节点运行实例可能会干扰您启动新服务器的测试。您可能还想检查运行的ruby.exe的任何版本;遗憾的是,我们必须使用pact-node打包ruby.exe,然后使用ruby旋转一个新的模拟服务器实例,因为这是它所写的语言。有时候,节点会“丢失”跟踪“红宝石实例”并没有正确关闭它。

这是我们所熟知的问题,我们正在积极尝试通过将所有核心协议代码整合到一个共享库中来解决这个问题,该共享库可以在所有语言和操作系统中使用,而无需启动一个额外的例子。请耐心等待我们解决这些问题:)