End To End (E2E) Tests In Angular Application Using Protractor

Introduction

In this article, we will learn how we can create end-to-end tests (e2e) for our Angular application. We will be using an existing end-to-end testing framework, which is nothing but Protractor. Protractor runs your tests against your application running in a real browser, in accordance to that, your user may perform the actions. I will be using an existing application which is available in my GitHub profile. The same can be available in the source code section. I hope you will like this article. Let’s start coding.

Source Code

The source code can be found here. Please clone this repository before you start.

Importance of End to End Testing

Some of you might have already started writing end-to-end testing for your application, and you may know how important that is. Here in this section, I will list down the key benefits of it.

  • End to end testing tests the compete flow or the action. For example, a complete login process can be treated as one end to end testing. Basically, it tests a specific functionality.
  • It doesn’t improve the code quality as does in Unit testing. Unit testing is a different topic, and end to end testing and unit testing are completely different.
  • As I said earlier, end to end testing runs the tests on the browser, so it tests your application live, with some real data.
  • You can easily find out if any functionalities are broken because of your recent changes or implementation.

Basic overview

If you have already cloned the application, you should be able to see a folder e2e in your application code. Open that folder. You can see 3 files as below.

  • tsconfig.e2e.json
  • app.po.ts
  • app.e2e-spec.ts

Here, tsconfig.e2e.json is the configuration file. If you open that file, you can see that the file is extended from tsconfig.json.

  1. {  
  2.     "extends""../tsconfig.json",  
  3.     "compilerOptions": {  
  4.         "outDir""../out-tsc/e2e",  
  5.         "baseUrl""./",  
  6.         "module""commonjs",  
  7.         "target""es5",  
  8.         "types": ["jasmine""jasminewd2""node"]  
  9.     }  
  10. }  

app.po.ts is the page object. This is really helpful and important. Here is the place where we will write the codes to find out the elements in our page or View. So, in future, if you are changing the selectors of your element, your changes will impact only in this file, so that you don’t need to change anything in your tests. Isn’t that handy? By default, this file will have the codes as below.

  1. import {  
  2.     browser,  
  3.     by,  
  4.     element  
  5. } from 'protractor';  
  6. exportclass AppPage {  
  7.     navigateTo() {  
  8.         returnbrowser.get('/');  
  9.     }  
  10.     getParagraphText() {  
  11.         returnelement(by.css('app-root h1')).getText();  
  12.     }  
  13. }  

As you can see on the first line, we are importing the browser by element from protractor.

  1. browser, is for interacting with browser
  2. by, is for finding the element by css or any other function
  3. element, is for converting the selected element

Here in this line, element(by.css(‘app-root h1’)).getText(), like you have already guessed, we are just finding an element with the selector ‘app-root h1’ app.e2e-spec.ts is the tests holder. We will be writing all of our tests here.

  1. import {  
  2.     AppPage  
  3. } from './app.po';  
  4. describe('my-angular5-app App', () => {  
  5.     let page: AppPage;  
  6.     beforeEach(() => {  
  7.         page = new AppPage();  
  8.     });  
  9.     it('should display welcome message', () => {  
  10.         page.navigateTo();  
  11.         expect(page.getParagraphText()).toEqual('Welcome to ng5!');  
  12.     });  
  13. });  

The first thing we do is import the page, in this case, AppPage. This will be very easy for you if you have already written any unit test cases using jasmine.

Once we import the page, we are declaring an object and initializing the same with the AppPage instance in beforeEach function, so that the code can be executed before each test runs.

And in our first test, we are just confirming that the title is ‘Welcome to app’ by getting the value from our page object by calling page.getParagraphText().

Creating Login Component

As you all know, a component will have two files by default.

  • login.component.html
  • login.component.ts

login.component.html

Let’s write some HTML code for our component.

  1. <divclass="container" style="margin-top:100px;">  
  2.     <divclass="row justify-content-center align-items-center">  
  3.         <divclass="col-lg-4 col-sm-4 center-block ">  
  4.             <mat-card>  
  5.                 <mat-card-header>  
  6.                     <imgmat-card-avatar src="../../../assets/images/App-login-manager-icon.png">  
  7.                         <mat-card-title>Login here</mat-card-title>  
  8.                         <mat-card-subtitle>Trust us for your data, and sign up</mat-card-subtitle>  
  9.                 </mat-card-header>  
  10.                 <mat-card-content>  
  11.                     <divclass="signup-fields">  
  12.                         <formid="loginForm" [formGroup]="form" (ngSubmit)="login()">  
  13.                             <divclass="form-group">  
  14.                                 <inputname="email" class="form-control" matInput type="email" placeholder="Email" formControlName="email" />  
  15.                                 </div>  
  16.                                 <divclass="form-group">  
  17.                                     <inputname="password" class="form-control" matInput type="password" placeholder="Password" formControlName="password" />  
  18.                                     </div>  
  19.                                     <div>  
  20.                                         <buttonid="btnSubmit" mat-raised-button type="submit" color="primary">Login</button> </div>  
  21.                               </form>  
  22.                       </div>  
  23.                 </mat-card-content>  
  24.             </mat-card>  
  25.          </div>  
  26.     </div>  
  27. </div>  

