How to write the unit testing for the file upload method in the Angular 7 (or 2+)Huge number of files generated for every Angular projectConfigure Unit Testing using Karma and Jasmine and code coverage using istanbul for an angular 2 appAngular2 NgModel not getting value in Jasmine testAngular testing with keycloack “user is not logged in”How to test the set method of @Input in an Angular directivesAngular unit test EventEmitter that is inside an ObservableAngular-Testing: Angular5 spyOn not working in child componentsUnit test Angular serviceIs it possible to use an existing build for Karma testing in AngularHow can I exclude all *services.ts for `ng test --code-coverage`?

Inscriptio Labyrinthica

When we are talking about black hole evaporation - what exactly happens?

Should I work for free if client's requirement changed

You have no, but can try for yes

Improving an O(N^2) function (all entities iterating over all other entities)

Will copper pour help on my single-layer PCB?

Three Subway Escalators

Extract the attribute names from a large number of Shapefiles

How to not confuse readers with simultaneous events?

Do higher dimensions have axes?

Is encryption still applied if you ignore the SSL certificate warning for self-signed certs?

Why did my "seldom" get corrected?

Was demon possession only a New Testament phenomenon?

Making a Dataset that emulates `ls -tlra`?

Why would word of Princess Leia's capture generate sympathy for the Rebellion in the Senate?

Why are flying carpets banned while flying brooms are not?

How to get a type of "screech" on guitar

Simplest instruction set that has an c++/C compiler to write an emulator for?

Did Hitler say this quote about homeschooling?

To what extent does asymmetric cryptography secure bitcoin transactions?

What is this green alien supposed to be on the American covers of the "Hitchhiker's Guide to the Galaxy"?

How electronics on board of JWST can survive the low operating temperature while it's difficult to survive lunar night?

Is it possible to target 2 allies with the Warding Bond spell using the Sorcerer's Twinned Spell metamagic option?

Why do space operations use "nominal" to mean "working correctly"?



How to write the unit testing for the file upload method in the Angular 7 (or 2+)


Huge number of files generated for every Angular projectConfigure Unit Testing using Karma and Jasmine and code coverage using istanbul for an angular 2 appAngular2 NgModel not getting value in Jasmine testAngular testing with keycloack “user is not logged in”How to test the set method of @Input in an Angular directivesAngular unit test EventEmitter that is inside an ObservableAngular-Testing: Angular5 spyOn not working in child componentsUnit test Angular serviceIs it possible to use an existing build for Karma testing in AngularHow can I exclude all *services.ts for `ng test --code-coverage`?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to write the unit testing for the file upload method in the angular 7. Getting the below error in the testing window. I'm new for angular unit testing. Could someone help, How to add mock files to get the full code coverage?




TypeError: Cannot set property 'value' of undefined




Here is my unit test code (spec file),



describe('ImportComponent', () => 
let component: ImportComponent;
let fixture: ComponentFixture<ImportComponent>;
let element;

beforeEach(
async(() =>
TestBed.configureTestingModule(
imports: [ HttpClientModule, RouterTestingModule ],
declarations: [ ImportComponent ]
).compileComponents();
)
);

beforeEach(() =>
fixture = TestBed.createComponent(ImportComponent);
component = fixture.componentInstance;
element = fixture.nativeElement;
fixture.detectChanges();
);

it('should create', () =>
expect(component).toBeTruthy();
);

it('should upload the file', () =>
component.importFile();
const inputEl = element.querySelector('#postal_file');
const fileList = 0: name: 'foo', size: 500001 ;
inputEl.value =
target:
files: fileList

;
inputEl.dispatchEvent(new Event('change'));
);
);


Method in the component



importFile() 
const inputEl: HTMLInputElement = this.el.nativeElement.querySelector('#postal_file');
const fileCount: number = inputEl.files.length;
const formData = new FormData();
if (fileCount > 0)
formData.append(this.postalFileName, inputEl.files.item(0));
this.postalService.importPostalCodes(formData).subscribe((data) =>
this.result = data;
);




and the HTML,



<div class="file-import">
<form action="" method="post" encType="multipart/form-data">
<label for="postal_file">Choose File</label>
<input type="file" name="postal_file" id="postal_file">
<button type="button" (click)="importFile()">Import</button>
</form>
</div>


The unit test is not covered all the code as shown in the below image, please help , how to ge the 100% code coverage.



Code coverage image










