mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-20 05:15:08 +00:00

* 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
51 lines
1.5 KiB
Python
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"))
|