This is an automated email from the ASF dual-hosted git repository.
sebastian-nagel pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nutch.git
from 2009e0e26 NUTCH-3167 Upgrade to Hadoop 3.5.0 (#911)
add 9390674e6 NUTCH-3175 Implement integration testing framework for Nutch
Protocol plugins using Testcontainers
add cbb1d0992 NUTCH-3175 Implement integration testing framework for Nutch
Protocol plugins using Testcontainers
new 57c290e2e Merge pull request #913 from lewismc/NUTCH-3175
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.codespellrc | 5 +
.github/workflows/master-build.yml | 6 +
.yetus/blanks-eol.txt | 1 +
.yetus/blanks-tabs.txt | 1 +
build.xml | 8 +-
conf/log4j2.xml | 10 +-
ivy/ivy.xml | 6 +-
src/plugin/build-plugin.xml | 28 ++++
src/plugin/build.xml | 13 ++
src/plugin/protocol-ftp/ivy.xml | 3 +-
.../java/org/apache/nutch/protocol/ftp/Ftp.java | 1 +
.../org/apache/nutch/protocol/ftp/FtpResponse.java | 13 +-
.../apache/nutch/protocol/ftp/FtpProtocolIT.java | 159 +++++++++++++++++++++
.../protocol/htmlunit/HtmlUnitProtocolIT.java | 79 ++++++++++
.../apache/nutch/protocol/http/HttpProtocolIT.java | 83 +++++++++++
src/plugin/protocol-httpclient/ivy.xml | 1 +
.../protocol/httpclient/HttpClientProtocolIT.java | 150 +++++++++++++++++++
.../nutch/protocol/okhttp/OkHttpProtocolIT.java | 79 ++++++++++
.../protocol/selenium/SeleniumProtocolIT.java | 86 +++++++++++
.../nutch/protocol/AbstractProtocolPluginIT.java | 97 +++++++++++++
.../protocol/ProtocolPluginIntegrationTest.java | 50 +++++++
21 files changed, 869 insertions(+), 10 deletions(-)
create mode 100644 .codespellrc
create mode 100644
src/plugin/protocol-ftp/src/test/org/apache/nutch/protocol/ftp/FtpProtocolIT.java
create mode 100644
src/plugin/protocol-htmlunit/src/test/org/apache/nutch/protocol/htmlunit/HtmlUnitProtocolIT.java
create mode 100644
src/plugin/protocol-http/src/test/org/apache/nutch/protocol/http/HttpProtocolIT.java
create mode 100644
src/plugin/protocol-httpclient/src/test/org/apache/nutch/protocol/httpclient/HttpClientProtocolIT.java
create mode 100644
src/plugin/protocol-okhttp/src/test/org/apache/nutch/protocol/okhttp/OkHttpProtocolIT.java
create mode 100644
src/plugin/protocol-selenium/src/test/org/apache/nutch/protocol/selenium/SeleniumProtocolIT.java
create mode 100644
src/test/org/apache/nutch/protocol/AbstractProtocolPluginIT.java
create mode 100644
src/test/org/apache/nutch/protocol/ProtocolPluginIntegrationTest.java