forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.test.js
99 lines (80 loc) · 2.83 KB
/
create.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
88
89
90
91
92
93
94
95
96
97
98
99
import assert from 'assert';
import lodashStable from 'lodash';
import { falsey, primitives, stubTrue } from './utils.js';
import create from '../create.js';
import keys from '../keys.js';
describe('create', function() {
function Shape() {
this.x = 0;
this.y = 0;
}
function Circle() {
Shape.call(this);
}
it('should create an object that inherits from the given `prototype` object', function() {
Circle.prototype = create(Shape.prototype);
Circle.prototype.constructor = Circle;
var actual = new Circle;
assert.ok(actual instanceof Circle);
assert.ok(actual instanceof Shape);
assert.notStrictEqual(Circle.prototype, Shape.prototype);
});
it('should assign `properties` to the created object', function() {
var expected = { 'constructor': Circle, 'radius': 0 };
var properties = Object.keys(expected);
Circle.prototype = create(Shape.prototype, expected);
var actual = new Circle;
assert.ok(actual instanceof Circle);
assert.ok(actual instanceof Shape);
assert.deepStrictEqual(Object.keys(Circle.prototype), properties);
properties.forEach((property) => {
assert.strictEqual(Circle.prototype[property], expected[property]);
});
});
it('should assign own properties', function() {
function Foo() {
this.a = 1;
this.c = 3;
}
Foo.prototype.b = 2;
var actual = create({}, new Foo);
var expected = { 'a': 1, 'c': 3 };
var properties = Object.keys(expected);
assert.deepStrictEqual(Object.keys(actual), properties);
properties.forEach((property) => {
assert.strictEqual(actual[property], expected[property]);
});
});
it('should assign properties that shadow those of `prototype`', function() {
function Foo() {
this.a = 1;
}
var object = create(new Foo, { 'a': 1 });
assert.deepStrictEqual(lodashStable.keys(object), ['a']);
});
it('should accept a falsey `prototype`', function() {
var actual = lodashStable.map(falsey, function(prototype, index) {
return index ? create(prototype) : create();
});
actual.forEach((value) => {
assert.ok(lodashStable.isObject(value));
});
});
it('should accept a primitive `prototype`', function() {
var actual = lodashStable.map(primitives, function(value, index) {
return index ? create(value) : create();
});
actual.forEach((value) => {
assert.ok(lodashStable.isObject(value));
});
});
it('should work as an iteratee for methods like `_.map`', function() {
var array = [{ 'a': 1 }, { 'a': 1 }, { 'a': 1 }],
expected = lodashStable.map(array, stubTrue),
objects = lodashStable.map(array, create);
var actual = lodashStable.map(objects, function(object) {
return object.a === 1 && !keys(object).length;
});
assert.deepStrictEqual(actual, expected);
});
});