當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript SinonStub.getCall方法代碼示例

本文整理匯總了TypeScript中Sinon.SinonStub.getCall方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript SinonStub.getCall方法的具體用法?TypeScript SinonStub.getCall怎麽用?TypeScript SinonStub.getCall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Sinon.SinonStub的用法示例。


在下文中一共展示了SinonStub.getCall方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: expect

 broadcasts.forEach((broadcast, index) => {
   expect(broadcastStub.getCall(index).args.length).to.be.equal(2);
   expect(broadcastStub.getCall(index).args[0]).to.be.deep.equal({
     name: broadcast.params.name,
   });
   expect(broadcastStub.getCall(index).args[1]).to.be.equal(broadcast.options);
 });
開發者ID:RiseVision,項目名稱:rise-node,代碼行數:7,代碼來源:broadcaster.spec.ts

示例2: inspectPushRecordCreationRequest

async function inspectPushRecordCreationRequest(t: TestContext, requestStub: SinonStub) {
  // For player#create device record is already serialized. Checking serialized structure.
  const anyValues = [
    "device_type",
    "language",
    "timezone",
    "device_os",
    "sdk",
    "delivery_platform",
    "browser_name",
    "browser_version",
    "operating_system",
    "operating_system_version",
    "device_platform",
    "device_model",
    "identifier",
    "notification_types"
  ];
  t.is(requestStub.callCount, 1);
  t.not(requestStub.getCall(0), null);
  const data: any = requestStub.getCall(0).args[1];
  anyValues.forEach((valueKey) => {
    t.not(data[valueKey], undefined, `player create: ${valueKey} is undefined! => data: ${JSON.stringify(data)}`);
  });
}
開發者ID:OneSignal,項目名稱:OneSignal-Website-SDK,代碼行數:25,代碼來源:onSession.ts

示例3: expect

 .then(() => {
   expect(fetch).to.have.callCount(1);
   const [request] = fetch.getCall(0).args;
   expect(request.headers.has('content-type')).to.equal(true);
   expect(request.headers.get('content-type')).to.match(/application\/json/);
   done();
 }).catch(() => { done('Unexpected catch'); });
開發者ID:aurelia,項目名稱:aurelia,代碼行數:7,代碼來源:http-client.spec.ts

示例4: expect

      .then((digestValue) => {
        let call: SinonSpyCall = postStup.getCall(0);
        let url: string = call.args[0];

        expect(url).to.equal(digestUrl);
        expect(postStup.called).is.true;
        expect(digestValue).to.equal(digest);
        done();
      })
開發者ID:s-KaiNet,項目名稱:sp-request,代碼行數:9,代碼來源:SPRequest.spec.ts

示例5: it

 it('should successfully restore values and pass them to publisher', () => {
   expect(makeStub.callCount).to.equal(0);
   expect(publisherSpy.callCount).to.equal(2, 'should call once for each platform (make run)');
   const darwinIndex = publisherSpy.firstCall.args[0].makeResults[0].artifacts.some((a: string) => a.indexOf('darwin') !== -1) ? 0 : 1;
   const win32Index = darwinIndex === 0 ? 1 : 0;
   const darwinArgs = publisherSpy.getCall(darwinIndex).args[0];
   const darwinArtifacts = [];
   for (const result of darwinArgs.makeResults) {
     darwinArtifacts.push(...result.artifacts);
   }
   expect(darwinArtifacts.sort()).to.deep.equal(
     fakeMake('darwin').reduce((accum, val) => accum.concat(val.artifacts), [] as string[]).sort(),
   );
   const win32Args = publisherSpy.getCall(win32Index).args[0];
   const win32Artifacts = [];
   for (const result of win32Args.makeResults) {
     win32Artifacts.push(...result.artifacts);
   }
   expect(win32Artifacts.sort()).to.deep.equal(
     fakeMake('win32').reduce((accum, val) => accum.concat(val.artifacts), [] as string[]).sort(),
   );
 });
開發者ID:balloonzzq,項目名稱:electron-forge,代碼行數:22,代碼來源:publish_spec.ts

示例6: inspectOnSessionRequest

async function inspectOnSessionRequest(t: TestContext, requestStub: SinonStub) {
  // Device record is serialized inside of `updateUserSession`. Checking original DeviceRecord properties.
  const anyValues = [
    "deliveryPlatform",
    "language",
    "timezone",
    "browserVersion",
    "sdkVersion",
    "browserName",
    "subscriptionState",
    "operatingSystem",
    "operatingSystemVersion",
    "devicePlatform",
    "deviceModel",
  ];
  t.is(requestStub.callCount, 1);
  t.not(requestStub.getCall(0), null);
  const data: any = requestStub.getCall(0).args[1];
  anyValues.forEach((valueKey) => {
    t.not(data[valueKey], undefined, `on_session: ${valueKey} is undefined! => data: ${JSON.stringify(data)}`);
  });
}
開發者ID:OneSignal,項目名稱:OneSignal-Website-SDK,代碼行數:22,代碼來源:onSession.ts


注:本文中的Sinon.SinonStub.getCall方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。