This is an automated email from the ASF dual-hosted git repository.
hansva pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
from 2365fc3bc4 Merge pull request #4014 from hansva/4013
add d3fc7d614e PoC of tests with external dependencies that can be
addressed via TestContainers
new fc74934814 Merge pull request #3989 from xdelox/azure-move-files-tests
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:
plugins/actions/movefiles/pom.xml | 24 ++
.../actions/movefiles/ActionMoveFilesDialog.java | 6 +-
.../actions/movefiles/AzureMoveFilesIT.java | 357 +++++++++++++++++++++
.../actions/movefiles/MoveFilesActionHelper.java | 44 +++
.../movefiles/src/test/resources/alreadythere.csv | 9 +
.../src/test/resources/artists-wildcard1.csv | 18 ++
.../src/test/resources/artists-wildcard2.csv | 18 ++
.../movefiles/src/test/resources/artists.csv | 9 +
.../movefiles/src/test/resources/artists2.csv | 9 +
.../movefiles/src/test/resources/artists3.csv | 9 +
.../movefiles/src/test/resources/artists4.csv | 18 ++
.../movefiles/src/test/resources/azure.properties | 31 ++
.../src/test/resources/canbeoverwritten.csv | 9 +
.../apache/hop/vfs/azure/AzureFileNameParser.java | 48 ++-
.../org/apache/hop/vfs/azure/AzureFileObject.java | 5 +
.../apache/hop/vfs/azure/AzureFileProvider.java | 14 +
.../hop/vfs/azure/AzureFileNameParserTest.java | 48 ++-
17 files changed, 647 insertions(+), 29 deletions(-)
create mode 100644
plugins/actions/movefiles/src/test/java/org/apache/hop/workflow/actions/movefiles/AzureMoveFilesIT.java
create mode 100644
plugins/actions/movefiles/src/test/java/org/apache/hop/workflow/actions/movefiles/MoveFilesActionHelper.java
create mode 100644
plugins/actions/movefiles/src/test/resources/alreadythere.csv
create mode 100644
plugins/actions/movefiles/src/test/resources/artists-wildcard1.csv
create mode 100644
plugins/actions/movefiles/src/test/resources/artists-wildcard2.csv
create mode 100644 plugins/actions/movefiles/src/test/resources/artists.csv
create mode 100644 plugins/actions/movefiles/src/test/resources/artists2.csv
create mode 100644 plugins/actions/movefiles/src/test/resources/artists3.csv
create mode 100644 plugins/actions/movefiles/src/test/resources/artists4.csv
create mode 100644
plugins/actions/movefiles/src/test/resources/azure.properties
create mode 100644
plugins/actions/movefiles/src/test/resources/canbeoverwritten.csv