-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: sarthak <[email protected]>
add test for scafall feature
- Loading branch information
1 parent
c8155f4
commit f2718ff
Showing
1 changed file
with
148 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
package commands_test | ||
|
||
import ( | ||
"bytes" | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"github.com/buildpacks/pack/pkg/client" | ||
"github.com/buildpacks/pack/pkg/logging" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/heroku/color" | ||
"github.com/sclevine/spec" | ||
"github.com/sclevine/spec/report" | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/buildpacks/pack/internal/commands" | ||
"github.com/buildpacks/pack/internal/commands/testmocks" | ||
h "github.com/buildpacks/pack/testhelpers" | ||
) | ||
|
||
func TestExtensionNewCommand(t *testing.T) { | ||
color.Disable(true) | ||
defer color.Disable(false) | ||
spec.Run(t, "ExtensionNewCommand", testExtensionNewCommand, spec.Parallel(), spec.Report(report.Terminal{})) | ||
} | ||
|
||
func testExtensionNewCommand(t *testing.T, when spec.G, it spec.S) { | ||
var ( | ||
command *cobra.Command | ||
logger *logging.LogWithWriters | ||
outBuf bytes.Buffer | ||
mockController *gomock.Controller | ||
mockClient *testmocks.MockPackClient | ||
tmpDir string | ||
) | ||
|
||
it.Before(func() { | ||
var err error | ||
tmpDir, err = os.MkdirTemp("", "build-test") | ||
h.AssertNil(t, err) | ||
|
||
logger = logging.NewLogWithWriters(&outBuf, &outBuf) | ||
mockController = gomock.NewController(t) | ||
mockClient = testmocks.NewMockPackClient(mockController) | ||
|
||
command = commands.BuildpackNew(logger, mockClient) | ||
}) | ||
|
||
it.After(func() { | ||
os.RemoveAll(tmpDir) | ||
}) | ||
|
||
when("ExtensionNew#Execute", func() { | ||
it("uses the args to generate artifacts", func() { | ||
mockClient.EXPECT().NewBuildpack(gomock.Any(), client.NewExtensionOptions{ | ||
API: "0.8", | ||
ID: "example/some-cnb", | ||
Path: filepath.Join(tmpDir, "some-cnb"), | ||
Version: "1.0.0", | ||
}).Return(nil).MaxTimes(1) | ||
|
||
path := filepath.Join(tmpDir, "some-cnb") | ||
command.SetArgs([]string{"--path", path, "example/some-cnb"}) | ||
|
||
err := command.Execute() | ||
h.AssertNil(t, err) | ||
}) | ||
|
||
it("stops if the directory already exists", func() { | ||
err := os.MkdirAll(tmpDir, 0600) | ||
h.AssertNil(t, err) | ||
|
||
command.SetArgs([]string{"--path", tmpDir, "example/some-cnb"}) | ||
err = command.Execute() | ||
h.AssertNotNil(t, err) | ||
h.AssertContains(t, outBuf.String(), "ERROR: directory") | ||
}) | ||
|
||
when("target flag is specified, ", func() { | ||
it("it uses target to generate artifacts", func() { | ||
mockClient.EXPECT().NewBuildpack(gomock.Any(), client.NewExtensionOptions{ | ||
API: "0.8", | ||
ID: "example/targets", | ||
Path: filepath.Join(tmpDir, "targets"), | ||
Version: "1.0.0", | ||
}).Return(nil).MaxTimes(1) | ||
|
||
path := filepath.Join(tmpDir, "targets") | ||
command.SetArgs([]string{"--path", path, "example/targets", "--targets", "linux/arm/v6:[email protected]@16.04"}) | ||
|
||
err := command.Execute() | ||
h.AssertNil(t, err) | ||
}) | ||
it("it should show error when invalid [os]/[arch] passed", func() { | ||
mockClient.EXPECT().NewBuildpack(gomock.Any(), client.NewExtensionOptions{ | ||
API: "0.8", | ||
ID: "example/targets", | ||
Path: filepath.Join(tmpDir, "targets"), | ||
Version: "1.0.0", | ||
}).Return(nil).MaxTimes(1) | ||
|
||
path := filepath.Join(tmpDir, "targets") | ||
command.SetArgs([]string{"--path", path, "example/targets", "--targets", "os/arm/v6:[email protected]@16.04"}) | ||
|
||
err := command.Execute() | ||
h.AssertNotNil(t, err) | ||
}) | ||
when("it should", func() { | ||
it("support format [os][/arch][/variant]:[name@version@version2];[some-name@version@version2]", func() { | ||
mockClient.EXPECT().NewBuildpack(gomock.Any(), client.NewExtensionOptions{ | ||
API: "0.8", | ||
ID: "example/targets", | ||
Path: filepath.Join(tmpDir, "targets"), | ||
Version: "1.0.0", | ||
}).Return(nil).MaxTimes(1) | ||
|
||
path := filepath.Join(tmpDir, "targets") | ||
command.SetArgs([]string{"--path", path, "example/targets", "--targets", "linux/arm/v6:[email protected]@16.04;[email protected]@10.9", "-t", "windows/amd64:[email protected]"}) | ||
|
||
err := command.Execute() | ||
h.AssertNil(t, err) | ||
}) | ||
}) | ||
when("stacks ", func() { | ||
it("flag should show deprecated message when used", func() { | ||
mockClient.EXPECT().NewBuildpack(gomock.Any(), client.NewExtensionOptions{ | ||
API: "0.8", | ||
ID: "example/stacks", | ||
Path: filepath.Join(tmpDir, "stacks"), | ||
Version: "1.0.0", | ||
}).Return(nil).MaxTimes(1) | ||
|
||
path := filepath.Join(tmpDir, "stacks") | ||
output := new(bytes.Buffer) | ||
command.SetOut(output) | ||
command.SetErr(output) | ||
command.SetArgs([]string{"--path", path, "example/stacks", "--stacks", "io.buildpacks.stacks.jammy"}) | ||
|
||
err := command.Execute() | ||
h.AssertNil(t, err) | ||
h.AssertContains(t, output.String(), "Flag --stacks has been deprecated,") | ||
}) | ||
}) | ||
}) | ||
}) | ||
} |