debian-mirror-gitlab/spec/frontend/blob/3d_viewer/mesh_object_spec.js

33 lines
939 B
JavaScript
Raw Normal View History

2018-12-13 13:39:08 +05:30
import { BoxGeometry } from 'three/build/three.module';
2017-08-17 22:00:37 +05:30
import MeshObject from '~/blob/3d_viewer/mesh_object';
describe('Mesh object', () => {
it('defaults to non-wireframe material', () => {
2018-12-13 13:39:08 +05:30
const object = new MeshObject(new BoxGeometry(10, 10, 10));
2017-08-17 22:00:37 +05:30
expect(object.material.wireframe).toBeFalsy();
});
it('changes to wirefame material', () => {
2018-12-13 13:39:08 +05:30
const object = new MeshObject(new BoxGeometry(10, 10, 10));
2017-08-17 22:00:37 +05:30
object.changeMaterial('wireframe');
expect(object.material.wireframe).toBeTruthy();
});
it('scales object down', () => {
2018-12-13 13:39:08 +05:30
const object = new MeshObject(new BoxGeometry(10, 10, 10));
2018-11-08 19:23:39 +05:30
const { radius } = object.geometry.boundingSphere;
2017-08-17 22:00:37 +05:30
expect(radius).not.toBeGreaterThan(4);
});
it('does not scale object down', () => {
2018-12-13 13:39:08 +05:30
const object = new MeshObject(new BoxGeometry(1, 1, 1));
2018-11-08 19:23:39 +05:30
const { radius } = object.geometry.boundingSphere;
2017-08-17 22:00:37 +05:30
expect(radius).toBeLessThan(1);
});
});