vote up 1 vote down star

I am looking into QUnit for JavaScript unit testing. I am in a strange situation where I am checking against the value returned from the Ajax call.

For the following test I am purposely trying to fail it.

 // test to check if the persons are returned! 
        test("getPersons", function() {

            getPersons(

            function(response) {

                //persons = $.evalJSON(response.d);                
                equals("boo", "Foo", "The name is valid");
            }
            );

But it ends up passing all the time. Here is the getPersons method that make the Ajax call.

function getPersons(callback) {

    var persons = null;

    $.ajax(

    {
        type: "POST",
        dataType: "json",
        data: "{}",
        contentType: "application/json",
        url: "AjaxService.asmx/GetPersons",
        success: function(response) {            
            callback(response);
        }
    }
    );   

}
flag

47% accept rate

2 Answers

vote up 2 vote down check

Starting and stopping using the QUnit library seems to be working!

 // test to check if the persons are returned! 
        test("getPersons", function() {

            stop();

            getPersons(

            function(response) {
            persons = $.evalJSON(response.d);

            equals(persons[0].FirstName, "Mohammad");

                start();

            }
            );



        });
link|flag
vote up 1 vote down

ive done some qunit testing with ajax. its not pretty. the best thing i could come with is stopping the test when ajax is fired, and starting it again in the success callback. (using start() and stop()) methods. This meant one ajax request at a time, but i could live with that. Good luck

link|flag
Starting and stopping seems to be working! The solution is posted in the post below. Thanks! – azamsharp Jun 2 at 18:46
But I wonder why my above approach was not working. I could access the response and everything. It seemed that the equals was failing! – azamsharp Jun 2 at 18:47
i think that because of async nature of ajax, the test was finishing before the response came back – mkoryak Jun 2 at 18:51

Your Answer

Get an OpenID
or

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