Testing Flask applications is done with:

# main.py
from flask import Flask, request

app = flask.Flask(__name__)

@app.route('/')
def index():
    s = 'Hello world!', 'AJAX Request: {0}'.format(request.is_xhr)
    print s
    return s

if __name__ == '__main__':
    app.run()

Then here is my test script:

# test_script.py
import main
import unittest

class Case(unittest.TestCase):
    def test_index():
        tester = app.test_client()
        rv = tester.get('/')
        assert 'Hello world!' in rv.data

if __name__ == '__main__':
    unittest.main()

In the test output, I'll get:

Hello world! AJAX Request: False

Question

How do I test my app with AJAX requests?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Try this:-

def test_index():
    tester = app.test_client()
    rv = tester.get('/', headers=[('X-Requested-With', 'XMLHttpRequest')])
    assert 'Hello world!' in rv.data
link|improve this answer
Excellent! :) I was just looking for the parameters I can set for the .get() function. I was already digging deep into the werkzeug docs :S Which part of the docs did you get this? – Kit Jan 30 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.