Skip to content
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.

Commit

Permalink
Merge branch 'release/v3.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
backup-restore-team-bot committed Aug 31, 2017
2 parents 6eef341 + b19e5fe commit 014198e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
8 changes: 4 additions & 4 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import:
- package: github.com/codegangsta/cli
- package: github.com/hashicorp/go-plugin
- package: github.com/pivotalservices/cfbackup
version: v0.1.157
version: v0.1.158
subpackages:
- tiles
- tiles/opsmanager
Expand Down
13 changes: 13 additions & 0 deletions integration/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ func basicAuthDirectorHandlers(directorURL string) []http.HandlerFunc {
ghttp.VerifyRequest("GET", "/tasks/2"),
ghttp.RespondWith(http.StatusOK, getTaskResponseOK("2")),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", "/info"),
ghttp.RespondWith(http.StatusOK, infoResponse),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("PUT", "/deployments/cf-f21eea2dbdb8555f89fb/jobs/cloud_controller-partition-7bc61fd2fa9d654696df/0", "state=started"),
ghttp.VerifyBody([]byte(``)),
Expand Down Expand Up @@ -183,6 +187,15 @@ func uaaAuthDirectorHandlers(directorURL string) []http.HandlerFunc {
ghttp.VerifyRequest("GET", "/tasks/2"),
ghttp.RespondWith(http.StatusOK, getTaskResponseOK("2")),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", "/info"),
ghttp.RespondWith(http.StatusOK, infoResponse),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("POST", "/oauth/token"),
ghttp.RespondWith(http.StatusOK, tokenResponse, http.Header{
"Content-Type": []string{"application/json"}}),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("PUT", "/deployments/cf-f21eea2dbdb8555f89fb/jobs/cloud_controller-partition-7bc61fd2fa9d654696df/0", "state=started"),
ghttp.VerifyBody([]byte(``)),
Expand Down
2 changes: 1 addition & 1 deletion wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ deploy:

- wercker/[email protected]:
hostname: github.com
fingerprint: 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
fingerprint: SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8

- script:
name: set release id variable for version
Expand Down

0 comments on commit 014198e

Please sign in to comment.