-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Expected Log validation #351
Comments
Logging is typically done through stderr. The Command tests have to run to completion in order to capture its state of the test container that is created from the image. You will need to invoke your process (psql, it looks like?) in a way that runs to completion. Perhaps you can run the server process as a daemon/background process, get the PID then immediately send a |
Thanks! The log can be redirected somehow through the |
I've faced the same issue, and I agree that it would be nice to have built-in support for this use case in container-structure-test. As a workaround, if available in the image, I've used the Linux Something like that should do the trick:
|
I'd like to use this tool to test if the main process of a docker image can start successfully, without issues. The fact is that the process is meant to not exit, since it has to keep the container alive, and so there is no exit code/output. Looking at the available features I didn't find anything allowing this.
The process logs something like this if starts successfully:
2023-05-09 13:20:48.242 UTC [1] LOG: database system is ready to accept connections
The
container-structure-test test
process gets stuck if used this way, because it waits for the container to exit which never happens.It would be cool having an
ExpectedLog
field to be used along with a timeout. Something like this:The text was updated successfully, but these errors were encountered: