Background:
We have a windows installer which simply installs and starts our custom WinForms installation program. This custom installer does the real installation: creating an IIS Web Application, copying dlls, installing database, etc...
We now want to write some automated acceptance tests, which will include installing the software using the same installation procedure as we use in production. We want to start by running the acceptance tests every night on a dedicated machine, and later as part of a continuous integration pipeline.
Problem:
It is proving difficult to automate the WinForms installation program. And we do not want special installation code for the acceptance tests.
Question:
What advice do you clever people have for integrating the deployment process into an automated test?
I suspect that the decision to use WinForms for the installer was a bad choice - particularly because the resulting application does not clearly separate the UI code from the real installation code.