def test_02(self):
     """Test_retHtmlFileName.test_02(): retHtmlFileLink() - basic functionality."""
     self.assertEqual('_734d45cfc660ec2a4a5ad236ee323599.html#4',
                      HtmlUtils.retHtmlFileLink('', 4))
     self.assertEqual('foo.lis_35496a3f79fc3f1bc5dd166e7411c841.html#4',
                      HtmlUtils.retHtmlFileLink('foo.lis', 4))
     myPathStr = 'a very long path that goes on and on and on and you think that it will never ever stop spam.lis'
     myPath = os.path.join(*myPathStr.split())
     self.assertEqual(
         'a/very/long/path/that/goes/on/and/on/and/on/and/you/think/that/it/will/never/ever/stop/spam.lis',
         myPath)
     self.assertEqual(
         'spam.lis_0a499c9c49dee920456848d72b8aabe2.html#4',
         HtmlUtils.retHtmlFileLink(myPath, 4),
     )
Exemple #2
0
 def test_02(self):
     """Test_retHtmlFileName.test_02(): retHtmlFileLink() - basic functionality."""
     self.assertEqual('_5458a57e4dc446c657ecb558416c36b5.html#4',
                      HtmlUtils.retHtmlFileLink('', 4))
     self.assertEqual('foo.lis_987d43c274104ccae9d86bd5aa7d80e0.html#4',
                      HtmlUtils.retHtmlFileLink('foo.lis', 4))
     myPathStr = 'a very long path that goes on and on and on and you think that it will never ever stop spam.lis'
     myPath = os.path.join(*myPathStr.split())
     self.assertEqual(
         'a/very/long/path/that/goes/on/and/on/and/on/and/you/think/that/it/will/never/ever/stop/spam.lis',
         myPath)
     self.assertEqual(
         'spam.lis_87c42a1bc41f4b8579f088dce504d710.html#4',
         HtmlUtils.retHtmlFileLink(myPath, 4),
     )