1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gridly/unit_tests/test_helpers.py
Cole Snodgrass 2e099acc52 update headers from 2022 -> 2023 (#22594)
* It's 2023!

* 2022 -> 2023

---------

Co-authored-by: evantahler <evan@airbyte.io>
2023-02-08 13:01:16 -08:00

75 lines
2.1 KiB
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import pytest
from source_gridly.helpers import Helpers
@pytest.fixture
def gridly_column_type():
return "singleLine"
@pytest.fixture
def expected_data_type():
return "string"
@pytest.fixture
def view_response():
return {
"id": "view1",
"name": "Default view",
"columns": [{"id": "_recordId"}, {"id": "column1", "type": "singleLine"}, {"id": "column2", "type": "number"}],
}
@pytest.fixture
def record_response():
return [
{"id": "record1", "cells": [{"columnId": "column1", "value": "Value 1"}, {"columnId": "column2", "value": 1}]},
{"id": "record2", "cells": [{"columnId": "column1", "value": "Value 2"}, {"columnId": "column2", "value": 2}]},
]
@pytest.fixture
def expected_json_schema():
return {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"_recordId": {"type": ["null", "string"]},
"column1": {"type": ["null", "string"]},
"column2": {"type": ["null", "number"]},
},
"type": "object",
}
@pytest.fixture
def expected_transformed_record():
return {"_recordId": "record1", "column1": "Value 1", "column2": 1}
def test_to_airbyte_data_type(gridly_column_type, expected_data_type):
assert expected_data_type == Helpers.to_airbyte_data_type(gridly_column_type)
def test_get_json_schema(view_response, expected_json_schema):
json_schema = Helpers.get_json_schema(view_response)
assert json_schema == expected_json_schema
def test_get_airbyte_stream(view_response, expected_json_schema):
stream = Helpers.get_airbyte_stream(view_response)
assert stream
assert stream.name == view_response.get("name")
assert stream.json_schema == expected_json_schema
def test_transform_record(view_response, record_response, expected_transformed_record):
json_schema = Helpers.get_json_schema(view_response)
record1 = record_response[0]
transformed_record = Helpers.transform_record(record1, json_schema)
assert expected_transformed_record == transformed_record