示例#1
0
    def test_json_params(self):
        params = {
            'base_path': '/base',
            'subtitle': 'Foo',
            'author': 'Bar',
            'site_url': 'http://localhost/base'
        }
        with open('params.json', 'w') as f:
            json.dump(params, f)
        makesite.main()

        with open('_site/blog/proin-quam/index.html') as f:
            s1 = f.read()

        with open('_site/blog/rss.xml') as f:
            s2 = f.read()

        shutil.rmtree('_site')

        self.assertIn('<a href="/base/">Home</a>', s1)
        self.assertIn('<title>Proin Quam - Foo</title>', s1)
        self.assertIn('Published on 2018-01-01 by <b>Bar</b>', s1)

        self.assertIn('<link>http://localhost/base/</link>', s2)
        self.assertIn('<link>http://localhost/base/blog/proin-quam/</link>', s2)
示例#2
0
    def test_site_exists(self):
        os.mkdir('_site')
        with open('_site/foo.txt', 'w') as f:
            f.write('foo')

        self.assertTrue(os.path.isfile('_site/foo.txt'))
        makesite.main()
        self.assertFalse(os.path.isfile('_site/foo.txt'))
示例#3
0
    def test_default_params(self):
        makesite.main()

        with open('_site/blog/proin-quam/index.html') as f:
            s1 = f.read()

        with open('_site/blog/rss.xml') as f:
            s2 = f.read()

        shutil.rmtree('_site')

        self.assertIn('<a href="/">Home</a>', s1)
        self.assertIn('<title>Proin Quam - Lorem Ipsum</title>', s1)
        self.assertIn('Published on 2018-01-01 by <b>Admin</b>', s1)

        self.assertIn('<link>http://localhost:8000/</link>', s2)
        self.assertIn('<link>http://localhost:8000/blog/proin-quam/</link>', s2)
示例#4
0
 def test_site_missing(self):
     makesite.main()