class EndnoteObjectTest(Contract, unittest.TestCase): def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True) def test_author(self): pass def test_check_cff_object(self): with self.assertRaises(ValueError) as context: self.eo.check_cff_object() self.assertTrue('Missing key "cff-version" in CITATION.cff file.' in str(context.exception)) def test_doi(self): pass def test_keyword(self): pass def test_name(self): pass def test_print(self): pass def test_url(self): pass def test_year(self): pass
def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True)
class EndnoteObjectTest(Contract, unittest.TestCase): def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True) def test_check_cff_object(self): self.eo.check_cff_object() # doesn't need an assert def test_author(self): self.eo.add_author() self.assertEqual(self.eo.author, '%A Fernández de Córdoba Jr., Gonzalo\n') def test_doi(self): self.eo.add_doi() self.assertIsNone(self.eo.doi) def test_keyword(self): self.eo.add_keyword() self.assertIsNone(self.eo.keyword) def test_name(self): self.eo.add_name() self.assertEqual(self.eo.name, '%T example title\n') def test_print(self): actual_endnote = self.eo.add_all().print() fixture = os.path.join(os.path.dirname(__file__), "endnote.enw") with open(fixture, "r") as f: expected_endnote = f.read() self.assertEqual(actual_endnote, expected_endnote) def test_url(self): self.eo.add_url() self.assertIsNone(self.eo.url) def test_year(self): self.eo.add_year() self.assertEqual(self.eo.year, "%D 1999\n")
class EndnoteObjectTest(Contract, unittest.TestCase): def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True) def test_check_cff_object(self): self.eo.check_cff_object() # doesn't need an assert def test_author(self): self.eo.add_author() self.assertEqual(self.eo.author, '%A Attema, Jisk\n%A Diblen, Faruk\n') def test_doi(self): self.eo.add_doi() self.assertEqual(self.eo.doi, '%R 10.5281/zenodo.1003346\n') def test_keyword(self): self.eo.add_keyword() self.assertEqual(self.eo.keyword, '%K visualization\n%K big data\n%K visual ' + \ 'data analytics\n%K multi-dimensional data\n') def test_name(self): self.eo.add_name() self.assertEqual(self.eo.name, '%T spot\n') def test_print(self): actual_endnote = self.eo.add_all().print() fixture = os.path.join(os.path.dirname(__file__), "endnote.enw") with open(fixture, "r") as f: expected_endnote = f.read() self.assertEqual(actual_endnote, expected_endnote) def test_url(self): self.eo.add_url() self.assertEqual(self.eo.url, '%U https://github.com/NLeSC/spot\n') def test_year(self): self.eo.add_year() self.assertEqual(self.eo.year, '%D 2017\n')
class EndnoteObjectTest(Contract, unittest.TestCase): def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True) def test_check_cff_object(self): self.eo.check_cff_object() # doesn't need an assert def test_author(self): self.eo.add_author() self.assertEqual( self.eo.author, '%A Spaaks, Jurriaan H.\n%A Klaver, Tom\n%A mysteryauthor\n') def test_doi(self): self.eo.add_doi() self.assertEqual(self.eo.doi, '%R 10.5281/zenodo.1162057\n') def test_keyword(self): self.eo.add_keyword() self.assertEqual( self.eo.keyword, '%K citation\n%K bibliography\n%K cff\n%K CITATION.cff\n') def test_name(self): self.eo.add_name() self.assertEqual(self.eo.name, '%T cff-converter-python\n') def test_print(self): actual_endnote = self.eo.add_all().print() fixture = os.path.join(os.path.dirname(__file__), "endnote.enw") with open(fixture, "r") as f: expected_endnote = f.read() self.assertEqual(actual_endnote, expected_endnote) def test_url(self): self.eo.add_url() self.assertEqual( self.eo.url, '%U https://github.com/citation-file-format/cff-converter-python\n' ) def test_year(self): self.eo.add_year() self.assertEqual(self.eo.year, '%D 2018\n')
class EndnoteObjectTest(Contract, unittest.TestCase): def setUp(self): fixture = os.path.join(os.path.dirname(__file__), "CITATION.cff") with open(fixture, "r") as f: cffstr = f.read() cff_object = yaml.safe_load(cffstr) self.eo = EndnoteObject(cff_object, initialize_empty=True) def test_check_cff_object(self): self.eo.check_cff_object() # doesn't need an assert def test_author(self): self.eo.add_author() self.assertEqual(self.eo.author, '%A Van Zandt, Steven\n%A van Zandt, Steven\n') def test_doi(self): self.eo.add_doi() self.assertIsNone(self.eo.doi) def test_keyword(self): self.eo.add_keyword() self.assertIsNone(self.eo.keyword) def test_name(self): self.eo.add_name() self.assertEqual(self.eo.name, '%T cff-converter-python\n') def test_print(self): actual_endnote = self.eo.add_all().print() fixture = os.path.join(os.path.dirname(__file__), "endnote.enw") with open(fixture, "r") as f: expected_endnote = f.read() self.assertEqual(actual_endnote, expected_endnote) def test_url(self): self.eo.add_url() self.assertIsNone(self.eo.url) def test_year(self): self.eo.add_year() self.assertEqual(self.eo.year, '%D 2018\n')