-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtest_dynamic_schema_loader.py
More file actions
507 lines (463 loc) · 17.4 KB
/
test_dynamic_schema_loader.py
File metadata and controls
507 lines (463 loc) · 17.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
#
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
#
import json
from copy import deepcopy
from typing import Any, Mapping, MutableMapping
from unittest.mock import MagicMock, Mock
import pytest
from airbyte_cdk.sources.declarative.concurrent_declarative_source import (
ConcurrentDeclarativeSource,
)
from airbyte_cdk.sources.declarative.parsers.model_to_component_factory import (
ModelToComponentFactory,
)
from airbyte_cdk.sources.declarative.retrievers import Retriever
from airbyte_cdk.sources.declarative.schema import (
DynamicSchemaLoader,
SchemaTypeIdentifier,
TypesMap,
)
from airbyte_cdk.sources.declarative.schema.dynamic_schema_loader import (
AdditionalPropertyFieldsInferrer,
)
from airbyte_cdk.test.mock_http import HttpMocker, HttpRequest, HttpResponse
_CONFIG = {
"start_date": "2024-07-01T00:00:00.000Z",
}
_ANY_PARAMETERS = {}
_MANIFEST = {
"version": "6.7.0",
"definitions": {
"party_members_stream": {
"type": "DeclarativeStream",
"name": "party_members",
"primary_key": [],
"retriever": {
"type": "SimpleRetriever",
"requester": {
"type": "HttpRequester",
"url_base": "https://api.test.com",
"path": "/party_members",
"http_method": "GET",
"authenticator": {
"type": "ApiKeyAuthenticator",
"header": "apikey",
"api_token": "{{ config['api_key'] }}",
},
},
"record_selector": {
"type": "RecordSelector",
"extractor": {"type": "DpathExtractor", "field_path": []},
},
"paginator": {"type": "NoPagination"},
},
"schema_loader": {
"type": "DynamicSchemaLoader",
"retriever": {
"type": "SimpleRetriever",
"requester": {
"type": "HttpRequester",
"url_base": "https://api.test.com",
"path": "/party_members/schema",
"http_method": "GET",
"authenticator": {
"type": "ApiKeyAuthenticator",
"header": "apikey",
"api_token": "{{ config['api_key'] }}",
},
},
"record_selector": {
"type": "RecordSelector",
"extractor": {"type": "DpathExtractor", "field_path": []},
},
"paginator": {"type": "NoPagination"},
},
"schema_transformations": [
{
"type": "AddFields",
"fields": [
{
"type": "AddedFieldDefinition",
"path": ["StaticField"],
"value": "{{ {'type': ['null', 'string']} }}",
}
],
},
{
"type": "KeysToSnakeCase",
},
],
"schema_type_identifier": {
"schema_pointer": ["fields"],
"key_pointer": ["name"],
"type_pointer": ["type"],
"types_mapping": [
{"target_type": "string", "current_type": "singleLineText"},
{
"target_type": {
"field_type": "array",
"items": {"field_type": "array", "items": "integer"},
},
"current_type": "formula",
"condition": "{{ raw_schema['result']['type'] == 'customInteger' }}",
},
],
},
},
},
},
"streams": [
"#/definitions/party_members_stream",
],
"check": {"stream_names": ["party_members"]},
}
@pytest.fixture
def mock_retriever():
retriever = MagicMock()
retriever.read_records.return_value = [
{
"schema": [
{"field1": {"key": "name", "type": "string"}},
{"field2": {"key": "age", "type": "integer"}},
{"field3": {"key": "active", "type": "boolean"}},
]
}
]
return retriever
@pytest.fixture
def mock_schema_type_identifier():
return SchemaTypeIdentifier(
schema_pointer=["schema"],
key_pointer=["key"],
type_pointer=["type"],
types_mapping=[],
parameters={},
)
@pytest.fixture
def dynamic_schema_loader(mock_retriever, mock_schema_type_identifier):
config = MagicMock()
parameters = {}
return DynamicSchemaLoader(
retriever=mock_retriever,
config=config,
parameters=parameters,
schema_type_identifier=mock_schema_type_identifier,
)
@pytest.mark.parametrize(
"retriever_data, expected_schema",
[
(
# Test case: All fields with valid types
iter(
[
{
"schema": [
{"key": "name", "type": "string"},
{"key": "age", "type": "integer"},
]
}
]
),
{
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {
"name": {"type": ["null", "string"]},
"age": {"type": ["null", "integer"]},
},
},
),
(
# Test case: Fields with missing type default to "string"
iter(
[
{
"schema": [
{"key": "name"},
{"key": "email", "type": "string"},
]
}
]
),
{
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {
"name": {"type": ["null", "string"]},
"email": {"type": ["null", "string"]},
},
},
),
(
# Test case: Fields with nested types
iter(
[
{
"schema": [
{"key": "address", "type": ["string", "integer"]},
]
}
]
),
{
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {
"address": {
"oneOf": [{"type": ["null", "string"]}, {"type": ["null", "integer"]}]
},
},
},
),
(
# Test case: Empty record set
iter([]),
{
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {},
},
),
],
)
def test_dynamic_schema_loader(dynamic_schema_loader, retriever_data, expected_schema):
dynamic_schema_loader.retriever.read_records = MagicMock(return_value=retriever_data)
schema = dynamic_schema_loader.get_json_schema()
# Validate the generated schema
assert schema == expected_schema
def test_dynamic_schema_loader_invalid_key(dynamic_schema_loader):
# Test case: Invalid key type
dynamic_schema_loader.retriever.read_records.return_value = iter(
[{"schema": [{"field1": {"key": 123, "type": "string"}}]}]
)
with pytest.raises(ValueError, match="Expected key to be a string"):
dynamic_schema_loader.get_json_schema()
def test_dynamic_schema_loader_invalid_type(dynamic_schema_loader):
# Test case: Invalid type
dynamic_schema_loader.retriever.read_records.return_value = iter(
[{"schema": [{"field1": {"key": "name", "type": "invalid_type"}}]}]
)
with pytest.raises(ValueError, match="Expected key to be a string. Got None"):
dynamic_schema_loader.get_json_schema()
def test_dynamic_schema_loader_manifest_flow():
expected_schema = {
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {
"id": {"type": ["null", "integer"]},
"first_name": {"type": ["null", "string"]},
"description": {"type": ["null", "string"]},
"static_field": {"type": ["null", "string"]},
},
}
source = ConcurrentDeclarativeSource(
source_config=_MANIFEST, config=_CONFIG, catalog=None, state=None
)
with HttpMocker() as http_mocker:
http_mocker.get(
HttpRequest(url="https://api.test.com/party_members"),
HttpResponse(
body=json.dumps(
[
{"id": 1, "first_name": "member_1", "description": "First member"},
{"id": 2, "first_name": "member_2", "description": "Second member"},
]
)
),
)
http_mocker.get(
HttpRequest(url="https://api.test.com/party_members/schema"),
HttpResponse(
body=json.dumps(
{
"fields": [
{"name": "Id", "type": "integer"},
{"name": "FirstName", "type": "string"},
{"name": "Description", "type": "singleLineText"},
]
}
)
),
)
actual_catalog = source.discover(logger=source.logger, config=_CONFIG)
assert len(actual_catalog.streams) == 1
assert actual_catalog.streams[0].json_schema == expected_schema
def test_dynamic_schema_loader_with_type_conditions():
_MANIFEST_WITH_TYPE_CONDITIONS = deepcopy(_MANIFEST)
_MANIFEST_WITH_TYPE_CONDITIONS["definitions"]["party_members_stream"]["schema_loader"][
"schema_type_identifier"
]["types_mapping"].append(
{
"target_type": "number",
"current_type": "formula",
"condition": "{{ raw_schema['result']['type'] == 'number' }}",
}
)
_MANIFEST_WITH_TYPE_CONDITIONS["definitions"]["party_members_stream"]["schema_loader"][
"schema_type_identifier"
]["types_mapping"].append(
{
"target_type": "number",
"current_type": "formula",
"condition": "{{ raw_schema['result']['type'] == 'currency' }}",
}
)
_MANIFEST_WITH_TYPE_CONDITIONS["definitions"]["party_members_stream"]["schema_loader"][
"schema_type_identifier"
]["types_mapping"].append({"target_type": "array", "current_type": "formula"})
expected_schema = {
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": True,
"type": "object",
"properties": {
"id": {"type": ["null", "integer"]},
"first_name": {"type": ["null", "string"]},
"description": {"type": ["null", "string"]},
"static_field": {"type": ["null", "string"]},
"currency": {"type": ["null", "number"]},
"salary": {"type": ["null", "number"]},
"working_days": {"type": ["null", "array"]},
"avg_salary": {
"type": ["null", "array"],
"items": {"type": ["null", "array"], "items": {"type": ["null", "integer"]}},
},
},
}
source = ConcurrentDeclarativeSource(
source_config=_MANIFEST_WITH_TYPE_CONDITIONS,
config=_CONFIG,
catalog=None,
state=None,
component_factory=ModelToComponentFactory(
disable_cache=True
), # Avoid caching on the HttpClient which could result in caching the requests/responses of other tests
)
with HttpMocker() as http_mocker:
http_mocker.get(
HttpRequest(url="https://api.test.com/party_members"),
HttpResponse(
body=json.dumps(
[
{
"id": 1,
"first_name": "member_1",
"description": "First member",
"salary": 20000,
"currency": 10.4,
"working_days": ["Monday", "Tuesday"],
},
{
"id": 2,
"first_name": "member_2",
"description": "Second member",
"salary": 22000,
"currency": 10.4,
"working_days": ["Tuesday", "Wednesday"],
},
]
)
),
)
http_mocker.get(
HttpRequest(url="https://api.test.com/party_members/schema"),
HttpResponse(
body=json.dumps(
{
"fields": [
{"name": "Id", "type": "integer"},
{"name": "FirstName", "type": "string"},
{"name": "Description", "type": "singleLineText"},
{"name": "Salary", "type": "formula", "result": {"type": "number"}},
{
"name": "AvgSalary",
"type": "formula",
"result": {"type": "customInteger"},
},
{"name": "Currency", "type": "formula", "result": {"type": "currency"}},
{"name": "Currency", "type": "formula", "result": {"type": "currency"}},
{"name": "WorkingDays", "type": "formula"},
]
}
)
),
)
actual_catalog = source.discover(logger=source.logger, config=_CONFIG)
assert len(actual_catalog.streams) == 1
assert actual_catalog.streams[0].json_schema == expected_schema
def _mock_schema_loader_retriever(http_response_body) -> Retriever:
retriever = Mock(spec=Retriever)
retriever.read_records.return_value = iter([http_response_body])
return retriever
class TestAdditionalPropertyFieldsInferrer(AdditionalPropertyFieldsInferrer):
def __init__(self, properties_to_add: Mapping[str, Any]):
self._properties_to_add = properties_to_add
def infer(self, property_definition: MutableMapping[str, Any]) -> Mapping[str, Any]:
return self._properties_to_add
def test_additional_property_fields_inferrer():
properties_to_add = {"added_property": "a_value"}
expected_schema = {
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": False,
"type": "object",
"properties": {
"id": {"type": ["null", "integer"]} | properties_to_add,
},
}
schema_loader = DynamicSchemaLoader(
retriever=_mock_schema_loader_retriever({"fields": [{"name": "id", "type": "integer"}]}),
additional_property_fields_inferrer=TestAdditionalPropertyFieldsInferrer(properties_to_add),
schema_type_identifier=SchemaTypeIdentifier(
key_pointer=["name"],
type_pointer=["type"],
types_mapping=[
TypesMap(
current_type="integer",
target_type="integer",
condition=None,
),
],
schema_pointer=["fields"],
parameters=_ANY_PARAMETERS,
),
allow_additional_properties=False,
config={},
parameters=_ANY_PARAMETERS,
)
schema = schema_loader.get_json_schema()
assert schema == expected_schema
def test_additional_properties():
expected_schema = {
"$schema": "https://json-schema.org/draft-07/schema#",
"additionalProperties": False,
"type": "object",
"properties": {
"id": {"type": ["null", "integer"]},
},
}
schema_loader = DynamicSchemaLoader(
retriever=_mock_schema_loader_retriever({"fields": [{"name": "id", "type": "integer"}]}),
schema_type_identifier=SchemaTypeIdentifier(
key_pointer=["name"],
type_pointer=["type"],
types_mapping=[
TypesMap(
current_type="integer",
target_type="integer",
condition=None,
),
],
schema_pointer=["fields"],
parameters=_ANY_PARAMETERS,
),
allow_additional_properties=False,
config={},
parameters=_ANY_PARAMETERS,
)
schema = schema_loader.get_json_schema()
assert schema == expected_schema