-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
744 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,358 @@ | ||
/** @jsx createElement */ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
/* eslint-disable @typescript-eslint/camelcase */ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
import { createElement, render } from 'nervjs' | ||
import withWeapp from '../src' | ||
import { TaroComponent, delay } from './utils' | ||
import * as sinon from 'sinon' | ||
|
||
describe('lifecycle', () => { | ||
/** | ||
* @type {Element} scratch | ||
*/ | ||
let scratch | ||
|
||
beforeEach(() => { | ||
scratch = document.createElement('div') | ||
}) | ||
|
||
test('created', () => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
created () { | ||
spy() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div /> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalled() | ||
}) | ||
|
||
test('onLoad', () => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
onLoad () { | ||
spy() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div /> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalled() | ||
}) | ||
|
||
test('onLanuch', (done) => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
onLanuch () { | ||
spy() | ||
this.a = 'a' | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalled() | ||
|
||
delay(() => { | ||
expect(scratch.textContent).toBe('a') | ||
done() | ||
}) | ||
}) | ||
|
||
test('onReady', (done) => { | ||
const s1 = sinon.spy() | ||
const s2 = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
created () { | ||
s1() | ||
this.a = 'a' | ||
}, | ||
onReady () { | ||
s2() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(s1.called).toBeTruthy() | ||
expect(s2.called).toBeTruthy() | ||
|
||
expect(s1.calledBefore(s2)) | ||
|
||
delay(() => { | ||
expect(scratch.textContent).toBe('a') | ||
done() | ||
}) | ||
}) | ||
|
||
test('ready should work', (done) => { | ||
const s1 = sinon.spy() | ||
const s2 = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
created () { | ||
s1() | ||
this.a = 'a' | ||
}, | ||
ready () { | ||
s2() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(s1.called).toBeTruthy() | ||
expect(s2.called).toBeTruthy() | ||
|
||
expect(s1.calledBefore(s2)) | ||
|
||
delay(() => { | ||
expect(scratch.textContent).toBe('a') | ||
done() | ||
}) | ||
}) | ||
|
||
test('detached', () => { | ||
const s1 = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
detached () { | ||
s1() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
render(<div />, scratch) | ||
|
||
expect(s1.callCount).toBe(1) | ||
}) | ||
|
||
test('detached', () => { | ||
const s1 = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
detached () { | ||
s1() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
render(<div />, scratch) | ||
|
||
expect(s1.callCount).toBe(1) | ||
}) | ||
|
||
test('onUnload', () => { | ||
const s1 = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
onUnload () { | ||
s1() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
render(<div />, scratch) | ||
|
||
expect(s1.callCount).toBe(1) | ||
}) | ||
|
||
test('page lifecycle', () => { | ||
const onLoad = sinon.spy() | ||
const onReady = sinon.spy() | ||
const onUnload = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
onLoad () { | ||
onLoad() | ||
}, | ||
onReady () { | ||
onReady() | ||
}, | ||
onUnload () { | ||
onUnload() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
render(<div />, scratch) | ||
|
||
expect(onLoad.callCount).toBe(1) | ||
expect(onReady.callCount).toBe(1) | ||
expect(onUnload.callCount).toBe(1) | ||
|
||
expect(onLoad.calledBefore(onReady)).toBeTruthy() | ||
expect(onReady.calledBefore(onUnload)).toBeTruthy() | ||
}) | ||
|
||
test('component lifecycle', () => { | ||
const created = sinon.spy() | ||
const ready = sinon.spy() | ||
const detached = sinon.spy() | ||
|
||
@withWeapp({ | ||
data: { | ||
a: '' | ||
}, | ||
created () { | ||
created() | ||
}, | ||
ready () { | ||
ready() | ||
}, | ||
detached () { | ||
detached() | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div>{this.a}</div> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
render(<div />, scratch) | ||
|
||
expect(created.callCount).toBe(1) | ||
expect(ready.callCount).toBe(1) | ||
expect(detached.callCount).toBe(1) | ||
|
||
expect(created.calledBefore(ready)).toBeTruthy() | ||
expect(ready.calledBefore(detached)).toBeTruthy() | ||
}) | ||
|
||
test('created should emit this.$router.params as aruguments', () => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
created (options) { | ||
spy(options) | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div /> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalledWith({ a: 1 }) | ||
}) | ||
|
||
test('onLoad should emit this.$router.params as aruguments', () => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
onLoad (options) { | ||
spy(options) | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div /> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalledWith({ a: 1 }) | ||
}) | ||
|
||
test('onLanuch should emit this.$router.params as aruguments', () => { | ||
const spy = jest.fn() | ||
|
||
@withWeapp({ | ||
onLanuch (options) { | ||
spy(options) | ||
} | ||
}) | ||
class A extends TaroComponent { | ||
render () { | ||
return <div /> | ||
} | ||
} | ||
|
||
render(<A />, scratch) | ||
|
||
expect(spy).toBeCalledWith({ a: 1 }) | ||
}) | ||
}) |
Oops, something went wrong.