66 lines
2.5 KiB
Python
Executable File
66 lines
2.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import unittest
|
|
from devops import Organization, Repository, Project, Item
|
|
|
|
# Setup the Organization object outside the test class to speed up tests.
|
|
# Each Unit test instantinates the class, so doing it here avoids repeated authentication.
|
|
org = Organization("https://dev.azure.com/mcovsandbox")
|
|
|
|
class Test01(unittest.TestCase):
|
|
def setUp(self):
|
|
self.org = org
|
|
|
|
def test_01(self):
|
|
"""Listing projects in the organization"""
|
|
org = self.org
|
|
projects = list(org.projects)
|
|
self.assertGreater(len(projects), 0)
|
|
|
|
class Test02(unittest.TestCase):
|
|
def setUp(self):
|
|
self.org = org
|
|
|
|
def test_01(self):
|
|
"""Listing repositories in a project"""
|
|
project = Project(self.org, id="bafe0cf1-6c97-4088-864a-ea6dc02b2727")
|
|
repos = list(project.repositories)
|
|
self.assertGreater(len(repos), 0)
|
|
|
|
class Test03(unittest.TestCase):
|
|
def setUp(self):
|
|
self.org = org
|
|
|
|
def test_01(self):
|
|
"""Getting details of a specific item in a repository"""
|
|
item = Item(Repository(Project(self.org, id="bafe0cf1-6c97-4088-864a-ea6dc02b2727"), id="feac266f-84d2-41bc-839b-736925a85eaa"), path="/generate-pat.py")
|
|
self.assertEqual(item.path, "/generate-pat.py")
|
|
self.assertIsNotNone(item.commit_id)
|
|
|
|
def test_02(self):
|
|
"""Listing items in a folder within a repository"""
|
|
repo = Repository(Project(self.org, id="bafe0cf1-6c97-4088-864a-ea6dc02b2727"), id="feac266f-84d2-41bc-839b-736925a85eaa")
|
|
docs_item = Item(repo, path="/container")
|
|
children = list(docs_item.children)
|
|
self.assertGreater(len(children), 0)
|
|
|
|
class Test04(unittest.TestCase):
|
|
def setUp(self):
|
|
self.org = org
|
|
|
|
def test_01(self):
|
|
"""Getting details of a specific item in a repository"""
|
|
item = Item(Repository(Project(self.org, id="bafe0cf1-6c97-4088-864a-ea6dc02b2727"), id="feac266f-84d2-41bc-839b-736925a85eaa"), path="/generate-pat.py")
|
|
self.assertEqual(item.path, "/generate-pat.py")
|
|
self.assertIsNotNone(item.commit_id)
|
|
|
|
def test_02(self):
|
|
"""Listing items in a folder within a repository"""
|
|
repo = Repository(Project(self.org, id="bafe0cf1-6c97-4088-864a-ea6dc02b2727"), id="feac266f-84d2-41bc-839b-736925a85eaa")
|
|
docs_item = Item(repo, path="/container")
|
|
children = list(docs_item.children)
|
|
self.assertGreater(len(children), 0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|