defineClass.test.js
6.92 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
'use strict';
var defineClass = require('../src/js/defineClass');
describe('module:def', function() {
describe('def()', function() {
var props1,
propsWithinit,
propsWithinit2,
propsWithStatic;
props1 = {
var1: 1,
method1: function() {}
};
propsWithinit = {
var3: 3,
init: function() {
this.instanceVar = 3;
},
method3: function() {}
};
propsWithinit2 = {
var4: 4,
init: function() {
this.instanceVar = 4;
},
method4: function() {}
};
propsWithStatic = {
var2: 2,
method2: function() {},
static: {
staticMethod1: function() {},
staticMethod2: function() {}
}
};
describe('생성자를 생성할수있다', function() {
var MyObject;
beforeEach(function() {
MyObject = defineClass(props1);
});
it('MyObject.prototype에 method1이 있다.', function() {
expect(MyObject.prototype.method1).toBeDefined();
expect(MyObject.prototype.method1).toBe(props1.method1);
});
it('MyObject.prototype에 var1가 있고 값이 정확하다..', function() {
expect(MyObject.prototype.var1).toBeDefined();
expect(MyObject.prototype.var1).toEqual(props1.var1);
});
it('MyObject으로 생성한 인스턴스에서 va1과 method1를 참조할수있다.', function() {
var instance = new MyObject();
expect(instance.var1).toBeDefined();
expect(instance.var1).toBe(MyObject.prototype.var1);
expect(instance.method1).toBeDefined();
expect(instance.method1).toBe(MyObject.prototype.method1);
});
});
describe('init을 넘겨 생성자를 지정할수있다.', function() {
var MyObject;
beforeEach(function() {
MyObject = defineClass(propsWithinit);
});
it('MyObject.prototype에 method3가 있다.', function() {
expect(MyObject.prototype.method3).toBeDefined();
expect(MyObject.prototype.method3).toBe(propsWithinit.method3);
});
it('MyObject.prototype에 var3가 있고 값이 정확하다..', function() {
expect(MyObject.prototype.var3).toBeDefined();
expect(MyObject.prototype.var3).toEqual(propsWithinit.var3);
});
it('MyObject으로 생성한 인스턴스에서 var3과 method3를 참조할수있다.', function() {
var instance = new MyObject();
expect(instance.var3).toBeDefined();
expect(instance.var3).toBe(MyObject.prototype.var3);
expect(instance.method3).toBeDefined();
expect(instance.method3).toBe(MyObject.prototype.method3);
});
it('MyObject으로 생성한 인스턴스에서 인스턴스맴버가 존재한다.', function() {
var instance = new MyObject();
expect(instance.instanceVar).toBeDefined();
expect(instance.instanceVar).toEqual(3);
});
});
describe('static키로 클래스 멤버를 할당할수있다', function() {
var MyObject;
beforeEach(function() {
MyObject = defineClass(propsWithStatic);
});
it('MyObject에 스테틱멤버가 존재한다.', function() {
expect(MyObject.staticMethod1).toBeDefined();
expect(MyObject.staticMethod2).toBeDefined();
expect(propsWithStatic['static']).not.toBeDefined();
});
});
describe('생성자를 상속받아 또다른 생성자를 만들수있다.', function() {
var Parent,
Child;
beforeEach(function() {
Parent = defineClass(propsWithinit);
Child = defineClass(Parent, propsWithinit2);
});
it('Child.prototype에 method4가 있다.', function() {
expect(Child.prototype.method4).toBeDefined();
expect(Child.prototype.method4).toBe(propsWithinit2.method4);
});
it('Child.prototype에 var4가 있고 값이 정확하다..', function() {
expect(Child.prototype.var4).toBeDefined();
expect(Child.prototype.var4).toEqual(propsWithinit2.var4);
});
it('Child로 생성한 인스턴스에서 프로토타입멤버를 참조할수있다.', function() {
var instance = new Child();
expect(instance.var4).toBeDefined();
expect(instance.var4).toBe(Child.prototype.var4);
expect(instance.method4).toBeDefined();
expect(instance.method4).toBe(Child.prototype.method4);
});
it('Child로 생성한 인스턴스에서 Parent에서 상속받은 멤버를 참조할수있다.', function() {
var instance = new Child();
expect(instance.var3).toBeDefined();
expect(instance.var3).toBe(Parent.prototype.var3);
expect(instance.method3).toBeDefined();
expect(instance.method3).toBe(Parent.prototype.method3);
});
it('Child로 생성한 인스턴스에서 인스턴스멤버를 참조할수있다.', function() {
var instance = new Child();
expect(instance.instanceVar).toBeDefined();
expect(instance.instanceVar).toEqual(4);
});
});
describe('init안에서 def로 만들어진 생성자를 빌려쓸수있다.', function() {
var Parent,
Child;
beforeEach(function() {
Parent = defineClass(propsWithinit);
Child = defineClass(Parent, {
init: function() {
Parent.call(this);
}
});
});
it('Child로 생성한 인스턴스에서 Parent에서 상속받은 멤버를 참조할수있다.', function() {
var instance = new Child();
expect(instance.var3).toBeDefined();
expect(instance.var3).toBe(Parent.prototype.var3);
expect(instance.method3).toBeDefined();
expect(instance.method3).toBe(Parent.prototype.method3);
});
it('Child로 생성한 인스턴스에서 인스턴스멤버를 참조할수있다.', function() {
var instance = new Child();
expect(instance.instanceVar).toBeDefined();
expect(instance.instanceVar).toEqual(3);
});
});
});
});