forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestSetPositionCommand.js
48 lines (33 loc) · 1.82 KB
/
TestSetPositionCommand.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
/**
* @author lxxxvi / https://github.com/lxxxvi
* Developed as part of a project at University of Applied Sciences and Arts Northwestern Switzerland (www.fhnw.ch)
*/
QUnit.module( "SetPositionCommand" );
QUnit.test( "Test SetPositionCommand (Undo and Redo)", function( assert ) {
var editor = new Editor();
var box = aBox();
var cmd = new AddObjectCommand( box );
editor.execute( cmd );
var positions = [
{ x: 50, y: - 80, z: 30 },
{ x: - 10, y: 100, z: 0 },
{ x: 44, y: - 20, z: 90 }
];
positions.map( function( position ) {
var newPosition = new THREE.Vector3( position.x, position.y, position.z );
var cmd = new SetPositionCommand( box, newPosition );
cmd.updatable = false;
editor.execute( cmd );
} );
assert.ok( box.position.x == positions[ positions.length - 1 ].x, "OK, changing X position was successful" );
assert.ok( box.position.y == positions[ positions.length - 1 ].y, "OK, changing Y position was successful" );
assert.ok( box.position.z == positions[ positions.length - 1 ].z, "OK, changing Z position was successful" );
editor.undo();
assert.ok( box.position.x == positions[ positions.length - 2 ].x, "OK, changing X position was successful (after undo)" );
assert.ok( box.position.y == positions[ positions.length - 2 ].y, "OK, changing Y position was successful (after undo)" );
assert.ok( box.position.z == positions[ positions.length - 2 ].z, "OK, changing Z position was successful (after undo)" );
editor.redo();
assert.ok( box.position.x == positions[ positions.length - 1 ].x, "OK, changing X position was successful (after redo)" );
assert.ok( box.position.y == positions[ positions.length - 1 ].y, "OK, changing Y position was successful (after redo)" );
assert.ok( box.position.z == positions[ positions.length - 1 ].z, "OK, changing Z position was successful (after redo)" );
} );