class TestDailyTree(TestCase): def setUp(self): super(TestDailyTree, self).setUp() self.use_temp_dir() self.config = Config(read=False) self.tree = DailyTree(self.config, self.temp_dir) def test_default_directory(self): self.config.root = self.temp_dir self.assertEqual( os.path.join(self.temp_dir, "www", "full"), DailyTree(self.config).directory) def test_name_to_series(self): self.assertEqual( "warty", self.tree.name_to_series("warty-install-i386.iso")) self.assertRaises(ValueError, self.tree.name_to_series, "README") def test_path_to_manifest(self): iso = "kubuntu/hoary-install-i386.iso" iso_path = os.path.join(self.temp_dir, iso) os.makedirs(os.path.dirname(iso_path)) touch(iso_path) self.assertEqual( "kubuntu\thoary\t/%s\t0" % iso, self.tree.path_to_manifest(iso)) def test_manifest_files_includes_current(self): daily = os.path.join(self.temp_dir, "daily") os.makedirs(os.path.join(daily, "20120806")) os.symlink("20120806", os.path.join(daily, "current")) touch(os.path.join(daily, "20120806", "warty-install-i386.iso")) self.assertEqual( ["daily/current/warty-install-i386.iso"], list(self.tree.manifest_files())) def test_manifest(self): daily = os.path.join(self.temp_dir, "daily") os.makedirs(os.path.join(daily, "20120806")) os.symlink("20120806", os.path.join(daily, "current")) touch(os.path.join(daily, "20120806", "hoary-install-i386.iso")) daily_live = os.path.join(self.temp_dir, "daily-live") os.makedirs(os.path.join(daily_live, "20120806")) os.symlink("20120806", os.path.join(daily_live, "current")) touch(os.path.join(daily_live, "20120806", "hoary-live-i386.iso")) self.assertEqual([ "ubuntu\thoary\t/daily-live/current/hoary-live-i386.iso\t0", "ubuntu\thoary\t/daily/current/hoary-install-i386.iso\t0", ], self.tree.manifest())
def setUp(self): super(TestDailyTree, self).setUp() self.use_temp_dir() self.config = Config(read=False) self.tree = DailyTree(self.config, self.temp_dir)