OpenMetadata/ingestion/tests/unit/readers/test_github_reader.py
Mohit Yadav 10d8ec84fe
Logs added for Search Indexing and Stats issue fixed (#13956)
* Logs added for Search Indexing and Stats issue fixed

* Fix uninstall error

* Add error handling

* fix lint

* Push Job Level Exception on top

* disable flaky tests

* Fix Logs not visible in Search

---------

Co-authored-by: ulixius9 <mayursingal9@gmail.com>
2023-11-13 23:39:56 +05:30

53 lines
1.6 KiB
Python

# Copyright 2021 Collate
# Licensed 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.
"""
Test GitHub Reader
"""
from unittest import TestCase
from metadata.generated.schema.security.credentials.githubCredentials import (
GitHubCredentials,
)
from metadata.readers.file.github import GitHubReader
class TestGitHubReader(TestCase):
"""
Validate the github reader against the OM repo
"""
def test_headers(self):
"""
We build the headers correctly
"""
creds = GitHubCredentials(
repositoryName="name", repositoryOwner="owner", token="token"
)
reader = GitHubReader(creds)
self.assertEqual(reader.auth_headers, {"Authorization": "Bearer token"})
def x_test_read(self):
"""
We can read the OM README
disabling this test as it is flakey and fails with error rate limit exceeded
"""
creds = GitHubCredentials(
repositoryName="OpenMetadata",
repositoryOwner="open-metadata",
)
reader = GitHubReader(creds)
self.assertIsNotNone(reader.read("README.md"))