object.js
1.96 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
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var benchmark_1 = __importDefault(require("benchmark"));
var index_1 = require("../index");
var emptySuite = new benchmark_1.default.Suite("z.object: empty");
var shortSuite = new benchmark_1.default.Suite("z.object: short");
var longSuite = new benchmark_1.default.Suite("z.object: long");
var empty = index_1.z.object({});
var short = index_1.z.object({
string: index_1.z.string(),
});
var long = index_1.z.object({
string: index_1.z.string(),
number: index_1.z.number(),
boolean: index_1.z.boolean(),
});
emptySuite
.add("valid", function () {
empty.parse({});
})
.add("valid: extra keys", function () {
empty.parse({ string: "string" });
})
.add("invalid: null", function () {
try {
empty.parse(null);
}
catch (err) { }
})
.on("cycle", function (e) {
console.log("".concat(emptySuite.name, ": ").concat(e.target));
});
shortSuite
.add("valid", function () {
short.parse({ string: "string" });
})
.add("valid: extra keys", function () {
short.parse({ string: "string", number: 42 });
})
.add("invalid: null", function () {
try {
short.parse(null);
}
catch (err) { }
})
.on("cycle", function (e) {
console.log("".concat(shortSuite.name, ": ").concat(e.target));
});
longSuite
.add("valid", function () {
long.parse({ string: "string", number: 42, boolean: true });
})
.add("valid: extra keys", function () {
long.parse({ string: "string", number: 42, boolean: true, list: [] });
})
.add("invalid: null", function () {
try {
long.parse(null);
}
catch (err) { }
})
.on("cycle", function (e) {
console.log("".concat(longSuite.name, ": ").concat(e.target));
});
exports.default = {
suites: [emptySuite, shortSuite, longSuite],
};