2013-08-01 5 views
10

Używam następujący kod w dyrektywie, aby umieścić podpowiedziJak dodać div do DOM w testach jednostkowych AngularJS?

var bodyoffset = document.querySelector(".smallcontainer-content").getBoundingClientRect(); 
var width = elm.width(); 
if(bodyoffset != undefined){ 
    var tooltipDiv = document.querySelector(".tooltip"); 
    angular.element(tooltipDiv).css("top", offset.top-bodyoffset.top+"px"); 
    angular.element(tooltipDiv).css("left", offset.left-bodyoffset.left+width+5+"px"); 
} 

To nie działa w badanej jednostki jako div klasy „” jest na smallcontainer nie istnieje. Jak mogę się upewnić, że element div zostanie utworzony w teście jednostki, aby móc przetestować wszystkie moje funkcje?

Odpowiedz

14

W ten sposób udało mi się to zrobić.

beforeEach(inject(
    ['$compile','$rootScope', function(_$compile_) { 
     var html = '<div class="smallcontainer-content"></div>'; 
     angular.element(document.body).append(html); 
     elm = angular.element('<form name="form"><input name="password" id="passwordInput" data-ng-model="password" size="25" type="password" maxlength="20" tabindex="1" autofocus data-my-password-check></form>'); 
     $compile(elm)($rootScope); 
     form = $rootScope.form; 

    }] 
)); 

Ważną częścią tutaj, które dodaje się do dokumentu HTML jest angular.element() dołączyć().

Znalazłem to w midway przykład kodu testowego z http://www.yearofmoo.com/2013/01/full-spectrum-testing-with-angularjs-and-karma.html#testing-filters