Вход Регистрация
Файл: framework/thirdparty/jasmine-ajax/examples/jquery/spec/javascripts/TwitterApiSpec.js
Строк: 114
<?php
describe
("TwitterApi#search", function(){
  var 
twitterrequest;
  var 
onSuccessonFailureonCompleteonFailWhale;

  
beforeEach(function(){
    
onSuccess jasmine.createSpy('onSuccess');
    
onFailure jasmine.createSpy('onFailure');
    
onComplete jasmine.createSpy('onComplete');
    
onFailWhale jasmine.createSpy('onFailWhale');

    
twitter = new TwitterApi();

    
twitter.search('basketball', {
      
onSuccessonSuccess,
      
onFailureonFailure,
      
onCompleteonComplete,
      
onFailWhaleonFailWhale
    
});

    
request mostRecentAjaxRequest();
  });

  
it("calls Twitter with the correct url", function(){
    
expect(request.url).toEqual("http://search.twitter.com/search.json?q=basketball")
  });

  
describe("on success", function(){
    
beforeEach(function(){
      
request.response(TestResponses.search.success);
    });

    
it("calls onSuccess with an array of Tweets", function(){
      var 
successArgs onSuccess.mostRecentCall.args[0];

      
expect(onSuccess).toHaveBeenCalledWith(jasmine.any(Array));
      
expect(successArgs.length).toEqual(15);
      
expect(successArgs[0]).toEqual(jasmine.any(Tweet));
    });

    
it("calls onComplete", function(){
      
expect(onComplete).toHaveBeenCalled();
    });

    
it("does not call onFailure", function(){
      
expect(onFailure).not.toHaveBeenCalled();
    })

  });

  
describe('on failure', function(){
    
beforeEach(function(){
      
request.response(TestResponses.search.failure);
    });

    
it("calls onFailure", function() {
      
expect(onFailure).toHaveBeenCalled();
    });

    
it("call onComplete", function(){
      
expect(onComplete).toHaveBeenCalled();
    });

    
it("does not call onSuccess", function(){
      
expect(onSuccess).not.toHaveBeenCalled();
    });
  });

  
describe("on fail whale", function(){
    
beforeEach(function(){
      
request.response(TestResponses.search.failWhale);
    });

    
it("calls onFailWhale", function(){
      
expect(onFailWhale).toHaveBeenCalled();
    });

    
it("does not call onSuccess", function(){
      
expect(onSuccess).not.toHaveBeenCalled();
    });

    
it("calls onComplete", function(){
      
expect(onComplete).toHaveBeenCalled();
    });
  });

});
?>
Онлайн: 0
Реклама