コード例 #1
0
ファイル: test_db.py プロジェクト: kkneha/Dig_application
def test_get_close_db(app):
    with app.app_context():
        db = get_db()
        assert db is get_db()

    with pytest.raises(sqlite3.ProgrammingError) as e:
        db.execute('SELECT 1')

    assert 'closed' in str(e.value)
コード例 #2
0
def app():
    db_fd, db_path = tempfile.mkstemp()

    app = create_app({
        'TESTING': True,
        'DATABASE': db_path,
    })

    with app.app_context():
        init_db()
        get_db().executescript(_data_sql)

    yield app

    os.close(db_fd)
    os.unlink(db_path)
コード例 #3
0
def home():
    db = get_db()
    applicationdata = db.execute(
        'SELECT p.id, title, body, created, author_id, username'
        ' FROM application_data p JOIN user u ON p.author_id = u.id'
        ' ORDER BY created DESC').fetchall()
    return render_template('blog/home.html', applicationdata=applicationdata)
コード例 #4
0
ファイル: auth.py プロジェクト: kkneha/Dig_application
def register():
    if request.method == 'POST':
        firstname = request.form['firstname']
        lastname = request.form['lastname']
        username = request.form['username']
        password = request.form['password']
        db = get_db()
        error = None
        if not firstname:
            error = 'Firstname is required'
        if not username:
            error = 'Username is required.'
        elif not password:
            error = 'Password is required.'
        elif db.execute('SELECT id FROM user WHERE username = ?',
                        (username, )).fetchone() is not None:
            error = 'User {} is already registered.'.format(username)

        if error is None:
            db.execute(
                'INSERT INTO user (username, password, first_name, last_name) VALUES (?, ?, ?,?)',
                (username, generate_password_hash(password), firstname,
                 lastname))
            db.commit()
            return redirect(url_for('auth.login'))

        flash(error)

    return render_template('auth/register.html')
コード例 #5
0
ファイル: auth.py プロジェクト: kkneha/Dig_application
def load_logged_in_user():
    user_id = session.get('user_id')

    if user_id is None:
        g.user = None
    else:
        g.user = get_db().execute('SELECT * FROM user WHERE id = ?',
                                  (user_id, )).fetchone()
コード例 #6
0
def test_delete(client, auth, app):
    auth.login()
    response = client.post('/1/delete')
    assert response.headers['Location'] == 'http://localhost/'

    with app.app_context():
        db = get_db()
        post = db.execute('SELECT * FROM post WHERE id = 1').fetchone()
        assert post is None
コード例 #7
0
def test_update(client, auth, app):
    auth.login()
    assert client.get('/1/update').status_code == 200
    client.post('/1/update', data={'title': 'updated', 'body': ''})

    with app.app_context():
        db = get_db()
        post = db.execute('SELECT * FROM post WHERE id = 1').fetchone()
        assert post['title'] == 'updated'
コード例 #8
0
def test_create(client, auth, app):
    auth.login()
    assert client.get('/create').status_code == 200
    client.post('/create', data={'title': 'created', 'body': ''})

    with app.app_context():
        db = get_db()
        count = db.execute('SELECT COUNT(id) FROM post').fetchone()[0]
        assert count == 2
コード例 #9
0
def test_author_required(app, client, auth):
    # change the post author to another user
    with app.app_context():
        db = get_db()
        db.execute('UPDATE post SET author_id = 2 WHERE id = 1')
        db.commit()

    auth.login()
    # current user can't modify other user's post
    assert client.post('/1/update').status_code == 403
    assert client.post('/1/delete').status_code == 403
    # current user doesn't see edit link
    assert b'href="/1/update"' not in client.get('/').data
コード例 #10
0
def get_post(id, check_author=True):
    post = get_db().execute(
        'SELECT p.id, title, body, created, author_id, username'
        ' FROM application_data p JOIN user u ON p.author_id = u.id'
        ' WHERE p.id = ?', (id, )).fetchone()

    if post is None:
        abort(404, "Post id {0} doesn't exist.".format(id))

    if check_author and post['author_id'] != g.user['id']:
        abort(403)

    return post
コード例 #11
0
def create():
    if request.method == 'POST':
        to = request.form['to']
        body = request.form['body']
        error = None
        if not to:
            error = 'to is required'

        if error is not None:
            flash(error)
        else:
            db = get_db()
            db.execute(
                'INSERT INTO application_data (title, body, author_id)'
                ' VALUES (?, ?, ?)', (to, body, g.user['id']))
            db.commit()
            return redirect(url_for('blog.index'))

    return render_template('blog/create.html')
コード例 #12
0
def signatories1():
    if request.method == 'POST':
        no_of_signatories = request.form['no_of_signatures']
        Name = request.form['Name']
        Designation = request.form['Designation']
        Institute = request.form['Institute']
        error = None
        if not to:
            error = 'to is required'

        if error is not None:
            flash(error)
        else:
            db = get_db()
            for i in range(no_of_signatures):
                db.execute(
                    'INSERT INTO signatories_table(sig_name, designation, institute_name)'
                    ' VALUES (?, ?, ?)', (Name, Designation, Institute))
            db.commit()
            return redirect(url_for('blog.index'))
    return render_template('blog/signatories1.html')
コード例 #13
0
def update(id):
    post = get_post(id)

    if request.method == 'POST':
        to = request.form['to']
        body = request.form['body']
        error = None

        if not to:
            error = 'to is required.'

        if error is not None:
            flash(error)
        else:
            db = get_db()
            db.execute(
                'UPDATE application_data SET title = ?, body = ?'
                ' WHERE id = ?', (title, body, id))
            db.commit()
            return redirect(url_for('blog.index'))

    return render_template('blog/update.html', post=post)
コード例 #14
0
ファイル: auth.py プロジェクト: kkneha/Dig_application
def login():
    if request.method == 'POST':
        username = request.form['username']
        password = request.form['password']
        db = get_db()
        error = None
        user = db.execute('SELECT * FROM user WHERE username = ?',
                          (username, )).fetchone()

        if user is None:
            error = 'Incorrect username.'
        elif not check_password_hash(user['password'], password):
            error = 'Incorrect password.'

        if error is None:
            session.clear()
            session['user_id'] = user['id']
            return redirect(url_for('index'))

        flash(error)

    return render_template('auth/login.html')
コード例 #15
0
def delete(id):
    get_post(id)
    db = get_db()
    db.execute('DELETE FROM application_data WHERE id = ?', (id, ))
    db.commit()
    return redirect(url_for('blog.index'))