forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPooledClass-test.js
More file actions
127 lines (114 loc) · 4.03 KB
/
PooledClass-test.js
File metadata and controls
127 lines (114 loc) · 4.03 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
/**
* Copyright 2014-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @emails react-core
*/
'use strict';
var PooledClass;
var PoolableClass;
describe('Pooled class', function() {
beforeEach(function() {
PooledClass = require('PooledClass');
PoolableClass = function() {};
PoolableClass.prototype.destructor = function() {};
PooledClass.addPoolingTo(PoolableClass);
});
it('should initialize a pool correctly', function() {
expect(PoolableClass.instancePool).toBeDefined();
});
it('should return a new instance when the pool is empty', function() {
var instance = PoolableClass.getPooled();
expect(instance instanceof PoolableClass).toBe(true);
});
it('should return the instance back into the pool when it gets released',
function() {
var instance = PoolableClass.getPooled();
PoolableClass.release(instance);
expect(PoolableClass.instancePool.length).toBe(1);
expect(PoolableClass.instancePool[0]).toBe(instance);
}
);
it('should return an old instance if available in the pool', function() {
var instance = PoolableClass.getPooled();
PoolableClass.release(instance);
var instance2 = PoolableClass.getPooled();
expect(instance).toBe(instance2);
});
it('should call the destructor when instance gets released', function() {
var log = [];
var PoolableClassWithDestructor = function() {};
PoolableClassWithDestructor.prototype.destructor = function() {
log.push('released');
};
PooledClass.addPoolingTo(PoolableClassWithDestructor);
var instance = PoolableClassWithDestructor.getPooled();
PoolableClassWithDestructor.release(instance);
expect(log).toEqual(['released']);
});
it('should accept poolers with different arguments', function() {
var log = [];
var PoolableClassWithMultiArguments = function(a, b) {
log.push(a, b);
};
PoolableClassWithMultiArguments.prototype.destructor = function() {};
PooledClass.addPoolingTo(
PoolableClassWithMultiArguments,
PooledClass.twoArgumentPooler
);
PoolableClassWithMultiArguments.getPooled('a', 'b', 'c');
expect(log).toEqual(['a', 'b']);
});
it('should call a new constructor with arguments', function() {
var log = [];
var PoolableClassWithOneArgument = function(a) {
log.push(a);
};
PoolableClassWithOneArgument.prototype.destructor = function() {};
PooledClass.addPoolingTo(
PoolableClassWithOneArgument
);
PoolableClassWithOneArgument.getPooled('new');
expect(log).toEqual(['new']);
});
it('should call an old constructor with arguments', function() {
var log = [];
var PoolableClassWithOneArgument = function(a) {
log.push(a);
};
PoolableClassWithOneArgument.prototype.destructor = function() {};
PooledClass.addPoolingTo(
PoolableClassWithOneArgument
);
var instance = PoolableClassWithOneArgument.getPooled('new');
PoolableClassWithOneArgument.release(instance);
PoolableClassWithOneArgument.getPooled('old');
expect(log).toEqual(['new', 'old']);
});
it('should throw when the class releases an instance of a different type',
function() {
var RandomClass = function() {};
RandomClass.prototype.destructor = function() {};
PooledClass.addPoolingTo(RandomClass);
var randomInstance = RandomClass.getPooled();
PoolableClass.getPooled();
expect(function() {
PoolableClass.release(randomInstance);
}).toThrow(
'Trying to release an instance into a pool of a different type.'
);
}
);
it('should throw if no destructor is defined', function() {
var ImmortalClass = function() {};
PooledClass.addPoolingTo(ImmortalClass);
var inst = ImmortalClass.getPooled();
expect(function() {
ImmortalClass.release(inst);
}).toThrow();
});
});