Skip to content

Commit

Permalink
Merge pull request #94 from dmikusa-pivotal/api-07
Browse files Browse the repository at this point in the history
  • Loading branch information
samj1912 committed Nov 11, 2021
2 parents 7040378 + 9af239f commit 0376b8a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.go
Expand Up @@ -166,8 +166,8 @@ func Build(builder Builder, options ...Option) {
logger.Debugf("Buildpack: %+v", ctx.Buildpack)

API := strings.TrimSpace(ctx.Buildpack.API)
if API != "0.5" && API != "0.6" {
config.exitHandler.Error(errors.New("this version of libcnb is only compatible with buildpack APIs 0.5 and 0.6"))
if API != "0.5" && API != "0.6" && API != "0.7" {
config.exitHandler.Error(errors.New("this version of libcnb is only compatible with buildpack APIs 0.5, 0.6, and 0.7"))
return
}

Expand Down
4 changes: 2 additions & 2 deletions build_test.go
Expand Up @@ -181,7 +181,7 @@ test-key = "test-value"
Expect(os.RemoveAll(platformPath)).To(Succeed())
})

context("buildpack API is not 0.5 or 0.6", func() {
context("buildpack API is not 0.5, 0.6, or 0.7", func() {
it.Before(func() {
Expect(ioutil.WriteFile(filepath.Join(buildpackPath, "buildpack.toml"),
[]byte(`
Expand All @@ -203,7 +203,7 @@ version = "1.1.1"
)

Expect(exitHandler.Calls[0].Arguments.Get(0)).To(MatchError(
"this version of libcnb is only compatible with buildpack APIs 0.5 and 0.6",
"this version of libcnb is only compatible with buildpack APIs 0.5, 0.6, and 0.7",
))
})
})
Expand Down
4 changes: 2 additions & 2 deletions detect.go
Expand Up @@ -116,8 +116,8 @@ func Detect(detector Detector, options ...Option) {
logger.Debugf("Buildpack: %+v", ctx.Buildpack)

API := strings.TrimSpace(ctx.Buildpack.API)
if API != "0.5" && API != "0.6" {
config.exitHandler.Error(errors.New("this version of libcnb is only compatible with buildpack API 0.5 and 0.6"))
if API != "0.5" && API != "0.6" && API != "0.7" {
config.exitHandler.Error(errors.New("this version of libcnb is only compatible with buildpack APIs 0.5, 0.6, and 0.7"))
return
}

Expand Down
4 changes: 2 additions & 2 deletions detect_test.go
Expand Up @@ -135,7 +135,7 @@ test-key = "test-value"
Expect(os.RemoveAll(platformPath)).To(Succeed())
})

context("buildpack API is not 0.5 or 0.6", func() {
context("buildpack API is not 0.5, 0.6, or 0.7", func() {
it.Before(func() {
Expect(ioutil.WriteFile(filepath.Join(buildpackPath, "buildpack.toml"),
[]byte(`
Expand All @@ -157,7 +157,7 @@ version = "1.1.1"
)

Expect(exitHandler.Calls[0].Arguments.Get(0)).To(MatchError(
"this version of libcnb is only compatible with buildpack API 0.5 and 0.6",
"this version of libcnb is only compatible with buildpack APIs 0.5, 0.6, and 0.7",
))
})
})
Expand Down

0 comments on commit 0376b8a

Please sign in to comment.