Exemple #1
0
    def test_url(self):
        with app.test_request_context():
            p = Paste.new(text='test')
            url = utils.create_paste_url(p)
            assert url == 'http://localhost/p/1/'

            url = utils.create_paste_url(p, relative=True)
            assert url == '/p/1/'
Exemple #2
0
    def test_url(self):
        with app.test_request_context():
            p = Paste.new(text='test')
            url = utils.create_paste_url(p)
            assert url == 'http://localhost/p/1/'

            url = utils.create_paste_url(p, relative=True)
            assert url == '/p/1/'
Exemple #3
0
    def test_url_for(self):
        with app.test_request_context():
            url = utils.pypaste_url_for('pastes.public', paste_id=1)
            assert url == '/p/1/'

            url = utils.pypaste_url_for('pastes.public', paste_id=1, _scheme='https')
            assert url == 'https://localhost/p/1/'

            app.config['FORCE_SSL'] = True
            url = utils.pypaste_url_for('pastes.public', paste_id=1)
            assert url == 'https://localhost/p/1/'
Exemple #4
0
    def test_url_for(self):
        with app.test_request_context():
            url = utils.pypaste_url_for('pastes.public', paste_id=1)
            assert url == '/p/1/'

            url = utils.pypaste_url_for('pastes.public',
                                        paste_id=1,
                                        _scheme='https')
            assert url == 'https://localhost/p/1/'

            app.config['FORCE_SSL'] = True
            url = utils.pypaste_url_for('pastes.public', paste_id=1)
            assert url == 'https://localhost/p/1/'