share|improve this question






























    0















    I'm trying to write the unit testing for the file upload method in the angular 7. Getting the below error in the testing window. I'm new for angular unit testing. Could someone help, How to add mock files to get the full code coverage?




    TypeError: Cannot set property 'value' of undefined




    Here is my unit test code (spec file),



    describe('ImportComponent', () => 
    let component: ImportComponent;
    let fixture: ComponentFixture<ImportComponent>;
    let element;

    beforeEach(
    async(() =>
    TestBed.configureTestingModule(
    imports: [ HttpClientModule, RouterTestingModule ],
    declarations: [ ImportComponent ]
    ).compileComponents();
    )
    );

    beforeEach(() =>
    fixture = TestBed.createComponent(ImportComponent);
    component = fixture.componentInstance;
    element = fixture.nativeElement;
    fixture.detectChanges();
    );

    it('should create', () =>
    expect(component).toBeTruthy();
    );

    it('should upload the file', () =>
    component.importFile();
    const inputEl = element.querySelector('#postal_file');
    const fileList = 0: name: 'foo', size: 500001 ;
    inputEl.value =
    target:
    files: fileList

    ;
    inputEl.dispatchEvent(new Event('change'));
    );
    );


    Method in the component



    importFile() 
    const inputEl: HTMLInputElement = this.el.nativeElement.querySelector('#postal_file');
    const fileCount: number = inputEl.files.length;
    const formData = new FormData();
    if (fileCount > 0)
    formData.append(this.postalFileName, inputEl.files.item(0));
    this.postalService.importPostalCodes(formData).subscribe((data) =>
    this.result = data;
    );




    and the HTML,



    <div class="file-import">
    <form action="" method="post" encType="multipart/form-data">
    <label for="postal_file">Choose File</label>
    <input type="file" name="postal_file" id="postal_file">
    <button type="button" (click)="importFile()">Import</button>
    </form>
    </div>


    The unit test is not covered all the code as shown in the below image, please help , how to ge the 100% code coverage.



    Code coverage image










    share|improve this question


























      0












      0








      0


      0






      I'm trying to write the unit testing for the file upload method in the angular 7. Getting the below error in the testing window. I'm new for angular unit testing. Could someone help, How to add mock files to get the full code coverage?




      TypeError: Cannot set property 'value' of undefined




      Here is my unit test code (spec file),



      describe('ImportComponent', () => 
      let component: ImportComponent;
      let fixture: ComponentFixture<ImportComponent>;
      let element;

      beforeEach(
      async(() =>
      TestBed.configureTestingModule(
      imports: [ HttpClientModule, RouterTestingModule ],
      declarations: [ ImportComponent ]
      ).compileComponents();
      )
      );

      beforeEach(() =>
      fixture = TestBed.createComponent(ImportComponent);
      component = fixture.componentInstance;
      element = fixture.nativeElement;
      fixture.detectChanges();
      );

      it('should create', () =>
      expect(component).toBeTruthy();
      );

      it('should upload the file', () =>
      component.importFile();
      const inputEl = element.querySelector('#postal_file');
      const fileList = 0: name: 'foo', size: 500001 ;
      inputEl.value =
      target:
      files: fileList

      ;
      inputEl.dispatchEvent(new Event('change'));
      );
      );


      Method in the component



      importFile() 
      const inputEl: HTMLInputElement = this.el.nativeElement.querySelector('#postal_file');
      const fileCount: number = inputEl.files.length;
      const formData = new FormData();
      if (fileCount > 0)
      formData.append(this.postalFileName, inputEl.files.item(0));
      this.postalService.importPostalCodes(formData).subscribe((data) =>
      this.result = data;
      );




      and the HTML,



      <div class="file-import">
      <form action="" method="post" encType="multipart/form-data">
      <label for="postal_file">Choose File</label>
      <input type="file" name="postal_file" id="postal_file">
      <button type="button" (click)="importFile()">Import</button>
      </form>
      </div>


      The unit test is not covered all the code as shown in the below image, please help , how to ge the 100% code coverage.



      Code coverage image










      share|improve this question
















      I'm trying to write the unit testing for the file upload method in the angular 7. Getting the below error in the testing window. I'm new for angular unit testing. Could someone help, How to add mock files to get the full code coverage?




      TypeError: Cannot set property 'value' of undefined




      Here is my unit test code (spec file),



      describe('ImportComponent', () => 
      let component: ImportComponent;
      let fixture: ComponentFixture<ImportComponent>;
      let element;

      beforeEach(
      async(() =>
      TestBed.configureTestingModule(
      imports: [ HttpClientModule, RouterTestingModule ],
      declarations: [ ImportComponent ]
      ).compileComponents();
      )
      );

      beforeEach(() =>
      fixture = TestBed.createComponent(ImportComponent);
      component = fixture.componentInstance;
      element = fixture.nativeElement;
      fixture.detectChanges();
      );

      it('should create', () =>
      expect(component).toBeTruthy();
      );

      it('should upload the file', () =>
      component.importFile();
      const inputEl = element.querySelector('#postal_file');
      const fileList = 0: name: 'foo', size: 500001 ;
      inputEl.value =
      target:
      files: fileList

      ;
      inputEl.dispatchEvent(new Event('change'));
      );
      );


      Method in the component



      importFile() 
      const inputEl: HTMLInputElement = this.el.nativeElement.querySelector('#postal_file');
      const fileCount: number = inputEl.files.length;
      const formData = new FormData();
      if (fileCount > 0)
      formData.append(this.postalFileName, inputEl.files.item(0));
      this.postalService.importPostalCodes(formData).subscribe((data) =>
      this.result = data;
      );




      and the HTML,



      <div class="file-import">
      <form action="" method="post" encType="multipart/form-data">
      <label for="postal_file">Choose File</label>
      <input type="file" name="postal_file" id="postal_file">
      <button type="button" (click)="importFile()">Import</button>
      </form>
      </div>


      The unit test is not covered all the code as shown in the below image, please help , how to ge the 100% code coverage.



      Code coverage image







      angular karma-jasmine angular-test angular-testing






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 6:39







      Helphin

















      asked Mar 26 at 11:31









      HelphinHelphin

      15 bronze badges




      15 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          For the 100% code coverage of the mentioned section, I have added below 2 test cases. This works for me.



          it('should upload the file - checkFileExist = true', () => 
          spyOn(component, 'checkFileExist').and.returnValue(true);
          spyOn(postalService,'importPostalCodes').and.callThrough();
          component.importFile();
          expect(postalService.importPostalCodes).toHaveBeenCalled();
          );

          it('should upload the file - checkFileExist = false', () =>
          spyOn(component, 'checkFileExist').and.returnValue(false);
          spyOn(postalService,'importPostalCodes').and.callThrough();
          component.importFile();
          expect(postalService.importPostalCodes).toHaveBeenCalledTimes(0);
          );





          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356093%2fhow-to-write-the-unit-testing-for-the-file-upload-method-in-the-angular-7-or-2%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            For the 100% code coverage of the mentioned section, I have added below 2 test cases. This works for me.



            it('should upload the file - checkFileExist = true', () => 
            spyOn(component, 'checkFileExist').and.returnValue(true);
            spyOn(postalService,'importPostalCodes').and.callThrough();
            component.importFile();
            expect(postalService.importPostalCodes).toHaveBeenCalled();
            );

            it('should upload the file - checkFileExist = false', () =>
            spyOn(component, 'checkFileExist').and.returnValue(false);
            spyOn(postalService,'importPostalCodes').and.callThrough();
            component.importFile();
            expect(postalService.importPostalCodes).toHaveBeenCalledTimes(0);
            );





            share|improve this answer



























              0














              For the 100% code coverage of the mentioned section, I have added below 2 test cases. This works for me.



              it('should upload the file - checkFileExist = true', () => 
              spyOn(component, 'checkFileExist').and.returnValue(true);
              spyOn(postalService,'importPostalCodes').and.callThrough();
              component.importFile();
              expect(postalService.importPostalCodes).toHaveBeenCalled();
              );

              it('should upload the file - checkFileExist = false', () =>
              spyOn(component, 'checkFileExist').and.returnValue(false);
              spyOn(postalService,'importPostalCodes').and.callThrough();
              component.importFile();
              expect(postalService.importPostalCodes).toHaveBeenCalledTimes(0);
              );





              share|improve this answer

























                0












                0








                0







                For the 100% code coverage of the mentioned section, I have added below 2 test cases. This works for me.



                it('should upload the file - checkFileExist = true', () => 
                spyOn(component, 'checkFileExist').and.returnValue(true);
                spyOn(postalService,'importPostalCodes').and.callThrough();
                component.importFile();
                expect(postalService.importPostalCodes).toHaveBeenCalled();
                );

                it('should upload the file - checkFileExist = false', () =>
                spyOn(component, 'checkFileExist').and.returnValue(false);
                spyOn(postalService,'importPostalCodes').and.callThrough();
                component.importFile();
                expect(postalService.importPostalCodes).toHaveBeenCalledTimes(0);
                );





                share|improve this answer













                For the 100% code coverage of the mentioned section, I have added below 2 test cases. This works for me.



                it('should upload the file - checkFileExist = true', () => 
                spyOn(component, 'checkFileExist').and.returnValue(true);
                spyOn(postalService,'importPostalCodes').and.callThrough();
                component.importFile();
                expect(postalService.importPostalCodes).toHaveBeenCalled();
                );

                it('should upload the file - checkFileExist = false', () =>
                spyOn(component, 'checkFileExist').and.returnValue(false);
                spyOn(postalService,'importPostalCodes').and.callThrough();
                component.importFile();
                expect(postalService.importPostalCodes).toHaveBeenCalledTimes(0);
                );






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 16 at 10:01









                HelphinHelphin

                15 bronze badges




                15 bronze badges


















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356093%2fhow-to-write-the-unit-testing-for-the-file-upload-method-in-the-angular-7-or-2%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript