Skip to main content

Angular Testing Questions and Answers | 9, 8, 7, 6

What Is Testing?
The testing is a tools and techniques for a unit and integration testing Angular applications.

Why Test?
Tests are the best ways to prevent software bugs and defects.

How to Setup Test in Angular Project?
Angular CLI install everything you need to test an Angular application.
This CLI command takes care of Jasmine and karma configuration for you.

Run this CLI command-
ng test
The test file extension must be “.spec.ts” so that tooling can identify the test file.
You can also unit test your app using other testing libraries and test runners.

Types of Test
The all great developer knows his/her testing tools use. Understanding your tools for testing is essential before diving into writing tests.
The Testing depends on your project requirements and the project cost. The types of Testing looks like -
1.      Unit Test
2.      Integration Test
3.      End to End (e2e) Test

What is Unit Test in Angular?
The Unit Test is used to testing a single function, single components in Isolation. This is very fast.
The Unit Test is sometimes also called isolated testing

In this Test, we are not able to say that everything is all right in the application. Just for a single Unit or function assure that working fine.

What Is Integration Testing in Angular?
The Integration Testing is used to testing a component with templates and this testing containing more time as per comparison Unit Test.

What is End-to-End (e2e) Testing in Angular?
The End to End Testing is used to testing the entire application looks like -
1.         All User Interactions
2.         All Service Calls
3.         Authentication/Authorization of app
4.         Everything of App

This is the actual testing of your append it is fast action.
Unit testing and Integrations testing will do as fake calls but e2e testing is done with your actual Services and APIs calls.

Recommended Unit Testing Tools –
1.         Karma
2.         Jasmine and
3.         QUnit

Do I Need to Use Protractor?
A protractor is an official library to use for writing End-to-End (e2e) test suites with an Angular app. It is nothing but a wrapper over the Selenium WebDriverJS APIs.

If you have been using Angular CLI, you might know that by default, it comes shipped with two frameworks for testing. They are:
1.      unit tests using Jasmine and Karma
2.      end-to-end tests using Protractor

The apparent difference between the two is that the former is used to test the logic of the components and services, while the latter is used to ensure that the high-level functionality of the application works as expected.

Protractor configuration file is - protractor.conf.js and it look like this.
//Protractor configuration file
const { SpecReporter } = require('jasmine-spec-reporter');

exports.config = {
  allScriptsTimeout: 11000,
  specs: [
    './e2e/**/*.e2e-spec.ts'
  ],
  capabilities: {
    'browserName': 'chrome'
  },
  directConnect: true,
  baseUrl: 'http://localhost:4200/',
  framework: 'jasmine',
  jasmineNodeOpts: {
    showColors: true,
    defaultTimeoutInterval: 30000,
    print: function() {}
  },
  onPrepare() {
    require('ts-node').register({
      project: 'e2e/tsconfig.e2e.json'
    });
    jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
  }
};

What Is Test Function?
After installing everything as per your project requirements, CREATE your project.
The following Steps –
·             ng new YourTestProject
·             ng install
·             ng serve/ng test

Note – If you are going to development then type “ng server” command and if you want to test your project, you should type “ng test” command.  After type “ng test” command and press enter. It’s taking some time to installing everything in your project for a test.

Test functions–
1.         describe – Test suit (just a function)
2.         it  - The spec or test
3.         expect -  Expected outcome.

Triple Rule of Testing –
1.         Arrange - Create and Initialize the Components
2.         Act - Invoke the Methods/Functions of Components
3.         Assert - Assert the expected outcome/behavior

Best Practices - The quick list of best practices.
1.         Use beforeEach() to Initialize the context for your tests.
2.         Make sure the string descriptions you put in describe () and it () make sense as output
3.         Use after () and afterEach () to clean-up your tests if there is any state that may bleed over.
4.         If any one test is over 15 lines of code, you may need to refactor the test

Example -
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';

//describe – Test suit (just a function)
describe('AppComponent', () => {
  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [AppComponent]
    }).compileComponents();
  }));

  //it - The spec or test
  it('should have hello property', function() {
  const fixture = TestBed.createComponent(AppComponent);
  const app = fixture.debugElement.componentInstance;

  //expect – this is expected outcome.
   expect(app.hello).toBe('Hello, Anil!');
 });
});

