You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/test/fixtures.js

47 lines
1.0 KiB
JavaScript

const moment = require('moment')
const File = require('../src/model/file')
const Metadata = require('../src/model/metadata')
exports.exiftool = function (opts) {
opts = opts || {}
return {
SourceFile: opts.path || 'path/image.jpg',
File: {
FileModifyDate: opts.date || '2016:08:24 14:51:36',
MIMEType: opts.mimeType || 'image/jpg'
},
EXIF: {},
IPTC: {},
XMP: {},
H264: {},
QuickTime: {}
}
}
exports.metadata = function (opts) {
return new Metadata(exports.exiftool(opts))
}
exports.file = function (opts) {
const exiftool = exports.exiftool(opts)
const meta = new Metadata(exiftool)
return new File(exiftool, meta)
}
exports.date = function (str) {
return new Date(moment(str, 'YYYYMMDD HHmmss').valueOf())
// return new Date(Date.parse(str))
}
exports.photo = function (opts) {
opts = opts || {}
opts.mimeType = 'image/jpg'
return exports.file(opts)
}
exports.video = function (opts) {
opts = opts || {}
opts.mimeType = 'video/mp4'
return exports.file(opts)
}