Update test_server for rawhide

The system repo is 'rawhide' and the 'fedora' and 'updates' repos are
disabled.

(cherry picked from commit 22070dcf42)
This commit is contained in:
Brian C. Lane 2018-05-29 14:15:28 -07:00
parent 8ac04a1521
commit f88fbc3fca
1 changed files with 4 additions and 4 deletions

View File

@ -487,7 +487,7 @@ class ServerTestCase(unittest.TestCase):
resp = self.server.get("/api/v0/projects/source/list")
data = json.loads(resp.data)
self.assertNotEqual(data, None)
self.assertEqual(data["sources"], ["fedora", "lorax-1", "lorax-2", "lorax-3", "lorax-4", "other-repo", "single-repo", "updates"])
self.assertEqual(data["sources"], ["lorax-1", "lorax-2", "lorax-3", "lorax-4", "other-repo", "rawhide", "single-repo"])
def test_projects_source_00_info(self):
"""Test /api/v0/projects/source/info"""
@ -539,16 +539,16 @@ class ServerTestCase(unittest.TestCase):
def test_projects_source_01_delete_system(self):
"""Test /api/v0/projects/source/delete a system source"""
resp = self.server.delete("/api/v0/projects/source/delete/fedora")
resp = self.server.delete("/api/v0/projects/source/delete/rawhide")
data = json.loads(resp.data)
self.assertNotEqual(data, None)
self.assertEqual(data["status"], False)
# Make sure fedora is still listed
# Make sure rawhide is still listed
resp = self.server.get("/api/v0/projects/source/list")
data = json.loads(resp.data)
self.assertNotEqual(data, None)
self.assertTrue("fedora" in data["sources"])
self.assertTrue("rawhide" in data["sources"])
def test_projects_source_02_delete_single(self):
"""Test /api/v0/projects/source/delete a single source"""