javascript – NodeJS:如何在运行docker应用程序时进行nightmareJS e2e测试

我正在从我的高效构建应用程序(nodeJS app)创建一个用于测试目的的docker镜像/容器.

现在我想用mocha / chai和nightmareJS做一些e2e测试.所以我创建了一个非常基本的测试文件.

我现在的问题是如何测试正在运行的应用程序.所以我想’加载’应用程序就像

- goto http://localhost
- check if login form is existing
- do login
- check if login was successful

我不知道如何在我的docker image / e2e.js文件中执行此操作…

这就是我创建docker镜像的方式:

Dockerfile

# Use the production image as base image
FROM productive_build:latest

# Copy the test files
COPY e2e.js /

# Override the NODE_ENV environment variable to 'dev', in order to get required test packages
ENV NODE_ENV dev

# 1. Get test packages; AND
# 2. Install our test framework - mocha
RUN (cd programs/server && npm install)
RUN npm install -g mocha
RUN npm install chai nightmare

# Override the command, to run the test instead of the application
CMD ["mocha", "e2e.js", "--reporter", "spec"]

这就是我的基本e2e.js文件的样子:

e2e.js

var Nightmare = require('nightmare'),
    expect = require('chai').expect

describe('test', function () {
  it('should always be true', function () {
    var nightmare = Nightmare()
    nightmare.end()
    expect(true).to.be.true
  })
})

最佳答案 通过查看你的Docker文件我不是很确定,而是通过查看你的评论

Override the command, to run the test instead of the application

在安装了它的依赖项之后,你仍然需要自己启动网站,然后是mocha.由于docker一次只能运行一个进程,您可能需要查看supervisord,但您也可以将您的网站作为后台进程,然后启动测试.

使用bash脚本的入口点而不是CMD:

ENTRYPOINT ["./bin/run.sh"]

脚本本身就是这样的:

#!/bin/bash
npm start & mocha e2e.js --reporter spec

至于测试本身,你可以做这样的事情来测试你的登录流程.这只是一个例子,你可能需要调整一些东西,比如元素选择器和其他一些东西,但它仍然是一个很好的起点.

var Nightmare = require('nightmare')
var expect = require('chai').expect

describe('test login', function () {

 it('should login and display my username', function (done) {
    var nightmare = Nightmare({ show: false })

    nightmare
      .goto('http://localhost:8000') // your local url with the correct port
      .type('#login', 'your login') // change value of the login input
      .type('#password', 'your password')
      .click('#submit') // click the submit button
      .wait('#my-username') // wait for this element to appear (page loaded)
      .evaluate(function () {
        // query something once logged on the page
        return document.querySelector('#my-username').innerText
      })
      .end()
      .then(function (result) {
        // the result will be the thing you grabbed from the window in the evaluate
        expect(result).to.equal('user3142695')
        done()
      })
      .catch(done)

  })

})
点赞