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
|
#!/usr/bin/env python
############################ Copyrights and license ############################
# #
# Copyright 2022 Aleksei Fedotov <lexa@cfotr.com> #
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
# Copyright 2023 Trim21 <trim21.me@gmail.com> #
# #
# 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/>. #
# #
################################################################################
import github
from . import Framework
class Artifact(Framework.TestCase):
def setUp(self):
super().setUp()
self.repo = self.g.get_repo("transmission-web-control/transmission-web-control")
def testGetArtifactsFromWorkflow(self):
artifact = self.repo.get_workflow_run(5138169628).get_artifacts()[0]
self.assertEqual(artifact.name, "build-tar")
self.assertFalse(artifact.expired)
self.assertEqual(repr(artifact), 'Artifact(name="build-tar", id=724958104)')
def testGetArtifactsFromRepoWithName(self):
artifacts = self.repo.get_artifacts(name="build-tar")
self.assertEqual(artifacts.totalCount, 296)
assert all(x.name == "build-tar" for x in artifacts)
artifact = artifacts[0]
self.assertEqual(artifact.name, "build-tar")
self.assertEqual(repr(artifact), 'Artifact(name="build-tar", id=724959170)')
def testGetSingleArtifactFromRepo(self):
artifact = self.repo.get_artifact(719509139)
self.assertEqual(artifact.name, "build-zip")
self.assertFalse(artifact.expired)
self.assertEqual(repr(artifact), 'Artifact(name="build-zip", id=719509139)')
def testGetArtifactsFromRepo(self):
artifact_id = 719509139
artifacts = self.repo.get_artifacts()
for item in artifacts:
if item.id == artifact_id:
artifact = item
break
else:
assert False, f"No artifact {artifact_id} is found"
self.assertEqual(
repr(artifact),
f'Artifact(name="build-zip", id={artifact_id})',
)
def testGetNonexistentArtifact(self):
artifact_id = 396724437
repo_name = "lexa/PyGithub"
repo = self.g.get_repo(repo_name)
with self.assertRaises(github.GithubException):
repo.get_artifact(artifact_id)
def testDelete(self):
artifact_id = 396724439
repo_name = "lexa/PyGithub"
repo = self.g.get_repo(repo_name)
artifact = repo.get_artifact(artifact_id)
self.assertTrue(artifact.delete())
with self.assertRaises(github.GithubException):
repo.get_artifact(artifact_id)
|