login.component.ts

  1. import {  
  2.     Component,  
  3.     OnInit  
  4. } from '@angular/core';  
  5. import {  
  6.     FormBuilder,  
  7.     Validators  
  8. } from '@angular/forms';  
  9. import {  
  10.     Router  
  11. } from '@angular/router';  
  12. import {  
  13.     AuthService  
  14. } from '../auth.service';  
  15. @Component({  
  16.     selector: 'app-login',  
  17.     templateUrl: './login.component.html',  
  18.     styleUrls: ['./login.component.css']  
  19. })  
  20. exportclassLoginComponent implements OnInit {  
  21.     form;  
  22.     constructor(privatefb: FormBuilder, privatemyRoute: Router, privateauth: AuthService) {  
  23.         this.form = fb.group({  
  24.             email: ['', [Validators.required, Validators.email]],  
  25.             password: ['', Validators.required]  
  26.         });  
  27.     }  
  28.     ngOnInit() {}  
  29.     login() {  
  30.         if (this.form.valid) {  
  31.             this.auth.sendToken(this.form.value.email)  
  32.             this.myRoute.navigate(["home"]);  
  33.         }  
  34.     }  
  35. }  
If you run the application, you can see that we are accepting the form only if we give relevant values to the fields; if not given, the form will be invalid. In our next step, we will write end to end test for this functionality. Sounds good?

Write end to end tests for Login component

To get started, let us create two files as below.

  1. login.po.ts
  2. login.e2e-spec.ts

Now, let us define our page and some functions in login.po.ts.

Set up login.po.ts

Open the file and write some code as preceding.

  1. import {  
  2.     browser,  
  3.     by,  
  4.     element  
  5. } from 'protractor';  
  6. exportclass LoginPage {  
  7.     navigateTo() {  
  8.         returnbrowser.get('/login');  
  9.     }  
  10. }  

Now, we will write the codes to find the email and password text boxes.

  1. getEmailTextbox() {  
  2.     returnelement(by.name('email'));  
  3. }  
  4. getPasswordTextbox() {  
  5.     returnelement(by.name('password'));  
  6. }  

Set up login.e2e-spec.ts

It is time to set up our spec file before we start writing the tests.

  1. import {  
  2.     LoginPage  
  3. } from './login.po';  
  4. describe('Login tests', () => {  
  5.    let page: LoginPage;  
  6.     beforeEach(() => {  
  7.         page = new LoginPage();  
  8.         page.navigateTo();  
  9.     });  
  10. });  

We have imported our LoginPage and initialized the same. It is time to write the tests now.

  1. it('Login form should be valid', () => {  
  2.     page.getEmailTextbox().sendKeys('[email protected]');  
  3.     page.getPasswordTextbox().sendKeys('1234');  
  4.     let form = page.getForm().getAttribute('class');  
  5.     expect(form).toContain('ng-valid');  
  6. });  

Here, what we are doing is, setting the values to our text boxes by using sendKeys function and then find the class attribute of our form, so that we can check whether it is valid or not. If the form is valid, the form will be having the class as ng-valid, if not, it will have ng-invalid class.

Run end to end test

Running end to end tests is as easy as falling off a log. As we are using Angular CLI, all we have to do is run the command ng e2e. This will be set in our package.json file.

  1. "scripts": {  
  2.     "ng""ng",  
  3.     "start""ng serve",  
  4.     "build""ng build",  
  5.     "test""ng test",  
  6.     "lint""ng lint",  
  7.     "e2e""ng e2e"  
  8. }  

let us run ng e2e now.

PS F:\My Projects\ng5> ng e2e

If everything goes well, your application should open in a browser and test the functionality. You will also get a message saying “Chrome is being controlled by automated test software”.

ng e2e browser output

And in your terminal console, you should see an output saying all of your tests are passed.

Automated test output

Writing a few more tests

Let us write a few more tests to check some other functionalities.

Check form is invalid

To check if the form is invalid or not, we need to pass some invalid data to the form. The final test should be as follows.

  1. it('Login form should be invalid', () => {  
  2.     getEmailTextbox().sendKeys('');  
  3.     getPasswordTextbox().sendKeys('');  
  4.     let form = page.getForm().getAttribute('class');  
  5.     expect(form).toContain('ng-invalid');  
  6. });  

Check whether the value is been saved to local storage

You might have already looked at the functionality we are doing when we click the login button in our application. For now, we are just saving the email value to the local storage. Below is the function which gets called when we click the login button.

  1. login() {  
  2.     if (this.form.valid) {  
  3.         this.auth.sendToken(this.form.value.email)  
  4.         this.myRoute.navigate(["home"]);  
  5.     }  
  6. }  

And this is the sendToken method in out AuthService.

  1. sendToken(token:string) {  
  2.    localStorage.setItem("LoggedInUser",token)  
  3. }  

Now, we are going to write automated test for this functionality. First, let us add a function which returns submit button in login.po.ts.

  1. getSubmitButton(){  
  2.    return element(css('#btnSubmit'));  
  3. }  

Now, write the test as preceding.

  1. it('Should set email value to local storage', () => {  
  2.     page.getEmailTextbox().sendKeys('[email protected]');  
  3.     page.getPasswordTextbox().sendKeys('1234');  
  4.     page.getSubmitButton().click();  
  5.     let valLocalStorage = browser.executeScript("return window.localStorage.getItem('LoggedInUser');");  
  6.     expect(valLocalStorage).toEqual('[email protected]');  
  7. });  

As you can see that, we are actually setting some valid data to the form and triggering the click event of our button, and the value of the email text box is being saved to the localStorage. In our test, we are checking the value of the localStorage by executing the script browser.executeScript(“return window.localStorage.getItem(‘LoggedInUser’);”). We should get an output as below if everything is fine.

Angular
locaStorage in Protractor

Conclusion

Thanks a lot for reading. I will come back with another post on the same topic very soon. Did I miss anything that you may think is needed? Did you find this post useful? I hope you liked this article. Please share with me your valuable suggestions and feedback.

Your turn. What do you think?

A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.


Similar Articles