OpenMetadata/ingestion/tests/unit/readers/test_github_reader.py
Pere Miquel Brull fdeea71671
Fix Looker explore git link & Add BitBucket reader (#11837)
* Add looker test connection step

* Add looker test connection step

* Update Credentials

* Fix explore link and add bitbucket reader

* Format

* Fix test

* Fix spline linting

* Fix import
2023-06-02 07:19:32 +02:00

51 lines
1.5 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.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 test_read(self):
"""
We can read the OM README
"""
creds = GitHubCredentials(
repositoryName="OpenMetadata",
repositoryOwner="open-metadata",
)
reader = GitHubReader(creds)
self.assertIsNotNone(reader.read("README.md"))