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
|
describe('setData (method)', () => {
it('should change the positions only', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const data = cropper.getData();
const changedData = cropper.setData({
x: 1,
y: 1,
}).getData();
expect(changedData.x).to.not.equal(data.x);
expect(changedData.y).to.not.equal(data.y);
expect(changedData.width).to.equal(data.width);
expect(changedData.height).to.equal(data.height);
done();
},
});
});
it('should change the positions only', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const data = cropper.getData();
const changedData = cropper.setData({
width: 160,
height: 90,
}).getData();
expect(changedData.x).to.equal(data.x);
expect(changedData.y).to.equal(data.y);
expect(changedData.width).to.not.equal(data.width);
expect(changedData.height).to.not.equal(data.height);
done();
},
});
});
it('should change the rotate degrees', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const data = cropper.getData();
const changedData = cropper.setData({
rotate: 90,
}).getData();
expect(changedData.rotate).to.not.equal(data.rotate);
done();
},
});
});
it('should change the scale in both x-axis and y-axis', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const data = cropper.getData();
const changedData = cropper.setData({
scaleX: -1,
scaleY: -1,
}).getData();
expect(changedData.scaleX).to.not.equal(data.scaleX);
expect(changedData.scaleY).to.not.equal(data.scaleY);
done();
},
});
});
});
|