-
Notifications
You must be signed in to change notification settings - Fork 340
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
test(e2e): improve universal app run #13033
Conversation
Reviewer Checklist🔍 Each of these sections need to be checked by the reviewer of the PR 🔍:
|
Did you mean "fix #13123"? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in generat 👍 - a copule of Qs
Rely on constant ssh connection and make things easier to get report out Signed-off-by: Charly Molter <[email protected]>
Signed-off-by: Charly Molter <[email protected]>
Signed-off-by: Charly Molter <[email protected]>
Signed-off-by: Charly Molter <[email protected]>
Signed-off-by: Charly Molter <[email protected]>
Signed-off-by: Charly Molter <[email protected]>
zone1, "demo-client", "external-service-1.mesh", | ||
client.WithVerbose(), | ||
) | ||
g.Expect(err).ToNot(HaveOccurred()) | ||
g.Expect(stdout).To(ContainSubstring("HTTP/1.1 200 OK")) | ||
g.Expect(stderr).To(ContainSubstring("HTTP/1.1 200 OK")) | ||
g.Expect(stdout).ToNot(ContainSubstring("HTTPS")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lahabana don't we need to change this line as well, is everything now on stderr
?
Motivation
It was very hard to have a complete and readable state of things in the test report because we were executing one of ssh cmds in different places.
We now keep a persistent ssh session for the whole time of the app which makes things easier to track and the output easier to consume.
Implementation information
the ssh package was completely redesigned to keep an ssh session rather than forking to execute
ssh
commands. This makes things easier to follow, easier to write lengthy scripts without caring about escaping things correctly for bash.Once this was done we could start a CP or run a DP with a single cmdLine instead of a list of complex calls.
This makes the report a lot easier as it avoids a lot of noisy stuff.
Other minor changes:
Supporting documentation
Fix #13123