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


TypeScript NsisUpdater.checkForUpdates方法代碼示例

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


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

示例1: test

test("cancel download with progress", async () => {
  const updater = new NsisUpdater()
  updater.updateConfigPath = await writeUpdateConfig({
    provider: "generic",
    url: "https://develar.s3.amazonaws.com/full-test",
  })
  tuneNsisUpdater(updater)

  const progressEvents: Array<any> = []
  updater.signals.progress(it => progressEvents.push(it))

  let cancelled = false
  updater.signals.updateCancelled(() => cancelled = true)

  const checkResult = await updater.checkForUpdates()
  checkResult.cancellationToken.cancel()

  if (progressEvents.length > 0) {
    const lastEvent = progressEvents[progressEvents.length - 1]
    expect(lastEvent.percent).not.toBe(100)
    expect(lastEvent.bytesPerSecond).toBeGreaterThan(1)
    expect(lastEvent.transferred).not.toBe(lastEvent.total)
  }

  const downloadPromise = checkResult.downloadPromise as BluebirdPromise<any>
  await assertThat(downloadPromise).throws()
  expect(downloadPromise.isRejected()).toBe(true)
  expect(cancelled).toBe(true)
})
開發者ID:yuya-oc,項目名稱:electron-builder,代碼行數:29,代碼來源:nsisUpdaterTest.ts

示例2: test

test("check updates - no versions at all", async () => {
  const updater = new NsisUpdater()
  tuneNsisUpdater(updater)
  // tslint:disable-next-line:no-object-literal-type-assertion
  updater.setFeedURL({
    provider: "bintray",
    owner: "actperepo",
    package: "no-versions",
  } as BintrayOptions)

  await assertThat(updater.checkForUpdates()).throws()
})
開發者ID:jwheare,項目名稱:electron-builder,代碼行數:12,代碼來源:nsisUpdaterTest.ts

示例3: async

test.ifAll.ifWindows("invalid signature", async () => {
  const updater = new NsisUpdater()
  updater.updateConfigPath = await writeUpdateConfig({
    provider: "github",
    owner: "develar",
    repo: "__test_nsis_release",
    publisherName: ["Foo Bar"],
  })
  tuneNsisUpdater(updater)
  const actualEvents = trackEvents(updater)
  await assertThat(updater.checkForUpdates().then(it => it.downloadPromise)).throws()
  expect(actualEvents).toMatchSnapshot()
})
開發者ID:yuya-oc,項目名稱:electron-builder,代碼行數:13,代碼來源:nsisUpdaterTest.ts

示例4: checkResult

async function checkResult(updater: NsisUpdater) {
  const updateCheckResult = await updater.checkForUpdates()
  const downloadPromise = updateCheckResult.downloadPromise
  expect(downloadPromise).not.toBeNull()
  const files = await downloadPromise
  const fileInfo: any = updateCheckResult.updateInfo.files[0]

  // because port is random
  expect(fileInfo.url).toBeDefined()
  delete fileInfo.url
  expect(removeUnstableProperties(updateCheckResult.updateInfo)).toMatchSnapshot()
  expect(files!!.map(it => path.basename(it))).toMatchSnapshot()
}
開發者ID:ledinhphuong,項目名稱:electron-builder,代碼行數:13,代碼來源:differentialUpdateTest.ts

示例5: validateDownload

async function validateDownload(updater: NsisUpdater, expectDownloadPromise = true) {
  tuneNsisUpdater(updater)
  const actualEvents = trackEvents(updater)

  const updateCheckResult = await updater.checkForUpdates()
  expect(updateCheckResult.fileInfo).toMatchSnapshot()
  if (expectDownloadPromise) {
    await assertThat(path.join(await updateCheckResult.downloadPromise)).isFile()
  }
  else {
    expect(updateCheckResult.downloadPromise).toBeUndefined()
  }

  expect(actualEvents).toMatchSnapshot()
  return updateCheckResult
}
開發者ID:yuya-oc,項目名稱:electron-builder,代碼行數:16,代碼來源:nsisUpdaterTest.ts


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