-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathVicarLoader.test.js
123 lines (101 loc) · 3.24 KB
/
VicarLoader.test.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
import { VicarLoaderBase } from './VicarLoaderBase.js';
function createFile( labels, labelSize, contentSize ) {
const trimmedLabels = labels.replace( /\s+/g, ' ' ).trim();
const byteBuffer = new Uint8Array( labelSize + contentSize );
for ( let i = 0, l = trimmedLabels.length; i < l; i ++ ) {
byteBuffer[ i ] = trimmedLabels.charCodeAt( i );
}
return byteBuffer.buffer;
}
describe( 'VicarLoader', () => {
it( 'should correctly parse the vicar contents.', () => {
const loader = new VicarLoaderBase();
const labels = `
LBLSIZE=120
RECSIZE=40
FORMAT='REAL'
ORG='BSQ'
NS=10
NL=10
NB=3
`;
const result = loader.parse( createFile( labels, 120, 1200 ) );
expect( result.labels ).toEqual( [
{ name: 'LBLSIZE', value: 120 },
{ name: 'RECSIZE', value: 40 },
{ name: 'FORMAT', value: 'REAL' },
{ name: 'ORG', value: 'BSQ' },
{ name: 'NS', value: 10 },
{ name: 'NL', value: 10 },
{ name: 'NB', value: 3 },
] );
expect( result.data.byteLength ).toEqual( 1200 );
expect( result.data instanceof Float32Array ).toBeTruthy();
expect( result.width ).toEqual( 10 );
expect( result.height ).toEqual( 10 );
expect( result.depth ).toEqual( 3 );
} );
it( 'should be tolerant to duplicate labels and use the first instance for defining the image.', () => {
const loader = new VicarLoaderBase();
const labels = `
LBLSIZE=120
RECSIZE=40
FORMAT='REAL'
ORG='BSQ'
NS=10
NL=10
NB=3
NL=1000
TEST='A'
TEST='B'
`;
const result = loader.parse( createFile( labels, 120, 1200 ) );
expect( result.labels ).toEqual( [
{ name: 'LBLSIZE', value: 120 },
{ name: 'RECSIZE', value: 40 },
{ name: 'FORMAT', value: 'REAL' },
{ name: 'ORG', value: 'BSQ' },
{ name: 'NS', value: 10 },
{ name: 'NL', value: 10 },
{ name: 'NB', value: 3 },
{ name: 'NL', value: 1000 },
{ name: 'TEST', value: 'A' },
{ name: 'TEST', value: 'B' },
] );
expect( result.data.byteLength ).toEqual( 1200 );
expect( result.data instanceof Float32Array ).toBeTruthy();
expect( result.width ).toEqual( 10 );
expect( result.height ).toEqual( 10 );
expect( result.depth ).toEqual( 3 );
} );
it( 'should parse array labels and escaped quotes.', () => {
const loader = new VicarLoaderBase();
const labels = `
LBLSIZE=200
RECSIZE=40
FORMAT='REAL'
ORG='BSQ'
NS=10
NL=10
NB=3
NUM_ARR=(1,2,3, 4)
STR_ARR=('A', 'B','C')
MIX_ARR=( 'A', 1,'C', 3 )
ESCAPED='test''s'
`;
const result = loader.parse( createFile( labels, 200, 1200 ) );
expect( result.labels ).toEqual( [
{ name: 'LBLSIZE', value: 200 },
{ name: 'RECSIZE', value: 40 },
{ name: 'FORMAT', value: 'REAL' },
{ name: 'ORG', value: 'BSQ' },
{ name: 'NS', value: 10 },
{ name: 'NL', value: 10 },
{ name: 'NB', value: 3 },
{ name: 'NUM_ARR', value: [ 1, 2, 3, 4 ] },
{ name: 'STR_ARR', value: [ 'A', 'B', 'C' ] },
{ name: 'MIX_ARR', value: [ 'A', 1, 'C', 3 ] },
{ name: 'ESCAPED', value: 'test\'s' },
] );
} );
} );