Any good resource libraries (non-people)?

As our automated testing infrastructure grows, we need to automatically manage test resources (servers, etc.). Do not manage updates on systems, but have an automatic (software) way to reserve resources for use in automatic test launches and release of resources upon completion. I need to be able to add items to the system, store metadata about them, reserve them, and release resources upon completion. Are there any existing systems that manage resources in a way that can be integrated with other programs? The target languages ​​for interacting with such systems are Java or C #, but if something else well exists in another language (or was somehow for interacting with it from other languages), I would also look at it.

+3
source share
2 answers

It seems that there is no answer, and I need to roll my own.

0
source

Have you looked at the selenium grate? It allows you to requisition a cluster of servers for automatic testing. It even works with Amazon cloud computing. http://selenium-grid.seleniumhq.org/

0
source

Source: https://habr.com/ru/post/1725043/


All Articles