-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathnew.test.js
87 lines (67 loc) · 2.01 KB
/
new.test.js
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { objectFactory } from './new';
describe('new', () => {
it('take a function as an argument', () => {
const Factory = 123;
function excute() {
objectFactory(Factory);
}
expect(excute).toThrowError('need be a function argument');
});
it('cannot be an arrow function', () => {
const Factory = (name, age) => {
this.name = name;
this.age = age;
return 233;
};
function excute() {
objectFactory(Factory);
}
expect(excute).toThrowError('arrow function is not allowed');
});
it('create a instance', () => {
function Factory(name, age) {
this.name = name;
this.age = age;
}
Factory.prototype.getName = function () {
return this.name;
};
const f = objectFactory(Factory, 'jack', 12);
const nf = new Factory('jack', 12); // 原生的 new 操作生成的实例对象
expect(f.name).toBe(nf.name);
expect(f.age).toBe(nf.age);
expect(f.getName()).toBe(nf.getName());
});
it('if return a primitive value, return the newly instance', () => {
const Factory = function (name, age) {
this.name = name;
this.age = age;
return 233;
};
Factory.prototype.getName = function () {
return this.name;
};
const f = objectFactory(Factory, 'jack', 12);
const nf = new Factory('jack', 12); // 原生的 new 操作生成的实例对象
expect(f.name).toBe(nf.name);
expect(f.age).toBe(nf.age);
expect(f.getName()).toBe(nf.getName());
});
it('if return a object, return the object', () => {
const Factory = function (name, age) {
this.name = name;
this.age = age;
return {
name: 'john',
};
};
Factory.prototype.getName = function () {
return this.name;
};
const f = objectFactory(Factory, 'jack', 12);
const nf = new Factory('jack', 12); // 原生的 new 操作生成的实例对象
expect(f.name).toBe(nf.name);
expect(f.age).toBe(nf.age);
expect(f.getName).toBe(nf.getName);
});
});