-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_columns_test.js
298 lines (261 loc) · 9.67 KB
/
export_columns_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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
'use strict'
const assert = require('assert')
const CSVPlugin = require('../src/plugin')
describe('Generate csv row for item', () => {
describe('with single photo', () => {
const { defaultItemTemplate,
defaultPhotoTemplate } = require('./fixtures/template')
const numDefaultItemFields = defaultItemTemplate.fields.length
const numDefaultPhotoFields = defaultPhotoTemplate.fields.length
const { itemSinglePhoto,
itemSinglePhotoExpected } = require('./fixtures/item')
const expectedTags = itemSinglePhotoExpected.tags.join(', ')
const expectedPath = itemSinglePhotoExpected.photoPath
const expectedMetadata = [
itemSinglePhotoExpected.photoTitle,
itemSinglePhotoExpected.photoDate
]
const expectedNote = itemSinglePhotoExpected.photoNote
const expectedItem = [
itemSinglePhotoExpected.title,
itemSinglePhotoExpected.creator,
itemSinglePhotoExpected.itemDate,
itemSinglePhotoExpected.itemType,
itemSinglePhotoExpected.source,
itemSinglePhotoExpected.collection,
itemSinglePhotoExpected.box,
itemSinglePhotoExpected.folder,
itemSinglePhotoExpected.identifier,
itemSinglePhotoExpected.rights
].map(x => `"${x}"`).join(',')
describe('with default settings', () => {
const defaultPlugin = new CSVPlugin({
photoNotes: true,
photoMetadata: false,
tags: true,
quotes: true,
itemTemplate: '',
photoTemplate: ''
})
const c = defaultPlugin.columnsString(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
it('Generates at least as many columns as the item template', () => {
assert.ok(c.length >= numDefaultItemFields)
})
it('Generates at least as many columns as both templates', () => {
assert.ok(c.length >= numDefaultItemFields + numDefaultPhotoFields)
})
it('Selects the required information for the item template', () => {
assert.ok(c.startsWith(expectedItem))
})
it('Encloses strings in double quotes', () => {
assert.ok(c[0].includes('"'))
})
})
describe('with quotes false setting', () => {
const plugin = new CSVPlugin({
photoNotes: false,
photoMetadata: false,
tags: false,
quotes: false,
itemTemplate: '',
photoTemplate: ''
})
const c = plugin.columnsString(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
it('only quotes fields containing commas or other escape chars', () => {
const firstFieldNotQuoted = itemSinglePhotoExpected.title.length
const lastFieldQuoted = itemSinglePhotoExpected.rights.length
assert.equal(c.slice(0, firstFieldNotQuoted),
expectedItem.replaceAll(/"/g, '').slice(0, firstFieldNotQuoted))
assert.equal(c.trim().slice(-1 * lastFieldQuoted),
expectedItem.slice(-1 * lastFieldQuoted))
})
})
describe('when tags is true', () => {
const tagsPlugin = new CSVPlugin({
tags: true,
quotes: false,
itemTemplate: ''
})
it('first column after item template fields is tags', () => {
const c = tagsPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
assert.equal(c[numDefaultItemFields], expectedTags)
})
})
describe('when tags is false', () => {
const noTagsPlugin = new CSVPlugin({
tags: false,
quotes: false,
itemTemplate: ''
})
it('first column after item template fields is not tags', () => {
const c = noTagsPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
assert.notEqual(c[numDefaultItemFields], expectedTags)
})
})
describe('when photo notes and metadata are false', () => {
it('only item columns are generated', () => {
const noPhotosPlugin = new CSVPlugin({
tags: false,
photoNotes: false,
photoMetadata: false,
itemTemplate: ''
})
const c = noPhotosPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
assert.equal(c.length, numDefaultItemFields)
})
it('only item columns generated even if photo template explicit', () => {
const noPhotosPlugin = new CSVPlugin({
tags: false,
photoNotes: false,
photoMetadata: false,
itemTemplate: '',
photoTemplate: defaultPhotoTemplate
})
const c = noPhotosPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
assert.equal(c.length, numDefaultItemFields)
})
})
describe('when just photo notes is true', () => {
const photoNotesPlugin = new CSVPlugin({
tags: false,
photoNotes: true,
photoMetadata: false,
quotes: false,
itemTemplate: ''
})
const c = photoNotesPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
it('photo path appears immediately after item fields', () => {
assert.equal(c[numDefaultItemFields],
expectedPath)
})
it('photo notes appears immediately after photo path', () => {
assert.equal(c[numDefaultItemFields + 1],
expectedNote)
})
})
describe('when just photo metadata is true', () => {
const photoMetaPlugin = new CSVPlugin({
tags: false,
photoNotes: false,
photoMetadata: true,
quotes: false,
itemTemplate: ''
})
const c = photoMetaPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
it('photo path appears immediately after item fields', () => {
assert.equal(c[numDefaultItemFields],
expectedPath)
})
it('photo metadata fields appear immediately after path', () => {
assert.deepEqual(c.slice(numDefaultItemFields + 1), expectedMetadata)
})
it('photo notes field is absent', () => {
assert.ok(!(c.slice(numDefaultItemFields + 1)
.includes(expectedNote)))
})
})
describe('when both photo metadata and notes are true', () => {
const photoBothPlugin = new CSVPlugin({
tags: false,
photoNotes: true,
photoMetadata: true,
quotes: false,
itemTemplate: ''
})
const c = photoBothPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhoto)
it('photo path appears immediately after item fields', () => {
assert.equal(c[numDefaultItemFields], expectedPath)
})
it('photo metadata fields appear immediately after path ', () => {
assert.deepEqual(c.slice(numDefaultItemFields + 1, -1),
expectedMetadata)
})
it('photo notes field appears as last column', () => {
assert.equal(c.slice(-1), expectedNote)
})
})
})
describe('with single photo with many notes', () => {
const { defaultItemTemplate,
defaultPhotoTemplate } = require('./fixtures/template')
const numDefaultItemFields = defaultItemTemplate.fields.length
const { itemSinglePhotoManyNote,
itemManyNoteExpected } = require('./fixtures/item')
const photoNotesPlugin = new CSVPlugin({
tags: false,
photoNotes: true,
photoMetadata: false,
quotes: false,
itemTemplate: ''
})
const c = photoNotesPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemSinglePhotoManyNote)
it('photo notes column appears immediately after photo path', () => {
assert.ok(c[numDefaultItemFields + 1].startsWith(
itemManyNoteExpected.firstNote
))
})
it('all photo notes appear in column', () => {
assert.ok(c[numDefaultItemFields + 1].includes(
itemManyNoteExpected.firstNote))
assert.ok(c[numDefaultItemFields + 1].includes(
itemManyNoteExpected.secondNote))
})
})
describe('with no photo but photo info requested', () => {
const { defaultItemTemplate,
defaultPhotoTemplate } = require('./fixtures/template')
const numDefaultItemFields = defaultItemTemplate.fields.length
const { itemNoPhoto } = require('./fixtures/item')
const photoNotesPlugin = new CSVPlugin({
tags: false,
photoNotes: true,
photoMetadata: true,
quotes: false,
itemTemplate: ''
})
const c = photoNotesPlugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemNoPhoto)
it('only has columns for item fields', () => {
assert.equal(c.length, numDefaultItemFields)
})
})
describe('with many photos', () => {
const { defaultItemTemplate,
defaultPhotoTemplate } = require('./fixtures/template')
const numDefaultItemFields = defaultItemTemplate.fields.length
const { itemManyPhoto, itemManyPhotoExpected } = require('./fixtures/item')
const plugin = new CSVPlugin({
tags: false,
photoNotes: true,
photoMetadata: true,
quotes: false,
itemTemplate: ''
})
const c = plugin.columns(defaultItemTemplate,
defaultPhotoTemplate, itemManyPhoto)
it('has enough columns for all photo data', () => {
const numPhotos = 3
const numDefaultPhotoFields = defaultPhotoTemplate.fields.length
const numActualPhotoFields = numDefaultPhotoFields + 2 // path and notes
assert.equal(c.length,
numDefaultItemFields + (numPhotos * numActualPhotoFields))
})
it('has path of first photo in first column after item data', () => {
assert.equal(c[numDefaultItemFields],
itemManyPhotoExpected.firstPhotoPath)
})
it('has notes of last photo in last column', () => {
assert.equal(c.slice(-1), itemManyPhotoExpected.lastPhotoNote)
})
})
})