This is an automated email from the ASF dual-hosted git repository.
hansva pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git.
from 0884cb4 Merge pull request #798 from nadment/HOP-2857
new ae5cc84 HOP-2858 : Allow metadata injection through metadata property
annotations
new 7ddaf1c HOP-2858 : Allow metadata injection through metadata property
annotations
new a1a3e9f HOP-2858 : Allow metadata injection through metadata property
annotations (test fix)
new 87db9c8 HOP-2858 : Allow metadata injection through metadata property
annotations (Testing, i18n)
new 1b6cc66 HOP-2858 : Allow metadata injection through metadata property
annotations (Test fixes)
new 64b76a3 HOP-2858 : Allow metadata injection through metadata property
annotations (Extra IT MDI test for CSV Input)
new 3b45205 Merge pull request #800 from mattcasters/master
The 2100 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:
.../hop/metadata/api/HopMetadataProperty.java | 35 +
.../hop/core/injection/bean/BeanInjectionInfo.java | 461 ++++-
.../hop/core/injection/bean/BeanLevelInfo.java | 272 ++-
.../util/serialization/TransformMetaProps.java | 309 +--
.../injection/MetaAnnotationInjectionTest.java | 237 ++-
integration-tests/mdi/0001-calculator-child.hpl | 140 ++
integration-tests/mdi/0001-calculator-parent.hpl | 185 ++
integration-tests/mdi/0002-abort-child.hpl | 79 +
integration-tests/mdi/0002-abort-parent.hpl | 168 ++
integration-tests/mdi/0003-add-sequence-child.hpl | 218 ++
integration-tests/mdi/0003-add-sequence-parent.hpl | 206 ++
integration-tests/mdi/0004-csv-input-child.hpl | 83 +
integration-tests/mdi/0004-csv-input-parent.hpl | 555 ++++++
.../mdi/datasets/golden-csv-input-parent.csv | 101 +
.../{actions => mdi}/dev-env-config.json | 0
.../{transforms => mdi}/files/customers-100.txt | 0
integration-tests/mdi/hop-config.json | 290 +++
integration-tests/mdi/main-0001-calculator.hwf | 113 ++
integration-tests/mdi/main-0002-abort.hwf | 132 ++
integration-tests/mdi/main-0003-add-sequence.hwf | 75 +
integration-tests/mdi/main-0004-csv-input.hwf | 61 +
.../metadata/dataset/golden-csv-input-parent.json | 88 +
.../metadata/pipeline-run-configuration/local.json | 0
.../unit-test/0004-csv-input-parent UNIT.json | 64 +
.../metadata/workflow-run-configuration/local.json | 0
.../{actions => mdi}/project-config.json | 0
.../transforms/0011-calculator-basics.hpl | 214 +-
.../transforms/0013-row-generator.hpl | 135 ++
.../transforms/datasets/golden-row-generator.csv | 16 +
.../transforms/main-0013-row-generator.hwf | 62 +
.../metadata/dataset/golden-row-generator.json | 48 +
.../unit-test/0013-row-generator UNIT.json | 44 +
.../hop/pipeline/transforms/abort/AbortMeta.java | 15 +-
.../abort/messages/messages_en_US.properties | 10 +-
.../transforms/addsequence/AddSequenceMeta.java | 13 +-
.../transforms/calculator/CalculatorMeta.java | 8 +-
.../calculator/CalculatorMetaFunction.java | 52 +-
.../calculator/messages/messages_en_US.properties | 19 +-
.../UserDefinedJavaClassDialog.java | 38 +-
.../javascript/ScriptValuesMetaModDialog.java | 2079 +++++++++++---------
.../transforms/jsonoutput/JsonOutputTest.java | 332 ++--
.../pipeline/transforms/metainject/MetaInject.java | 487 +++--
.../transforms/metainject/MetaInjectDialog.java | 52 +-
.../transforms/rowgenerator/GeneratorField.java | 255 +++
.../transforms/rowgenerator/RowGenerator.java | 33 +-
.../rowgenerator/RowGeneratorDialog.java | 110 +-
.../transforms/rowgenerator/RowGeneratorMeta.java | 348 +---
.../messages/messages_en_US.properties | 76 +-
.../rowgenerator/RowGeneratorMetaTest.java | 159 +-
.../rowgenerator/RowGeneratorUnitTest.java | 38 +-
50 files changed, 5993 insertions(+), 2522 deletions(-)
create mode 100644 integration-tests/mdi/0001-calculator-child.hpl
create mode 100644 integration-tests/mdi/0001-calculator-parent.hpl
create mode 100644 integration-tests/mdi/0002-abort-child.hpl
create mode 100644 integration-tests/mdi/0002-abort-parent.hpl
create mode 100644 integration-tests/mdi/0003-add-sequence-child.hpl
create mode 100644 integration-tests/mdi/0003-add-sequence-parent.hpl
create mode 100644 integration-tests/mdi/0004-csv-input-child.hpl
create mode 100644 integration-tests/mdi/0004-csv-input-parent.hpl
create mode 100644 integration-tests/mdi/datasets/golden-csv-input-parent.csv
copy integration-tests/{actions => mdi}/dev-env-config.json (100%)
copy integration-tests/{transforms => mdi}/files/customers-100.txt (100%)
create mode 100644 integration-tests/mdi/hop-config.json
create mode 100644 integration-tests/mdi/main-0001-calculator.hwf
create mode 100644 integration-tests/mdi/main-0002-abort.hwf
create mode 100644 integration-tests/mdi/main-0003-add-sequence.hwf
create mode 100644 integration-tests/mdi/main-0004-csv-input.hwf
create mode 100644
integration-tests/mdi/metadata/dataset/golden-csv-input-parent.json
copy integration-tests/{xml =>
mdi}/metadata/pipeline-run-configuration/local.json (100%)
create mode 100644
integration-tests/mdi/metadata/unit-test/0004-csv-input-parent UNIT.json
copy integration-tests/{xml =>
mdi}/metadata/workflow-run-configuration/local.json (100%)
copy integration-tests/{actions => mdi}/project-config.json (100%)
create mode 100644 integration-tests/transforms/0013-row-generator.hpl
create mode 100644
integration-tests/transforms/datasets/golden-row-generator.csv
create mode 100644 integration-tests/transforms/main-0013-row-generator.hwf
create mode 100644
integration-tests/transforms/metadata/dataset/golden-row-generator.json
create mode 100644
integration-tests/transforms/metadata/unit-test/0013-row-generator UNIT.json
create mode 100644
plugins/transforms/rowgenerator/src/main/java/org/apache/hop/pipeline/transforms/rowgenerator/GeneratorField.java