forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[hotfix][python][tests] Split the test cases of connectors & formats …
…into separate files
- Loading branch information
Showing
14 changed files
with
1,890 additions
and
1,671 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
flink-python/pyflink/datastream/connectors/tests/test_cassandra.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
################################################################################ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
################################################################################ | ||
from pyflink.common import Types | ||
from pyflink.datastream.connectors.cassandra import CassandraSink, MapperOptions, ConsistencyLevel | ||
from pyflink.testing.test_case_utils import PyFlinkStreamingTestCase | ||
|
||
|
||
class CassandraSinkTest(PyFlinkStreamingTestCase): | ||
|
||
def test_cassandra_sink(self): | ||
type_info = Types.ROW([Types.STRING(), Types.INT()]) | ||
ds = self.env.from_collection([('ab', 1), ('bdc', 2), ('cfgs', 3), ('deeefg', 4)], | ||
type_info=type_info) | ||
cassandra_sink_builder = CassandraSink.add_sink(ds) | ||
|
||
cassandra_sink = cassandra_sink_builder\ | ||
.set_host('localhost', 9876) \ | ||
.set_query('query') \ | ||
.enable_ignore_null_fields() \ | ||
.set_mapper_options(MapperOptions() | ||
.ttl(1) | ||
.timestamp(100) | ||
.tracing(True) | ||
.if_not_exists(False) | ||
.consistency_level(ConsistencyLevel.ANY) | ||
.save_null_fields(True)) \ | ||
.set_max_concurrent_requests(1000) \ | ||
.build() | ||
|
||
cassandra_sink.name('cassandra_sink').set_parallelism(3) | ||
|
||
plan = eval(self.env.get_execution_plan()) | ||
self.assertEqual("Sink: cassandra_sink", plan['nodes'][1]['type']) | ||
self.assertEqual(3, plan['nodes'][1]['parallelism']) |
729 changes: 0 additions & 729 deletions
729
flink-python/pyflink/datastream/connectors/tests/test_connectors.py
This file was deleted.
Oops, something went wrong.
133 changes: 133 additions & 0 deletions
133
flink-python/pyflink/datastream/connectors/tests/test_elasticsearch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
################################################################################ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
################################################################################ | ||
from pyflink.common import Types | ||
from pyflink.datastream.connectors import DeliveryGuarantee | ||
from pyflink.datastream.connectors.elasticsearch import Elasticsearch7SinkBuilder, \ | ||
FlushBackoffType, ElasticsearchEmitter | ||
from pyflink.testing.test_case_utils import PyFlinkStreamingTestCase | ||
from pyflink.util.java_utils import get_field_value, is_instance_of | ||
|
||
|
||
class FlinkElasticsearch7Test(PyFlinkStreamingTestCase): | ||
|
||
def test_es_sink(self): | ||
ds = self.env.from_collection( | ||
[{'name': 'ada', 'id': '1'}, {'name': 'luna', 'id': '2'}], | ||
type_info=Types.MAP(Types.STRING(), Types.STRING())) | ||
|
||
es_sink = Elasticsearch7SinkBuilder() \ | ||
.set_emitter(ElasticsearchEmitter.static_index('foo', 'id')) \ | ||
.set_hosts(['localhost:9200']) \ | ||
.set_delivery_guarantee(DeliveryGuarantee.AT_LEAST_ONCE) \ | ||
.set_bulk_flush_max_actions(1) \ | ||
.set_bulk_flush_max_size_mb(2) \ | ||
.set_bulk_flush_interval(1000) \ | ||
.set_bulk_flush_backoff_strategy(FlushBackoffType.CONSTANT, 3, 3000) \ | ||
.set_connection_username('foo') \ | ||
.set_connection_password('bar') \ | ||
.set_connection_path_prefix('foo-bar') \ | ||
.set_connection_request_timeout(30000) \ | ||
.set_connection_timeout(31000) \ | ||
.set_socket_timeout(32000) \ | ||
.build() | ||
|
||
j_emitter = get_field_value(es_sink.get_java_function(), 'emitter') | ||
self.assertTrue( | ||
is_instance_of( | ||
j_emitter, | ||
'org.apache.flink.connector.elasticsearch.sink.MapElasticsearchEmitter')) | ||
self.assertEqual( | ||
get_field_value( | ||
es_sink.get_java_function(), 'hosts')[0].toString(), 'http://localhost:9200') | ||
self.assertEqual( | ||
get_field_value( | ||
es_sink.get_java_function(), 'deliveryGuarantee').toString(), 'at-least-once') | ||
|
||
j_build_bulk_processor_config = get_field_value( | ||
es_sink.get_java_function(), 'buildBulkProcessorConfig') | ||
self.assertEqual(j_build_bulk_processor_config.getBulkFlushMaxActions(), 1) | ||
self.assertEqual(j_build_bulk_processor_config.getBulkFlushMaxMb(), 2) | ||
self.assertEqual(j_build_bulk_processor_config.getBulkFlushInterval(), 1000) | ||
self.assertEqual(j_build_bulk_processor_config.getFlushBackoffType().toString(), 'CONSTANT') | ||
self.assertEqual(j_build_bulk_processor_config.getBulkFlushBackoffRetries(), 3) | ||
self.assertEqual(j_build_bulk_processor_config.getBulkFlushBackOffDelay(), 3000) | ||
|
||
j_network_client_config = get_field_value( | ||
es_sink.get_java_function(), 'networkClientConfig') | ||
self.assertEqual(j_network_client_config.getUsername(), 'foo') | ||
self.assertEqual(j_network_client_config.getPassword(), 'bar') | ||
self.assertEqual(j_network_client_config.getConnectionRequestTimeout(), 30000) | ||
self.assertEqual(j_network_client_config.getConnectionTimeout(), 31000) | ||
self.assertEqual(j_network_client_config.getSocketTimeout(), 32000) | ||
self.assertEqual(j_network_client_config.getConnectionPathPrefix(), 'foo-bar') | ||
|
||
ds.sink_to(es_sink).name('es sink') | ||
|
||
def test_es_sink_dynamic(self): | ||
ds = self.env.from_collection( | ||
[{'name': 'ada', 'id': '1'}, {'name': 'luna', 'id': '2'}], | ||
type_info=Types.MAP(Types.STRING(), Types.STRING())) | ||
|
||
es_dynamic_index_sink = Elasticsearch7SinkBuilder() \ | ||
.set_emitter(ElasticsearchEmitter.dynamic_index('name', 'id')) \ | ||
.set_hosts(['localhost:9200']) \ | ||
.build() | ||
|
||
j_emitter = get_field_value(es_dynamic_index_sink.get_java_function(), 'emitter') | ||
self.assertTrue( | ||
is_instance_of( | ||
j_emitter, | ||
'org.apache.flink.connector.elasticsearch.sink.MapElasticsearchEmitter')) | ||
|
||
ds.sink_to(es_dynamic_index_sink).name('es dynamic index sink') | ||
|
||
def test_es_sink_key_none(self): | ||
ds = self.env.from_collection( | ||
[{'name': 'ada', 'id': '1'}, {'name': 'luna', 'id': '2'}], | ||
type_info=Types.MAP(Types.STRING(), Types.STRING())) | ||
|
||
es_sink = Elasticsearch7SinkBuilder() \ | ||
.set_emitter(ElasticsearchEmitter.static_index('foo')) \ | ||
.set_hosts(['localhost:9200']) \ | ||
.build() | ||
|
||
j_emitter = get_field_value(es_sink.get_java_function(), 'emitter') | ||
self.assertTrue( | ||
is_instance_of( | ||
j_emitter, | ||
'org.apache.flink.connector.elasticsearch.sink.MapElasticsearchEmitter')) | ||
|
||
ds.sink_to(es_sink).name('es sink') | ||
|
||
def test_es_sink_dynamic_key_none(self): | ||
ds = self.env.from_collection( | ||
[{'name': 'ada', 'id': '1'}, {'name': 'luna', 'id': '2'}], | ||
type_info=Types.MAP(Types.STRING(), Types.STRING())) | ||
|
||
es_dynamic_index_sink = Elasticsearch7SinkBuilder() \ | ||
.set_emitter(ElasticsearchEmitter.dynamic_index('name')) \ | ||
.set_hosts(['localhost:9200']) \ | ||
.build() | ||
|
||
j_emitter = get_field_value(es_dynamic_index_sink.get_java_function(), 'emitter') | ||
self.assertTrue( | ||
is_instance_of( | ||
j_emitter, | ||
'org.apache.flink.connector.elasticsearch.sink.MapElasticsearchEmitter')) | ||
|
||
ds.sink_to(es_dynamic_index_sink).name('es dynamic index sink') |
Oops, something went wrong.