--- /dev/null
+import requests
+from datetime import datetime
+from pytest import raises
+
+from teuthology.config import config
+from teuthology import suite
+
+
+class TestSuite(object):
+ def test_name_timestamp_passed(self):
+ stamp = datetime.now().strftime('%Y-%m-%d_%H:%M:%S')
+ name = suite.make_name('suite', 'ceph', 'kernel', 'flavor', 'mtype',
+ timestamp=stamp)
+ assert str(stamp) in name
+
+ def test_name_timestamp_not_passed(self):
+ stamp = datetime.now().strftime('%Y-%m-%d_%H:%M:%S')
+ name = suite.make_name('suite', 'ceph', 'kernel', 'flavor', 'mtype')
+ assert str(stamp) in name
+
+ def test_name_user(self):
+ name = suite.make_name('suite', 'ceph', 'kernel', 'flavor', 'mtype',
+ user='USER')
+ assert name.startswith('USER-')
+
+ def test_ceph_hash(self):
+ resp = requests.get(
+ 'https://api.github.com/repos/ceph/ceph/git/refs/heads/master')
+ ref_hash = resp.json()['object']['sha']
+ assert suite.get_hash('ceph') == ref_hash
+
+ def test_distro_defaults_saya(self):
+ assert suite.get_distro_defaults('ubuntu', 'saya') == ('armv7l',
+ 'saucy', 'deb')
+
+ def test_distro_defaults_plana(self):
+ assert suite.get_distro_defaults('ubuntu', 'plana') == ('x86_64',
+ 'precise',
+ 'deb')
+
+ def test_gitbuilder_url(self):
+ ref_url = "http://gitbuilder.ceph.com/ceph-deb-squeeze-x86_64-basic/"
+ assert suite.get_gitbuilder_url('ceph', 'squeeze', 'deb', 'x86_64',
+ 'basic') == ref_url
+
+ def test_config_bogus_kernel_branch(self):
+ # Don't attempt to send email
+ config.results_email = None
+ with raises(suite.ScheduleFailError):
+ suite.create_initial_config('s', 'c', 't', 'bogus_kernel_branch',
+ 'f', 'd', 'm')
+
+ def test_config_bogus_kernel_flavor(self):
+ # Don't attempt to send email
+ config.results_email = None
+ with raises(suite.ScheduleFailError):
+ suite.create_initial_config('s', 'c', 't', 'k',
+ 'bogus_kernel_flavor', 'd', 'm')
+
+ def test_config_bogus_ceph_branch(self):
+ # Don't attempt to send email
+ config.results_email = None
+ with raises(suite.ScheduleFailError):
+ suite.create_initial_config('s', 'bogus_ceph_branch', 't', 'k',
+ 'f', 'd', 'm')
+
+
+# add other tests that use create_initial_config, deserialize the yaml stream
+# maybe use notario for the above?