-
Notifications
You must be signed in to change notification settings - Fork 288
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
Make the pack build
warn that the positional argument will not be treated as the source directory path
#2256
Conversation
…not be treated as the source directory path. Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
I'm thinking about adding some test cases for when the → Done. |
… flag. Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
All the changes are complete, so please review them! |
…ified image name exists Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
With the latest two commits(cee65f2, 59a0abf) I made, the behavior of the
$ test -e apps/java-maven && echo "exists" || echo "does not exist"
exists
$ pack build apps/java-maven --builder cnbs/sample-builder:jammy
Warning: You are building an image named 'apps/java-maven'. If you mean it as an app directory path, run 'pack build <args> --path apps/java-maven'
jammy: Pulling from cnbs/sample-builder
Digest: sha256:9db376e26252b6cbc75190c88ea24571da36ec0d373136be233b32fd174962fc
Status: Image is up to date for cnbs/sample-builder:jammy
...
$ test -e aaaa && echo "exists" || echo "does not exist"
does not exist
$ pack build aaaa --builder cnbs/sample-builder:jammy
jammy: Pulling from cnbs/sample-builder
Digest: sha256:9db376e26252b6cbc75190c88ea24571da36ec0d373136be233b32fd174962fc
Status: Image is up to date for cnbs/sample-builder:jammy
...
$ test -e apps/java-maven && echo "exists" || echo "does not exist"
exists
$ pack build apps/java-maven --path apps/java-maven --builder cnbs/sample-builder:jammy
jammy: Pulling from cnbs/sample-builder
Digest: sha256:9db376e26252b6cbc75190c88ea24571da36ec0d373136be233b32fd174962fc
Status: Image is up to date for cnbs/sample-builder:jammy
... |
Signed-off-by: hhiroshell <hhiroshell@gmail.com>
internal/commands/build_test.go
Outdated
// avoid using paths generated by os.MkdirTemp() as they cause test failures on macOS. | ||
dir = "my-app-dir" + h.RandString(8) | ||
err := os.Mkdir(dir, 0700) |
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.
A path created by os.MkdirTemp() on macOS is like: /var/folders/vh/0l94sp8n6hx8qwhb6wsy_xrh0000gr/T/tmp.4ffiJJd5rq
It triggers an error in the validation of the image name when specified as a positional argument (image name), and results in test failure.
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.
Are we creating the my-app-dir
folder in the current directory? if for some reason the test fails and I am running the tests locally, will I see this new my-app-dir
like a new file not being tracked by git?
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.
I agree that creating a new directory in the local source is a bit weird. An alternative would be to invoke pack build testdata
since (I'm pretty sure) this test runs in the context of /internal/commands/. We could also try some combination of os.MkdirTemp
and os.Chdir
to create a directory with a sensible reference, but that might be a bit heavy-handed for what we need.
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.
@jjbustamante @natalieparellano
Thank you for your comments and suggestions! I'll try to fix it to use the testdata
. 🙏
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.
Done: 3aee96e
Now the code looks clean, and there will be no residue left in case of test failures. 😌
@natalieparellano If I need to explain some recent changes (#2256 (comment), #2256 (comment) ), I'll happily do so. So please let me know. |
@hhiroshell thank you for your work on this, and apologies for being slow to get back to you with a review. I think we should address the concern here: #2256 (comment) (added some suggestions) |
…s for each '--path' flag case to ensure no temp directories are left behind in case of a test failure. Signed-off-by: Hiroshi Hayakawa <hhiroshell@gmail.com>
LCOW failure seems unrelated, we are looking into it... |
Thank you for your effort, @natalieparellano. |
@natalieparellano @jjbustamante |
Thank you for your contribution @hhiroshell! |
Summary
This PR makes the
pack build
warn that the positional argument specifying the image name will not be treated as the source directory path, addressing #2231.Output
Before
After
pack build
warns it if both of the following criteria are met:--path
flag is not used.pack build
doesn't warn it if the build artifact is specified as an OCI file layout.pack build
doesn't warn it if the--path
flag is specified.Documentation
Related
Resolves #2231