This is an automated email from the ASF dual-hosted git repository.

maciej pushed a change to branch connectors-http-config-stubs
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit de6e3c84a feat(connectors): add wiremock stubs for the http config 
provider
     add 971753124 feat(metadata): use new consensus messages in metadata 
module (#2414)
     add e9dffaf64 feat(connectors): add e2e tests for http config provider

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   (de6e3c84a)
            \
             N -- N -- N   refs/heads/connectors-http-config-stubs (e9dffaf64)

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:
 .gitignore                                         |   2 +-
 Cargo.lock                                         |   4 +
 core/common/src/lib.rs                             |   1 +
 core/common/src/types/consensus/header.rs          | 154 ++++-
 .../src/types/consensus/{mod.rs => message.rs}     |  94 +--
 core/common/src/types/consensus/mod.rs             | 655 +--------------------
 .../src/configs/connectors/http_provider.rs        |   5 +
 core/consensus/Cargo.toml                          |   1 +
 core/consensus/src/impls.rs                        |  64 +-
 core/integration/Cargo.toml                        |   2 +
 core/integration/src/test_connectors_runtime.rs    |   5 +-
 .../config-wrapped.toml}                           |   8 +-
 .../connectors/http_config_provider/config.toml    |   6 +-
 .../http_config_provider/direct_responses.rs       | 267 +++++++++
 .../tests/connectors/http_config_provider/mod.rs   | 105 ++++
 .../http_config_provider}/wiremock/README.md       |   0
 .../wiremock/__files/direct/config-versions.json   |   0
 .../wiremock/__files/direct/connectors-config.json |  12 +-
 .../__files/direct/random-source-configs.json      |  12 +-
 .../wiremock/__files/direct/random-source-v0.json  |   6 +-
 .../wiremock/__files/direct/random-source-v1.json  |   6 +-
 .../__files/direct/stdout-sink-configs.json        |   6 +-
 .../wiremock/__files/direct/stdout-sink-v0.json    |   6 +-
 .../wiremock/__files/wrapped/config-versions.json  |   0
 .../__files/wrapped/connectors-config.json         |  12 +-
 .../__files/wrapped/random-source-configs.json     |  12 +-
 .../wiremock/__files/wrapped/random-source-v0.json |   6 +-
 .../wiremock/__files/wrapped/random-source-v1.json |   6 +-
 .../__files/wrapped/stdout-sink-configs.json       |   6 +-
 .../wiremock/__files/wrapped/stdout-sink-v0.json   |   6 +-
 .../wiremock/mappings/direct/create-sink.json      |   0
 .../wiremock/mappings/direct/create-source.json    |   0
 .../mappings/direct/delete-sink-config.json        |   0
 .../mappings/direct/delete-source-config.json      |   0
 .../mappings/direct/get-active-configs.json        |   0
 .../mappings/direct/get-active-sink-config.json    |   0
 .../mappings/direct/get-active-source-config.json  |   0
 .../mappings/direct/get-active-versions.json       |   0
 .../direct/get-sink-config-by-version.json         |   0
 .../wiremock/mappings/direct/get-sink-configs.json |   0
 .../mappings/direct/get-source-config-v0.json      |   0
 .../mappings/direct/get-source-config-v1.json      |   0
 .../mappings/direct/get-source-configs.json        |   0
 .../wiremock/mappings/direct/set-active-sink.json  |   0
 .../mappings/direct/set-active-source.json         |   0
 .../wiremock/mappings/wrapped/create-sink.json     |   0
 .../wiremock/mappings/wrapped/create-source.json   |   0
 .../mappings/wrapped/delete-sink-config.json       |   0
 .../mappings/wrapped/delete-source-config.json     |   0
 .../mappings/wrapped/get-active-configs.json       |   0
 .../mappings/wrapped/get-active-sink-config.json   |   0
 .../mappings/wrapped/get-active-source-config.json |   0
 .../mappings/wrapped/get-active-versions.json      |   0
 .../wrapped/get-sink-config-by-version.json        |   0
 .../mappings/wrapped/get-sink-configs.json         |   0
 .../mappings/wrapped/get-source-config-v0.json     |   0
 .../mappings/wrapped/get-source-config-v1.json     |   0
 .../mappings/wrapped/get-source-configs.json       |   0
 .../wiremock/mappings/wrapped/set-active-sink.json |   0
 .../mappings/wrapped/set-active-source.json        |   0
 .../http_config_provider}/wiremock/run-wiremock.sh |   2 +-
 .../http_config_provider/wrapped_responses.rs      | 269 +++++++++
 core/integration/tests/connectors/mod.rs           |  10 +-
 core/metadata/Cargo.toml                           |   1 +
 core/metadata/src/impls/metadata.rs                |  13 +-
 scripts/ci/license-headers.sh                      |   2 -
 scripts/ci/shellcheck.sh                           |   3 +
 67 files changed, 966 insertions(+), 803 deletions(-)
 copy core/common/src/types/consensus/{mod.rs => message.rs} (88%)
 copy core/integration/tests/connectors/{postgres/config.toml => 
http_config_provider/config-wrapped.toml} (87%)
 copy examples/python/requirements.txt => 
core/integration/tests/connectors/http_config_provider/config.toml (91%)
 create mode 100644 
core/integration/tests/connectors/http_config_provider/direct_responses.rs
 create mode 100644 
core/integration/tests/connectors/http_config_provider/mod.rs
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/README.md (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/config-versions.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/connectors-config.json
 (83%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/random-source-configs.json
 (82%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/random-source-v0.json
 (81%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/random-source-v1.json
 (82%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/stdout-sink-configs.json
 (81%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/direct/stdout-sink-v0.json
 (80%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/config-versions.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/connectors-config.json
 (84%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/random-source-configs.json
 (83%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/random-source-v0.json
 (83%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/random-source-v1.json
 (83%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/stdout-sink-configs.json
 (83%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/__files/wrapped/stdout-sink-v0.json
 (82%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/create-sink.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/create-source.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/delete-sink-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/delete-source-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-active-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-active-sink-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-active-source-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-active-versions.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-sink-config-by-version.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-sink-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-source-config-v0.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-source-config-v1.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/get-source-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/set-active-sink.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/direct/set-active-source.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/create-sink.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/create-source.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/delete-sink-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/delete-source-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-active-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-active-sink-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-active-source-config.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-active-versions.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-sink-config-by-version.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-sink-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-source-config-v0.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-source-config-v1.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/get-source-configs.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/set-active-sink.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/mappings/wrapped/set-active-source.json
 (100%)
 rename core/{connectors/runtime/tests => 
integration/tests/connectors/http_config_provider}/wiremock/run-wiremock.sh 
(99%)
 create mode 100644 
core/integration/tests/connectors/http_config_provider/wrapped_responses.rs

Reply via email to