Тесты пряжи на Heroku не могут подключиться к моему внутреннему коду - PullRequest
0 голосов
/ 25 апреля 2018

Я пытаюсь выполнить тесты по конвейеру Heroku со следующим app.json:

{
  "environments": {
    "test": {
      "addons": [
        {
          "plan": "mongolab:sandbox"
        }
      ],
      "scripts": {
        "test": "yarn test && ((nohup yarn test:start:api &) && sleep 10 && yarn test:integration)"
      }
    }
  }
}

Локально на моей машине Linux команда работает, но на Heroku я не могу связаться со службой API:

-----> Running test command `yarn test && ((nohup yarn test:start:api &) && sleep 10 && yarn test:integration)`...
yarn run v1.6.0
warning package.json: No license field
$ mocha-webpack --webpack-config ./webpack.config.js --require test/setup.js model/**/*.spec.js api/**/*.spec.js
 WEBPACK  Compiling...
 WEBPACK  Compiled successfully in 792ms
 MOCHA  Testing...
  0 passing (1ms)
 MOCHA  Tests completed successfully
Done in 4.12s.
yarn run v1.6.0
warning package.json: No license field
$ babel-node ./server.js --presets es2015,stage-2
yarn run v1.6.0
warning package.json: No license field
$ mocha-webpack --webpack-config ./webpack.config.js --require test/setup.js model/**/*.integration.js api/**/*.integration.js
 WEBPACK  Compiling...
 WEBPACK  Compiled successfully in 1092ms
 MOCHA  Testing...
  User
Db.prototype.authenticate method will no longer be available in the next major release 3.x as MongoDB 3.6 will only allow auth against users in the admin db and will no longer allow multiple credentials on a socket. Please authenticate using MongoClient.connect with auth credentials.
(node:570) DeprecationWarning: `open()` is deprecated in mongoose >= 4.11.0, use `openUri()` instead, or set the `useMongoClient` option if using `connect()` or `createConnection()`. See http://mongoosejs.com/docs/connections.html#use-mongo-client
Db.prototype.authenticate method will no longer be available in the next major release 3.x as MongoDB 3.6 will only allow auth against users in the admin db and will no longer allow multiple credentials on a socket. Please authenticate using MongoClient.connect with auth credentials.
Successfully initialized mongoose-seed
Users collection cleared
Successfully created document [0] of User model
Error: Error: connect ECONNREFUSED 127.0.0.1:8080
...

Как определить URI для подключения к самой API-службе (nohup yarn test:start:api &)?

API построен с express-restify-mongoose, и, как кажется, нет встроенного тестирования, такого как внедрение с помощью hapijs (https://hapijs.com/api#-await-serverinjectoptions)

Как я могу запустить мои тесты на Heroku?

1 Ответ

0 голосов
/ 25 апреля 2018

Ваши тесты пытаются подключиться к 127.0.0.1:8080, но ваше веб-приложение почти наверняка работает в другом месте. Heroku предоставляет переменную окружения PORT , сообщающую вашему внутреннему коду, какой порт он должен использовать.

Попробуйте обновить свои тесты, чтобы подключиться к любой переменной, которая хранится вместо 8080.

...