Protractor E2E Test Seed Database

流过昼夜 提交于 2019-12-20 10:39:38

问题


I haven't found a good way of doing this so hoping someone has some ideas. Is there any way to seed the database with test data before running a E2E Protractor test?

Do people do this or do they just mock out the back end? Mocking out the back end for me is not an option so would appreciate ideas on how to seed the database. There are a few solutions out there using node but nothing conclusive.

The whole point of E2E testing for my case would be to go to the DB level

Thanks


回答1:


Being in a NodeJs environment, you can connect to the database directly from Protractor, but I wouldn't go down that route. You'll have to update your SQL-setup-script along with your changes to your back-end.

There are other ways:

  1. Use your existing REST facade to populate your database - register a user, connect with another user, etc. If you set-up each of your tests with unique data you would be able to run them simultaneously that way.
  2. Expose to your test environment a special REST point that does all the clearing/setting-up for you between tests.

You can fire REST calls directly from the Protractor environment or use your browser for that.



来源:https://stackoverflow.com/questions/28452915/protractor-e2e-test-seed-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!