Skip to content

Commit

Permalink
Revert "#66 ignore failing tests until HTTPS works"
Browse files Browse the repository at this point in the history
This reverts commit 306b233.
  • Loading branch information
robfletcher committed Aug 8, 2013
1 parent 306b233 commit f8bb287
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class SmokeSpec extends Specification {
uri = 'http://httpbin.org/redirect/1'
}

@Ignore("until HTTPS support implemented")
@Betamax(tape = 'smoke spec')
void 'https proxying'() {
setup:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ class HttpClientSpec extends Specification {
response.getFirstHeader(VIA)?.value == 'Betamax'
}

@Ignore("until HTTPS support implemented")
@Betamax(tape = 'http client spec')
void 'proxy can intercept HTTPS requests'() {
given:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class HttpURLConnectionSpec extends Specification {
connection.disconnect()
}

@Ignore("until HTTPS support implemented")
@Betamax(tape = 'http url connection spec', mode = WRITE_ONLY)
void 'proxy intercepts HTTPS requests'() {
when:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ class WsLiteSpec extends Specification {
response.headers[X_BETAMAX] == 'REC'
}

@Ignore("until HTTPS support implemented")
// @IgnoreIf({ javaVersion >= 1.6 && javaVersion < 1.7 })
@IgnoreIf({ javaVersion >= 1.6 && javaVersion < 1.7 })
@Betamax(tape = 'wslite spec')
void 'proxy intercepts HTTPS requests'() {
given: 'a properly configured wslite instance'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class CustomSecureSocketFactorySpec extends Specification {
BetamaxHttpsSupport.configure(http)
}

@Ignore("until HTTPS support implemented")
void 'proxy can use a custom SSL socket factory'() {

given: 'a recorder configured with a custom SSL socket factory'
Expand Down

0 comments on commit f8bb287

Please sign in to comment.