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
|
############################ Copyrights and license ############################
# #
# Copyright 2018 Shubham Singh <41840111+singh811@users.noreply.github.com> #
# Copyright 2019 Steve Kowalik <steven@wedontsleep.org> #
# Copyright 2019 TechnicalPirate <35609336+TechnicalPirate@users.noreply.github.com>#
# Copyright 2019 Wan Liuyang <tsfdye@gmail.com> #
# Copyright 2020 Steve Kowalik <steven@wedontsleep.org> #
# Copyright 2023 Christoph Reiter <reiter.christoph@gmail.com> #
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
# Copyright 2023 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
# Copyright 2025 Enrico Minack <github@enrico.minack.dev> #
# #
# This file is part of PyGithub. #
# http://pygithub.readthedocs.io/ #
# #
# PyGithub is free software: you can redistribute it and/or modify it under #
# the terms of the GNU Lesser General Public License as published by the Free #
# Software Foundation, either version 3 of the License, or (at your option) #
# any later version. #
# #
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
# details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
# #
################################################################################
from __future__ import annotations
from datetime import datetime, timedelta, timezone
import github
from . import Framework
class Migration(Framework.TestCase):
def setUp(self):
super().setUp()
self.user = self.g.get_user()
self.migration = self.user.get_migrations()[0]
def testAttributes(self):
self.assertIsNone(self.migration.archive_url)
self.assertEqual(
self.migration.created_at, datetime(2018, 9, 14, 1, 35, 35, tzinfo=timezone(timedelta(seconds=19800)))
)
self.assertEqual(self.migration.exclude, ["repositories"])
self.assertEqual(self.migration.exclude_attachments, False)
self.assertEqual(self.migration.exclude_git_data, False)
self.assertEqual(self.migration.exclude_metadata, False)
self.assertEqual(self.migration.exclude_owner_projects, False)
self.assertEqual(self.migration.exclude_releases, False)
self.assertEqual(self.migration.guid, "608bceae-b790-11e8-8b43-4e3cb0dd56cc")
self.assertEqual(self.migration.id, 25320)
self.assertEqual(self.migration.lock_repositories, False)
self.assertEqual(self.migration.node_id, "MDk6TWlncmF0aW9uMjUzMjA=")
self.assertEqual(self.migration.org_metadata_only, False)
self.assertEqual(self.migration.owner.login, "singh811")
self.assertEqual(self.migration.guid, "608bceae-b790-11e8-8b43-4e3cb0dd56cc")
self.assertEqual(self.migration.repositories[0].full_name, "singh811/sample-repo")
self.assertEqual(self.migration.state, "exported")
self.assertEqual(self.migration.lock_repositories, False)
self.assertEqual(self.migration.exclude_attachments, False)
self.assertEqual(len(self.migration.repositories), 1)
self.assertEqual(self.migration.repositories[0].name, "sample-repo")
self.assertEqual(
self.migration.updated_at, datetime(2018, 9, 14, 1, 35, 46, tzinfo=timezone(timedelta(seconds=19800)))
)
self.assertEqual(self.migration.url, "https://api.github.com/user/migrations/25320")
self.assertEqual(
self.migration.created_at,
datetime(2018, 9, 14, 1, 35, 35, tzinfo=timezone(timedelta(seconds=19800))),
)
self.assertEqual(
self.migration.updated_at,
datetime(2018, 9, 14, 1, 35, 46, tzinfo=timezone(timedelta(seconds=19800))),
)
self.assertEqual(
repr(self.migration),
'Migration(url="https://api.github.com/user/migrations/25320", state="exported")',
)
def testGetArchiveUrlWhenNotExported(self):
self.assertRaises(github.UnknownObjectException, lambda: self.migration.get_archive_url())
def testGetStatus(self):
self.assertEqual(self.migration.get_status(), "exported")
def testGetArchiveUrlWhenExported(self):
self.assertEqual(
self.migration.get_archive_url(),
"https://github-cloud.s3.amazonaws.com/migration/25320/24575?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAISTNZFOVBIJMK3TQ%2F20180913%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180913T201100Z&X-Amz-Expires=300&X-Amz-Signature=a0aeb638facd0c78c1ed3ca86022eddbee91e5fe1bb48ee830f54b8b7b305026&X-Amz-SignedHeaders=host&actor_id=41840111&response-content-disposition=filename%3D608bceae-b790-11e8-8b43-4e3cb0dd56cc.tar.gz&response-content-type=application%2Fx-gzip",
)
def testDelete(self):
self.assertEqual(self.migration.delete(), None)
def testGetArchiveUrlWhenDeleted(self):
self.assertRaises(github.UnknownObjectException, lambda: self.migration.get_archive_url())
def testUnlockRepo(self):
self.assertEqual(self.migration.unlock_repo("sample-repo"), None)
|