-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy path001.open.js
176 lines (145 loc) · 6.32 KB
/
001.open.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
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
// methods should throw errors when arguments are invalid
var should = require("should"),
fs = require('fs'),
lwip = require('../../'),
imgs = require('../imgs');
describe('lwip.open arguments validation', function() {
describe('invalid source', function() {
describe('with type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, 123, 'jpg', function() {}).should.throwError();
});
});
describe('without type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, {}, function() {}).should.throwError();
});
});
});
describe('path', function() {
describe('without extension and no type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, imgs.jpg.noex, function() {}).should.throwError();
});
});
describe('with unknown extension and no type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, imgs.inv, function() {}).should.throwError();
});
});
describe('with invalid type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, imgs.jpg.rgb, 'jjpg', function() {}).should.throwError();
});
});
describe('with invalid type (raw buffer properties)', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, imgs.jpg.rgb, {width: 120, height: 120}, function() {}).should.throwError();
});
});
});
describe('buffer', function() {
var buffer;
before(function(done) {
fs.readFile(imgs.jpg.rgb, function(err, buff) {
buffer = buff;
done();
});
});
describe('without type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, function() {}).should.throwError();
});
});
describe('with invalid type', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, 'jjpg', function() {}).should.throwError();
});
});
});
describe('pixelbuffer', function() {
var buffer;
before(function(done) {
buffer = new Buffer(120 * 120);
done();
});
describe('without raw buffer properties', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, function() {}).should.throwError();
});
});
describe('without width', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { height: 120 }, function() {}).should.throwError();
});
});
describe('without height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: 120 }, function() {}).should.throwError();
});
});
describe('without width and height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { }, function() {}).should.throwError();
});
});
describe('with non numeric width', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: "lorem", height: 120 }, function() {}).should.throwError();
});
});
describe('with non numeric height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: 120, height: "lorem" }, function() {}).should.throwError();
});
});
describe('with non numeric width and height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: "lorem", height: "ipsum" }, function() {}).should.throwError();
});
});
describe('with negative width', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: -120, height: 120 }, function() {}).should.throwError();
});
});
describe('with negative height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: 120, height: -120 }, function() {}).should.throwError();
});
});
describe('with negative width and height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: -120, height: -120 }, function() {}).should.throwError();
});
});
describe('with incorrect width and height', function() {
it('should throw an error', function() {
lwip.open.bind(lwip, buffer, { width: 123, height: 321 }, function() {}).should.throwError();
});
});
describe('with correct width and height for 1 channel', function() {
it('should succeed', function() {
lwip.open.bind(lwip, buffer, { width: 120, height: 120 }, function() {}).should.not.throw();
});
});
describe('with correct width and height for 2 channels', function() {
var newBuffer = new Buffer(120 * 120 * 2);
it('should succeed', function() {
lwip.open.bind(lwip, newBuffer, { width: 120, height: 120 }, function() {}).should.not.throw();
});
});
describe('with correct width and height for 3 channels', function() {
var newBuffer = new Buffer(120 * 120 * 3);
it('should succeed', function() {
lwip.open.bind(lwip, newBuffer, { width: 120, height: 120 }, function() {}).should.not.throw();
});
});
describe('with correct width and height for 4 channels', function() {
var newBuffer = new Buffer(120 * 120 * 4);
it('should succeed', function() {
lwip.open.bind(lwip, newBuffer, { width: 120, height: 120 }, function() {}).should.not.throw();
});
});
});
});