mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
* add import source * add import header * create/get source import for repo, SourceImport class * Corrected use_lfs, not considered completed with creation * vcs creds optional * SourceImport test, removed unneeded attributes * create/get source import tests for repo * Encoding and copyright comment * styling fixes * Update SourceImport.py * Update SourceImport.py * Update SourceImport.py
54 lines
3.5 KiB
Python
54 lines
3.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# ########################## Copyrights and license ############################
|
|
# #
|
|
# Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
# Copyright 2012 Zearin <zearin@gonk.net> #
|
|
# Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net> #
|
|
# #
|
|
# 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 Framework
|
|
|
|
|
|
class SourceImport(Framework.TestCase):
|
|
def setUp(self):
|
|
Framework.TestCase.setUp(self)
|
|
self.user = self.g.get_user("brix4dayz")
|
|
self.repo = self.user.get_repo("source-import-test")
|
|
self.source_import = self.repo.get_source_import()
|
|
|
|
def testAttributes(self):
|
|
self.assertEqual(self.source_import.authors_count, 1)
|
|
self.assertEqual(self.source_import.authors_url, "https://api.github.com/repos/brix4dayz/source-import-test/import/authors")
|
|
self.assertEqual(self.source_import.has_large_files, False)
|
|
self.assertEqual(self.source_import.html_url, "https://github.com/brix4dayz/source-import-test/import")
|
|
self.assertEqual(self.source_import.large_files_count, 0)
|
|
self.assertEqual(self.source_import.large_files_size, 0)
|
|
self.assertEqual(self.source_import.repository_url, "https://api.github.com/repos/brix4dayz/source-import-test")
|
|
self.assertEqual(self.source_import.status, "complete")
|
|
self.assertEqual(self.source_import.status_text, "Done")
|
|
self.assertEqual(self.source_import.url, "https://api.github.com/repos/brix4dayz/source-import-test/import")
|
|
self.assertEqual(self.source_import.use_lfs, "undecided")
|
|
self.assertEqual(self.source_import.vcs, "mercurial")
|
|
self.assertEqual(self.source_import.vcs_url, "https://bitbucket.org/hfuss/source-import-test")
|
|
|
|
self.assertEqual(self.source_import.__repr__(),
|
|
'SourceImport(vcs_url="https://bitbucket.org/hfuss/source-import-test", url="https://api.github.com/repos/brix4dayz/source-import-test/import", status="complete", repository_url="https://api.github.com/repos/brix4dayz/source-import-test")')
|