What is the Jasmine test framework?
Why Jasmine?
Jasmine is a JavaScript testing framework that supports a software development practice called Behaviour Driven Development that plays very well with Karma.

It’s a specific flavor of Test Driven Development (TDD).

Jasmine is also dependency-free and doesn’t require a DOM.

Jasmine provides a rich set of pre-defined matchers - default set of matchers
1.      expect(number).toBeGreaterThan(number);
2.      expect(number).toBeLessThan(number);
3.      expect(array).toContain(member);
4.      expect(array).toBeArray();
5.      expect(fn).toThrow(string);
6.      expect(fn).toThrowError(string);
7.      expect(instance).toBe(instance); represents the exact equality (===) operator.
8.      expect(mixed).toBeDefined();
9.      expect(mixed).toBeFalsy();
10.  expect(mixed).toBeNull();
11.  expect(mixed).toBeTruthy();
12.  expect(mixed).toBeUndefined();
13.   expect(mixed).toEqual(mixed);   represents the regular equality (==) operator.
14.  expect(mixed).toMatch(pattern);  calls the RegExp match() method behind the scenes to compare string data.
15.  expect(number).toBeCloseTo(number, decimalPlaces);
16.  expect(number).toBeNaN();
17.  expect(spy).toHaveBeenCalled();
18.  expect(spy).toHaveBeenCalledTimes(number);
19.  expect(date).toBeAfter(otherDate);
20.  expect(date).toBeBefore(otherDate);
21.  expect(date).toBeDate();
22.  expect(date).toBeValidDate();
23.  expect(object).toHaveDate(memberName);
24.  expect(object).toHaveDateAfter(memberName, date);
25.  expect(object).toHaveDateBefore(memberName, date);
26.  expect(regexp).toBeRegExp();
27.  expect(string).toBeEmptyString();
28.  expect(string).toBeHtmlString();
29.  expect(string).toBeIso8601();
30.  expect(string).toBeJsonString();
31.  expect(string).toBeLongerThan();
32.  expect(string).toBeString();

Default set of Asymmetric Matchers-
1.      jasmine.any(Constructor);
2.      jasmine.anything(mixed);
3.      jasmine.arrayContaining(mixed);
4.      jasmine.objectContaining(mixed);
5.      jasmine.stringMatching(pattern);

Lest see the testing example for AppComponent and it look like this.
import { TestBedasync } from '@angular/core/testing';
import { AppComponent } from './app.component';

describe('AppComponent', () => {
  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [
        AppComponent
      ],
    }).compileComponents();
  }));

  it('should create the app'async(() => {
    const fixture = TestBed.createComponent(AppComponent);
    const app = fixture.debugElement.componentInstance;
   
    expect(app).toBeTruthy();
  }));

  it(`should have as title 'app'`async(() => {
    const fixture = TestBed.createComponent(AppComponent);
    const app = fixture.debugElement.componentInstance;

    expect(app.title).toEqual('app');
  }));

  it('should render title in a h1 tag'async(() => {
    const fixture = TestBed.createComponent(AppComponent);
    fixture.detectChanges();
    const compiled = fixture.debugElement.nativeElement;

    expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!');
  }));
});

What Is TestBed?
The Angular TestBed (ATB) is a higher level Angular testing framework that allows you to easily test behavior that depends on the Angular Framework.

The TestBed creates a dynamically and The TestBed.configureTestingModule() method takes a metadata object.

We still write our tests in Jasmine and run using Karma but we now have a slightly easier way to create components, handle injection, test asynchronous behaviour and interact with our application.
See the above example.

Lest of some objective questions -
Which of the following can be used to run unit tests?
1.      Karma
2.      Protractor
The correct answer is - Karma!

Which of the following can be used to run end-to-end tests?
1.      Karma
2.      Protractor
The correct answer is - Protractor!

Test doubles are needed when writing which of the following?
1.      Unit tests
2.      End-to-end tests
The correct answer is - Unit tests!

Which of the following will need Angular testing utilities for unit testing?
1.      Services
2.      Components
3.      All the above
The correct answer is - Components!

It is recommended to write isolated unit tests for which of the following?
1.      Services
2.      Pipes
3.      All the above
The correct answer is - All the above!

Which of the following TestBed method is used to create an Angular component under test?
1.      createComponent
2.      createTestingComponent
3.      configureComponent
4.      configureTestingComponent
The correct answer is - createComponent!
By Anil Singh | Rating of this article (*****)

