mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-16 18:45:53 -07:00
Update tests
This commit is contained in:
parent
ed9e2a72e3
commit
2616e49217
3 changed files with 432 additions and 79 deletions
|
|
@ -68,9 +68,88 @@ const details = () => ({
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const conditionMet = (response, inputsArr, value, condition) => {
|
||||||
|
for (let j = 0; j < inputsArr.length; j += 1) {
|
||||||
|
try {
|
||||||
|
let v = value;
|
||||||
|
let i = inputsArr[j];
|
||||||
|
|
||||||
|
if (
|
||||||
|
condition === '>'
|
||||||
|
|| condition === '>='
|
||||||
|
|| condition === '<'
|
||||||
|
|| condition === '<='
|
||||||
|
|
||||||
|
) {
|
||||||
|
v = Number(value);
|
||||||
|
i = Number(inputsArr[j]);
|
||||||
|
} else if (
|
||||||
|
condition === '=='
|
||||||
|
|| condition === '!='
|
||||||
|
|| condition === 'includes'
|
||||||
|
|| condition === 'not includes'
|
||||||
|
) {
|
||||||
|
v = String(value);
|
||||||
|
i = String(inputsArr[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
response.infoLog += ` Checking property value of ${v} ${condition} input value of ${i} \n`;
|
||||||
|
|
||||||
|
switch (condition) {
|
||||||
|
case '==':
|
||||||
|
if (v === i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case '!=':
|
||||||
|
if (v !== i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case '>':
|
||||||
|
if (v > i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case '>=':
|
||||||
|
if (v >= i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case '<':
|
||||||
|
if (v < i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '<=':
|
||||||
|
if (v <= i) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'includes':
|
||||||
|
if (v.includes(i)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'not includes':
|
||||||
|
if (!v.includes(i)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
const plugin = (file, librarySettings, inputs, otherArguments) => {
|
const plugin = (file, librarySettings, inputs, otherArguments) => {
|
||||||
const { conditionMet } = require('../methods/utils');
|
|
||||||
const lib = require('../methods/lib')();
|
const lib = require('../methods/lib')();
|
||||||
// eslint-disable-next-line no-unused-vars,no-param-reassign
|
// eslint-disable-next-line no-unused-vars,no-param-reassign
|
||||||
inputs = lib.loadDefaultValues(inputs, details);
|
inputs = lib.loadDefaultValues(inputs, details);
|
||||||
|
|
@ -100,26 +179,25 @@ const plugin = (file, librarySettings, inputs, otherArguments) => {
|
||||||
const propertyValues = inputs.propertyValues.trim().split(',');
|
const propertyValues = inputs.propertyValues.trim().split(',');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const fileContainsProperty = conditionMet(propertyValues, file[propertyName], inputs.condition);
|
const isConditionMet = conditionMet(response, propertyValues, file[propertyName], inputs.condition);
|
||||||
|
|
||||||
const message = `File property ${propertyName} of ${file[propertyName]}`
|
|
||||||
+ ` being one of ${propertyValues.join(',')} has`;
|
|
||||||
|
|
||||||
|
response.infoLog += ` isConditionMet: ${isConditionMet} \n`;
|
||||||
|
response.infoLog += ` continueIfPropertyFound: ${inputs.continueIfPropertyFound} \n`;
|
||||||
if (inputs.continueIfPropertyFound === true) {
|
if (inputs.continueIfPropertyFound === true) {
|
||||||
if (fileContainsProperty === true) {
|
if (isConditionMet === true) {
|
||||||
response.processFile = true;
|
response.processFile = true;
|
||||||
response.infoLog += `${message} been found, continuing to next plugin \n`;
|
response.infoLog += 'Continuing to next plugin \n';
|
||||||
} else {
|
} else {
|
||||||
response.processFile = false;
|
response.processFile = false;
|
||||||
response.infoLog += `${message} not been found, breaking out of stack \n`;
|
response.infoLog += 'Breaking out of stack \n';
|
||||||
}
|
}
|
||||||
} else if (inputs.continueIfPropertyFound === false) {
|
} else if (inputs.continueIfPropertyFound === false) {
|
||||||
if (fileContainsProperty === true) {
|
if (isConditionMet === true) {
|
||||||
response.processFile = false;
|
response.processFile = false;
|
||||||
response.infoLog += `${message} been found, breaking out of stack \n`;
|
response.infoLog += 'Breaking out of stack \n';
|
||||||
} else {
|
} else {
|
||||||
response.processFile = true;
|
response.processFile = true;
|
||||||
response.infoLog += `${message} not been found, continuing to next plugin \n`;
|
response.infoLog += 'Continuing to next plugin \n';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|
|
||||||
|
|
@ -18,63 +18,6 @@ const strHasValue = (inputsArr, value, exactMatch) => {
|
||||||
return contains;
|
return contains;
|
||||||
};
|
};
|
||||||
|
|
||||||
const conditionMet = (inputsArr, value, condition) => {
|
|
||||||
for (let j = 0; j < inputsArr.length; j += 1) {
|
|
||||||
try {
|
|
||||||
switch (condition) {
|
|
||||||
case '==':
|
|
||||||
if (inputsArr[j] === String(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case '!=':
|
|
||||||
if (inputsArr[j] !== String(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case '>':
|
|
||||||
if (inputsArr[j] > Number(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case '>=':
|
|
||||||
if (inputsArr[j] >= Number(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case '<':
|
|
||||||
if (inputsArr[j] < Number(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '<=':
|
|
||||||
if (inputsArr[j] <= Number(value)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'includes':
|
|
||||||
if (String(value).includes(inputsArr[j])) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'not includes':
|
|
||||||
if (!String(value).includes(inputsArr[j])) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
strHasValue,
|
strHasValue,
|
||||||
conditionMet,
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property container of mkv being one of mkv,mp4 has been found, breaking out of stack \n',
|
infoLog: ' Checking property value of mkv == input value of mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -30,7 +33,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: true,
|
processFile: true,
|
||||||
infoLog: 'File property container of mkv being one of avi has not been found, continuing to next plugin \n',
|
infoLog: ' Checking property value of mkv == input value of avi \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -48,7 +54,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property container of mkv being one of mkv has been found, breaking out of stack \n',
|
infoLog: ' Checking property value of mkv == input value of mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -66,7 +75,11 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property video_resolution of 1080p being one of 720p,1080p has been found, breaking out of stack \n',
|
infoLog: ' Checking property value of 1080p == input value of 720p \n'
|
||||||
|
+ ' Checking property value of 1080p == input value of 1080p \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -84,7 +97,11 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: true,
|
processFile: true,
|
||||||
infoLog: 'File property video_resolution of 1080p being one of 721p,1081p has not been found, continuing to next plugin \n',
|
infoLog: ' Checking property value of 1080p == input value of 721p \n'
|
||||||
|
+ ' Checking property value of 1080p == input value of 1081p \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -103,7 +120,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property file of C:/Transcode/Source Folder/h264.mkv being one of Source Folder/h264.mkv has been found, breaking out of stack \n',
|
infoLog: ' Checking property value of C:/Transcode/Source Folder/h264.mkv includes input value of Source Folder/h264.mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -123,7 +143,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property container of mkv being one of avi has not been found, breaking out of stack \n',
|
infoLog: ' Checking property value of mkv == input value of avi \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: true \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -141,7 +164,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: true,
|
processFile: true,
|
||||||
infoLog: 'File property container of mkv being one of mkv has been found, continuing to next plugin \n',
|
infoLog: ' Checking property value of mkv == input value of mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: true \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -159,7 +185,10 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: true,
|
processFile: true,
|
||||||
infoLog: 'File property container of mkv being one of mkv,mp4 has been found, continuing to next plugin \n',
|
infoLog: ' Checking property value of mkv == input value of mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: true \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -177,7 +206,11 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: false,
|
processFile: false,
|
||||||
infoLog: 'File property video_resolution of 1080p being one of 721p,1081p has not been found, breaking out of stack \n',
|
infoLog: ' Checking property value of 1080p == input value of 721p \n'
|
||||||
|
+ ' Checking property value of 1080p == input value of 1081p \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: true \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -195,7 +228,306 @@ const tests = [
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
processFile: true,
|
processFile: true,
|
||||||
infoLog: 'File property file of C:/Transcode/Source Folder/h264.mkv being one of Source Folder/h264.mkv has been found, continuing to next plugin \n',
|
infoLog: ' Checking property value of C:/Transcode/Source Folder/h264.mkv includes input value of Source Folder/h264.mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: true \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
// check other conditions
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'mkv',
|
||||||
|
condition: '==',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of mkv == input value of mkv \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'avi',
|
||||||
|
condition: '==',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of mkv == input value of avi \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '60',
|
||||||
|
condition: '>',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 > input value of 60 \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '70',
|
||||||
|
condition: '>',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 > input value of 70 \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '60',
|
||||||
|
condition: '>=',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 >= input value of 60 \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '70',
|
||||||
|
condition: '>=',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 >= input value of 70 \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '60',
|
||||||
|
condition: '<',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 < input value of 60 \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '70',
|
||||||
|
condition: '<',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 < input value of 70 \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '60',
|
||||||
|
condition: '<=',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 <= input value of 60 \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'file_size',
|
||||||
|
propertyValues: '70',
|
||||||
|
condition: '<=',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of 64.9300765991211 <= input value of 70 \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'mk',
|
||||||
|
condition: 'includes',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of mkv includes input value of mk \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'av',
|
||||||
|
condition: 'includes',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of mkv includes input value of av \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'mk',
|
||||||
|
condition: 'not includes',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: true,
|
||||||
|
infoLog: ' Checking property value of mkv not includes input value of mk \n'
|
||||||
|
+ ' isConditionMet: false \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Continuing to next plugin \n',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
input: {
|
||||||
|
file: _.cloneDeep(require('../sampleData/media/sampleH264_2.json')),
|
||||||
|
librarySettings: {},
|
||||||
|
inputs: {
|
||||||
|
propertyName: 'container',
|
||||||
|
propertyValues: 'av',
|
||||||
|
condition: 'not includes',
|
||||||
|
|
||||||
|
},
|
||||||
|
otherArguments: {},
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
processFile: false,
|
||||||
|
infoLog: ' Checking property value of mkv not includes input value of av \n'
|
||||||
|
+ ' isConditionMet: true \n'
|
||||||
|
+ ' continueIfPropertyFound: false \n'
|
||||||
|
+ 'Breaking out of stack \n',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue