Hi everyone,
I'm trying to make my project with login function and now I want to make 
Unit Test for it. I'm using Karma for my test, but it failed. Could someone 
please help me to fix my test code right?
Thank in advanced!

Here is my login:

angular.module('myApp')
 .controller('LoginCtrl', function($scope, $http, $location, $cookieStore) {
   var self = this;
   $scope.invalid = false;
   $scope.username=$cookieStore.username;
   $scope.password=$cookieStore.password;


   this.login=function(){
     $http.post('/login', {
       username=$scope.username,
       password=$scope.password
    }).success(function(data) {
      $cookieStore.put('username');
      $location.url('/');
    })
    .error(function() {
      $scope.password='';
      $scope.invalid=true;
    });
  };
});


And here is my Test code:

'use strict';
describe('Controller: LoginCtrl', function() {
  var LoginCtrl, $httpBackend, $rootScope, $provide, $location, $cookieStore
, scope;
  beforeEach(module('myApp'));
  
  beforeEach(inject(function($injector) {
    $httpBackend=$injector.get('$httpBackend');
    $rootScope=$injector.get('rootScope');
    $cookieStore=$injector.get('$cookieStore');


    LoginCtrl=function() {
      return $controller('LoginCtrl', { // --> this is error: $controller 
is not defined
        '$scope': $rootScope,
        '$cookieStore': $cookieStore,
        '$location': $location
      });
    };
  }));
  
  //This is success
  it('should have a LoginCtrl controller', function() {
    expect('myApp.LoginCtrl').toBeDefined();
  });

  // Failure
  it('should store username and password into cookies', function() {
    var $scope={};
    var loginCtrl=LoginCtrl();
    $scope.username='testUser';
    expect($cookieStore.get('username')).toBe('testUser');
  });

  // Failure
  it('should logs a user in and redirect', function() {
    angular.element('username').enter('testUser'); // --> error: 
angular.element(...).enter is not a function
    angular.element('password').enter('testPassword');
    angular.element(':button').click();
    expect(location.url).toBe('/'); // --> error: location is not defined
  });
});

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to