第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

javascript下載功能的單元測(cè)試

javascript下載功能的單元測(cè)試

大話西游666 2021-11-25 15:27:45
我需要為以下功能編寫(xiě)單元測(cè)試。目前只是檢查appendChild/removeChild被調(diào)用了多少次,但我認(rèn)為這不是測(cè)試這個(gè)的最好方法。除此之外 - 不知道單元測(cè)試應(yīng)該是什么樣子,因?yàn)槲沂菧y(cè)試新手。感謝您對(duì)此的任何幫助!export default function download(blobUrl, fileName) {  const link = document.createElement('a');  link.setAttribute('href', blobUrl);  link.setAttribute('download', `${fileName}.pdf`);  link.style.display = 'none';  document.body.appendChild(link);  link.click();  document.body.removeChild(link);}
查看完整描述

1 回答

?
楊魅力

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超6個(gè)贊

這是我的解決方案:


index.ts:


export default function download(blobUrl, fileName) {

  const link = document.createElement('a');

  link.setAttribute('href', blobUrl);

  link.setAttribute('download', `${fileName}.pdf`);

  link.style.display = 'none';


  document.body.appendChild(link);


  link.click();


  document.body.removeChild(link);

}

index.spec.ts:


import download from './';


describe('download', () => {

  test('should download correctly', () => {

    const mLink = { href: '', click: jest.fn(), download: '', style: { display: '' }, setAttribute: jest.fn() } as any;

    const createElementSpy = jest.spyOn(document, 'createElement').mockReturnValueOnce(mLink);

    document.body.appendChild = jest.fn();

    document.body.removeChild = jest.fn();

    download('blobUrl', 'go');

    expect(createElementSpy).toBeCalledWith('a');

    expect(mLink.setAttribute.mock.calls.length).toBe(2);

    expect(mLink.setAttribute.mock.calls[0]).toEqual(['href', 'blobUrl']);

    expect(mLink.setAttribute.mock.calls[1]).toEqual(['download', 'go.pdf']);

    expect(mLink.style.display).toBe('none');

    expect(document.body.appendChild).toBeCalledWith(mLink);

    expect(mLink.click).toBeCalled();

    expect(document.body.removeChild).toBeCalledWith(mLink);

  });

});

100% 覆蓋率的單元測(cè)試結(jié)果:


 PASS  src/stackoverflow/58445250/index.spec.ts

  download

    ? should download correctly (8ms)


----------|----------|----------|----------|----------|-------------------|

File      |  % Stmts | % Branch |  % Funcs |  % Lines | Uncovered Line #s |

----------|----------|----------|----------|----------|-------------------|

All files |      100 |      100 |      100 |      100 |                   |

 index.ts |      100 |      100 |      100 |      100 |                   |

----------|----------|----------|----------|----------|-------------------|

Test Suites: 1 passed, 1 total

Tests:       1 passed, 1 total

Snapshots:   0 total

Time:        4.571s, estimated 8s

源代碼:https : //github.com/mrdulin/jest-codelab/tree/master/src/stackoverflow/58445250


查看完整回答
反對(duì) 回復(fù) 2021-11-25
  • 1 回答
  • 0 關(guān)注
  • 223 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)