-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set
$HOME
to $CNB_APP_DIR
when running .profile.d/
scripts at l…
…aunch (#23) `$HOME` is now temporarily set to `$CNB_APP_DIR` whilst `.profile.d/` are run, since many classic buildpacks assume that `$HOME` refers to the app source directory, and use `$HOME` when setting `PATH` and other env vars in their `.profile.d/` scripts. This removes cnb-shim's reliance on the base run image having overridden `HOME` to eg `/app`.
- Loading branch information
Showing
5 changed files
with
132 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package cnbshim_test | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"io/ioutil" | ||
"os" | ||
"os/exec" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestBuild(t *testing.T) { | ||
tmp, err := ioutil.TempDir("", "build") | ||
require.NoError(t, err) | ||
t.Cleanup(func() { | ||
_ = os.RemoveAll(tmp) | ||
}) | ||
|
||
// set up test env | ||
require.NoError(t, os.MkdirAll(tmp+"/layers", 0755)) | ||
require.NoError(t, os.MkdirAll(tmp+"/platform", 0755)) | ||
require.NoError(t, os.MkdirAll(tmp+"/buildpack/target", 0755)) | ||
require.NoError(t, os.MkdirAll(tmp+"/buildpack/bin", 0755)) | ||
|
||
require.NoError(t, exec.Command("cp", "-r", "test/fixtures/build/app", tmp+"/").Run()) | ||
require.NoError(t, exec.Command("cp", "-r", "test/fixtures/build/buildpack/.", tmp+"/buildpack/target/").Run()) | ||
require.NoError(t, exec.Command("cp", "bin/build", tmp+"/buildpack/bin/").Run()) | ||
// add fake exports and release binaries | ||
require.NoError(t, ioutil.WriteFile(tmp+"/buildpack/bin/exports", nil, 0755)) | ||
require.NoError(t, ioutil.WriteFile(tmp+"/buildpack/bin/release", nil, 0755)) | ||
|
||
// run bin/build | ||
var out bytes.Buffer | ||
cmd := exec.Command(tmp+"/buildpack/bin/build", tmp+"/layers", tmp+"/platform") | ||
cmd.Dir = tmp + "/app" | ||
cmd.Env = append(os.Environ(), "CNB_STACK_ID=heroku-20", "ALLOW_EOL_SHIMMED_BUILDER=1") | ||
cmd.Stdout = &out | ||
cmd.Stderr = &out | ||
err = cmd.Run() | ||
if _, ok := err.(*exec.ExitError); err != nil && ok { | ||
t.Logf("bin/build output:\n%s", out.String()) | ||
} | ||
require.NoError(t, err) | ||
|
||
contains := []string{ | ||
"got STACK=heroku-20", | ||
fmt.Sprintf("got arg 0=%s/app", tmp), | ||
fmt.Sprintf("got arg 1=%s/layers/shim", tmp), | ||
fmt.Sprintf("got arg 2=%s/platform/env", tmp), | ||
} | ||
for _, c := range contains { | ||
assert.Contains(t, out.String(), c) | ||
} | ||
|
||
files := []string{ | ||
"/layers/profile.toml", | ||
"/layers/profile/env.build", | ||
"/layers/profile/profile.d/1.sh", | ||
} | ||
for _, f := range files { | ||
_, err := os.Stat(tmp + f) | ||
assert.NoError(t, err, f) | ||
} | ||
|
||
out = bytes.Buffer{} | ||
cmd = exec.Command("bash", "-c", fmt.Sprintf(` | ||
echo | ||
echo "before HOME=$HOME" | ||
source "%s" | ||
echo "after HOME=$HOME" | ||
`, tmp+"/layers/profile/profile.d/1.sh")) | ||
cmd.Dir = tmp + "/app" | ||
cmd.Env = []string{"HOME=/home/app"} | ||
cmd.Stdout = &out | ||
cmd.Stderr = &out | ||
require.NoError(t, cmd.Run()) | ||
assert.Equal(t, fmt.Sprintf(` | ||
before HOME=/home/app | ||
buildpack HOME=%s | ||
after HOME=/home/app | ||
`, tmp+"/app"), out.String()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
i=0 | ||
for var in "$@"; do | ||
echo "got arg ${i}=${var}" | ||
i=$((i + 1)) | ||
done | ||
|
||
echo "got STACK=$STACK" | ||
|
||
mkdir .profile.d | ||
echo 'echo "buildpack HOME=$HOME"' >.profile.d/1.sh | ||
|
||
BIN_DIR=$( | ||
cd "$(dirname "$0")" | ||
pwd | ||
) # absolute path | ||
touch "${BIN_DIR}/../export" |