chore: migrate test cases from Chai to Jest

This commit is contained in:
Harttle
2023-03-20 00:41:06 +08:00
committed by Jun Yang
parent dccb90c591
commit c6cde9cd10
97 changed files with 8163 additions and 26440 deletions
+112
View File
@@ -0,0 +1,112 @@
import { toPromise, toValueSync } from './async'
describe('utils/async', () => {
describe('#toPromise()', function () {
it('should return a promise', async () => {
function * foo () {
return 'foo'
}
const result = await toPromise(foo())
expect(result).toBe('foo')
})
it('should support iterable with single return statement', async () => {
function * foo () {
return 'foo'
}
const result = await toPromise(foo())
expect(result).toBe('foo')
})
it('should support promise', async () => {
function foo () {
return Promise.resolve('foo')
}
const result = await toPromise(foo())
expect(result).toBe('foo')
})
it('should resolve dependency', async () => {
function * foo (): Generator<Generator<string>> {
return yield bar()
}
function * bar (): Generator<string> {
return 'bar'
}
const result = await toPromise(foo())
expect(result).toBe('bar')
})
it('should support promise dependency', async () => {
function * foo (): Generator<Promise<string>> {
return yield Promise.resolve('foo')
}
const result = await toPromise(foo())
expect(result).toBe('foo')
})
it('should reject Promise if dependency throws syncly', done => {
function * foo (): Generator<Generator<never>> {
return yield bar()
}
function * bar (): Generator<never> {
throw new Error('bar')
}
toPromise(foo()).catch(err => {
expect(err.message).toBe('bar')
done()
return 0 as any
})
})
it('should resume promise after catch', async () => {
function * foo () {
let ret = ''
try {
yield bar()
} catch (e) {
ret += 'bar'
}
ret += 'foo'
return ret
}
function * bar (): Generator<never> {
throw new Error('bar')
}
const ret = await toPromise(foo())
expect(ret).toBe('barfoo')
})
})
describe('#toValueSync()', function () {
it('should throw Error if dependency throws syncly', () => {
function * foo (): Generator<Generator<never>> {
return yield bar()
}
function * bar (): Generator<never> {
throw new Error('bar')
}
expect(() => toValueSync(foo())).toThrow('bar')
})
it('should resume yield after catch', () => {
function * foo (): Generator<unknown, never, never> {
try {
yield bar()
} catch (e) {}
return yield 'foo'
}
function * bar (): Generator<never> {
throw new Error('bar')
}
expect(toValueSync(foo())).toBe('foo')
})
it('should resume return after catch', () => {
function * foo (): Generator<Generator<never>, string> {
try {
yield bar()
} catch (e) {}
return 'foo'
}
function * bar (): Generator<never> {
throw new Error('bar')
}
expect(toValueSync(foo())).toBe('foo')
})
it('should return non iterator value as it is', () => {
expect(toValueSync('foo')).toBe('foo')
})
})
})