This is an automated email from the ASF dual-hosted git repository.
matrei pushed a change to branch feat/http-client-testing-support
in repository https://gitbox.apache.org/repos/asf/grails-core.git
omit 75d4501ac9 fix: use Spring Boot TestConfiguration to autowire
HttpClient
add e1f1fb5875 fix: use Spring Boot TestConfiguration to autowire
HttpClient
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (75d4501ac9)
\
N -- N -- N refs/heads/feat/http-client-testing-support
(e1f1fb5875)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
grails-testing-support-http-client/README.md | 57 ++
.../build.gradle | 28 +-
.../grails/testing/http/client/HttpClient.groovy | 789 +++++++++++++++++++++
.../testing/http/client/MultipartBody.groovy | 189 +++++
.../testing/http/client/TestHttpResponse.groovy | 615 ++++++++++++++++
.../client/spring/EnableHttpClientSupport.groovy | 27 +-
.../spring/HttpClientTestConfiguration.groovy | 66 ++
.../http/client/utils/JsonAssertUtils.groovy | 210 ++++++
.../testing/http/client/utils/XmlUtils.groovy | 50 +-
.../IntegrationTestAutoConfiguration.imports | 3 +
.../testing/http/client/HttpClientSpec.groovy | 552 ++++++++++++++
.../testing/http/client/MultipartBodySpec.groovy | 67 ++
.../http/client/TestHttpResponseSpec.groovy | 316 +++++++++
.../testing/http/client/utils/XmlUtilsSpec.groovy | 21 +
14 files changed, 2936 insertions(+), 54 deletions(-)
create mode 100644 grails-testing-support-http-client/README.md
copy {grails-testing-support-views-gson =>
grails-testing-support-http-client}/build.gradle (64%)
create mode 100644
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/HttpClient.groovy
create mode 100644
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/MultipartBody.groovy
create mode 100644
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/TestHttpResponse.groovy
copy
grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/domains/ChildEntity.groovy
=>
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/spring/EnableHttpClientSupport.groovy
(62%)
create mode 100644
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/spring/HttpClientTestConfiguration.groovy
create mode 100644
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/utils/JsonAssertUtils.groovy
copy
grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/base/GrailsDataTckSpec.groovy
=>
grails-testing-support-http-client/src/main/groovy/org/apache/grails/testing/http/client/utils/XmlUtils.groovy
(50%)
create mode 100644
grails-testing-support-http-client/src/main/resources/META-INF/grails/IntegrationTestAutoConfiguration.imports
create mode 100644
grails-testing-support-http-client/src/test/groovy/org/apache/grails/testing/http/client/HttpClientSpec.groovy
create mode 100644
grails-testing-support-http-client/src/test/groovy/org/apache/grails/testing/http/client/MultipartBodySpec.groovy
create mode 100644
grails-testing-support-http-client/src/test/groovy/org/apache/grails/testing/http/client/TestHttpResponseSpec.groovy
create mode 100644
grails-testing-support-http-client/src/test/groovy/org/apache/grails/testing/http/client/utils/XmlUtilsSpec.groovy