Popular posts from this blog

List of Countries, Nationalities and their Code In Excel File

Download JSON file for this List - Click on JSON file    Countries List, Nationalities and Code Excel ID Country Country Code Nationality Person 1 UNITED KINGDOM GB British a Briton 2 ARGENTINA AR Argentinian an Argentinian 3 AUSTRALIA AU Australian an Australian 4 BAHAMAS BS Bahamian a Bahamian 5 BELGIUM BE Belgian a Belgian 6 BRAZIL BR Brazilian a Brazilian 7 CANADA CA Canadian a Canadian 8 CHINA CN Chinese a Chinese 9 COLOMBIA CO Colombian a Colombian 10 CUBA CU Cuban a Cuban 11 DOMINICAN REPUBLIC DO Dominican a Dominican 12 ECUADOR EC Ecuadorean an Ecuadorean 13 EL SALVA...

nullinjectorerror no provider for httpclient angular 17

In Angular 17 where the standalone true option is set by default, the app.config.ts file is generated in src/app/ and provideHttpClient(). We can be added to the list of providers in app.config.ts Step 1:   To provide HttpClient in a standalone app we could do this in the app.config.ts file, app.config.ts: import { ApplicationConfig } from '@angular/core'; import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; import { provideClientHydration } from '@angular/platform-browser'; //This (provideHttpClient) will help us to resolve the issue  import {provideHttpClient} from '@angular/common/http'; export const appConfig: ApplicationConfig = {   providers: [ provideRouter(routes),  provideClientHydration(), provideHttpClient ()      ] }; The appConfig const is used in the main.ts file, see the code, main.ts : import { bootstrapApplication } from '@angular/platform-browser'; import { appConfig } from ...

React Lifecycle Components | Mounting, Updating, Unmounting

In React, each component has a life-cycle which manipulate during its three main phases. The following three phases are: 1.       Mounting 2.       Updating 3.       Unmounting React does so by “ Mounting ” (adding nodes to the DOM), “ Unmounting ” (removing them from the DOM), and “ Updating ” (making changes to nodes already in the DOM). Mounting - Lifecycle Phase 1 Mounting is used for adding nodes (elements) to the DOM. The React has four built-in methods that gets called, in this order, when mounting a component - 1.       constructor() 2.       getDerivedStateFromProps() 3.       render() 4.       componentDidMount() Note – 1)       The render() method is required and It always be called and the others methods are optional (you will call...

51 Best React Interview Questions and Answers

1) What Is React? React is a fast, open-source, and front-end JavaScript library and It was developed by Facebook in 2011 for building complex, stateful and interactive UI in web as well as mobile Applications. React follows the component based approach which helps you to building reusable and interactive web and mobile user interface (UI) components. React has one of the largest communities supporting it. The high level component Lifecycle - At the highest level component Lifecycle, React components have lifecycle events that are - 1.       Initialization 2.       State/Property Updates 3.       Destruction Explore to detail understanding   -  React Lifecycle Components Reactjs is very fast technology that can be trusted for complex tasks and can simply be trusted for quality outcomes. 2) When Reactjs released? March 2013 3) What Is the current stable version of ...

39 Best Yii2 Interview Questions and Answers - PHP Frameworks

1: What Is Yii framework? 2: Why Yii Is So Fast? 3: Yii Versions? 4: What Are the Prerequisites Yii? 5: Why Use Yii 2.0 Framework? 6: What Are the Benefits of Yii over other Frameworks? 7: What's New in Yii Release 2.0? 8: What Is The First File That Gets Loaded When You Run A Application Using Yii? 9: What Is The First Function That Gets Loaded From A Controller? 10: What Are the core components of Yii2 framework? 11: What Are the great feature of Yii Framework? 12: What Are The Application Structure of Yii 2.0 Framework? 13: What Are the Naming Convention in Yii 2.0 Framework? 14: What Is Request Life-Cycle of Yii 2.0 framework? 15: What Are Yii helpers? 16: What Are the Core Helper Classes in Yii Framework? 17: What Are The Server Requirements to Install Yii 2.0 Framework? 18: How To Customizing Helper Classes in Yii Framework? 19: What Are The Directory Structure of Yii 2.0 Framework? 20: How To Create Directory Structure of Yii Framewor...