Skip to content
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

[CI] new command implementation for tests #4056

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

apostasie
Copy link
Contributor

@apostasie apostasie commented Mar 29, 2025

Note this is a large PR, though the bulk of the changes are under a couple of files in mod/tigron/internal, and probably half of it is just tests.

This PR is a tigron changeset addressing a few important issues:

In a shell: icmd does not provide value for us. Most of its features we do not use, and the simple wrapping around golang command exec is causing more issues than it solves - icmd does replace the process standard streams with its own buffers, which gets in the way of using ptys, does not provide proper timeout logic for stuck processes, and does not seem to kill process groups properly.

This PR does away with it, and replace it with an internal com.Command that does offer:

  • proper timeout
  • pty handling
  • proper process group termination

... along with absorbing a large part of the logic that was previously baked into test/command.go (env filtering, cloning, command wrapping).

While this should technically be (mostly) transparent for tests, some of the logic changes with timeout and pty / stdin handling required adaptation of some functions signatures.

Specifically:

  • Background(timeout) is now simply Background(), as the new WithTimeout helper now applies to any command, and not just the background-ed ones
  • WithPTY no longer supports the extra "writers" argument. To write to stdin, the same methods can now be used whether or not we are working with a PTY
  • the previous WithStdin method was ill-named/ill-advised, as it is not setting stdin, but writing to stdin, can be used repeatedly, and lacked flexibility. It has been replaced by Feed(io.Reader) for the simpler cases, and WithFeeder(func()io.Reader) that allows for more complex logic before writing to stdin (like Pty(writers) used to)

Note that we might want to tweak the current default timeout for commands execution (3 minutes rn).

Blocked by:

Preferable to merge after:

TODO:

  • green CI
  • mute the logging from pipes by default

@apostasie
Copy link
Contributor Author

@AkihiroSuda I will deal with the rebasing once we get all the dependent PR merged-in, but this is ready for review for all intent and purposes.

I am not sure we can break this down further in individual PRs (I did break it in individual commits though, that should help review), but LMK if you want me to yank something specific out in a separate PR.

@AkihiroSuda AkihiroSuda added this to the v2.0.5 milestone Mar 30, 2025
@AkihiroSuda AkihiroSuda requested a review from a team March 30, 2025 15:45
@AkihiroSuda AkihiroSuda added the area/ci e.g., CI failure label Mar 30, 2025
@apostasie
Copy link
Contributor Author

apostasie commented Mar 30, 2025

Reviewers


All commits except one are mundane.

The one that matters (1892 loc) is: 2bc62a5#diff-66fe4e3b3287c94bcd9942c86d92bb7259988cbc2aa6345a47dc2b56d14f411b - which contains the new command implementation alongside with its tests, examples, etc.
Every other commit is to adapt tests to that.


One thing we might want to discuss is the change in debugging output (hopefully for increased readability)

https://github.com/containerd/nerdctl/pull/4056/files#diff-6f39df8dbcc138b24b0571ad7adbdaad83187ebac09a336de1f0755299752952R169-R196

Visually it will change this:

Screenshot 2025-03-30 at 12 09 42 PM

Into:

Screenshot 2025-03-30 at 12 06 49 PM

I am not particularly attached to the actual output (as long as it is more readable), so, if you would prefer it organize / formatted differently, lmk.

@apostasie apostasie force-pushed the ci-tigron-cmd branch 2 times, most recently from 329b0ca to c62aea8 Compare March 30, 2025 17:55
@apostasie
Copy link
Contributor Author

apostasie commented Mar 30, 2025

FIXED

I guess we are having a birthday party today - for ghcr.io/stargz-containers/alpine:3.13-org

CreatedAt: "2021-03-31T17:21:23Z"

So, this is no longer "3 years ago" - it is now "4 years ago"...

Need to do something for that test.

https://github.com/containerd/nerdctl/blob/main/cmd/nerdctl/image/image_history_test.go#L97-L98

At least we now know the answer to that question 😅.

Signed-off-by: apostasie <[email protected]>
- use internal/com instead of icmd
- move pty from test/internal to internal
- update go mod, sum, and depguard

Signed-off-by: apostasie <[email protected]>
- Background() signature change
- command creation change

Signed-off-by: apostasie <[email protected]>
- Background
- Feed, WithFeeder, WithPseudoTTY
- use exit code consts where appropriate
- some --quiet

Signed-off-by: apostasie <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ci e.g., CI failure
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[CI]: fix commands being stuck problem CI: icmd is not usable to test when binary expect a console
2 participants