aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils/miscs/miscs.ts
blob: 424b0db98efe7a5daf55ad401560f9ba5de7da8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import * as WebTorrent from 'webtorrent'
import { readFile, readdir } from 'fs'

let webtorrent = new WebTorrent()

function readFilePromise (path: string) {
  return new Promise<Buffer>((res, rej) => {
    readFile(path, (err, data) => {
      if (err) return rej(err)

      return res(data)
    })
  })
}

function readdirPromise (path: string) {
  return new Promise<string[]>((res, rej) => {
    readdir(path, (err, files) => {
      if (err) return rej(err)

      return res(files)
    })
  })
}

  // Default interval -> 2 minutes
function dateIsValid (dateString: string, interval = 120000) {
  const dateToCheck = new Date(dateString)
  const now = new Date()

  return Math.abs(now.getTime() - dateToCheck.getTime()) <= interval
}

function wait (milliseconds: number) {
  return new Promise(resolve => setTimeout(resolve, milliseconds))
}

function webtorrentAdd (torrent: string, refreshWebTorrent = false) {
  if (refreshWebTorrent === true) webtorrent = new WebTorrent()

  return new Promise<WebTorrent.Torrent>(res => webtorrent.add(torrent, res))
}

// ---------------------------------------------------------------------------

export {
  readFilePromise,
  readdirPromise,
  dateIsValid,
  wait,
  webtorrentAdd
}