Files
Multi-Hoster-Upload/tests/upload-manager-recovery-claims.test.js
T
Sucukdeluxe c78160a521 Harden batch-wide recovery identity claims
Scope remote code ownership to normalized hoster and account identities while retaining title-only recovery serialization and canonical Unicode title matching.

Mark post-upload ambiguity and duplicate identities as uncertain so retries, account fallback, and later same-title jobs fail closed instead of reporting unsafe success.

Acquire recovery title leases before hoster and global semaphores, revalidate failed-account overrides before upload, and clear claim state at batch boundaries.

Add deterministic concurrent coverage for same-code rejection, distinct-code parallel success, uncertainty propagation, semaphore fairness, account isolation, Unicode equivalence, and registry lifetime.
2026-08-13 23:09:03 +02:00

490 lines
15 KiB
JavaScript

const { after, before, test } = require('node:test');
const assert = require('node:assert/strict');
const fs = require('node:fs');
const os = require('node:os');
const path = require('node:path');
const hosters = require('../lib/hosters');
const VoeUploader = require('../lib/voe-upload');
const VidmolyUploader = require('../lib/vidmoly-upload');
const originalUploadFile = hosters.uploadFile;
const originalPrefetchBaseline = hosters.prefetchBaseline;
let tempRoot;
let firstPath;
let secondPath;
let distinctPath;
let UploadManager;
before(() => {
tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), 'mhu-manager-recovery-'));
const firstDir = path.join(tempRoot, 'first');
const secondDir = path.join(tempRoot, 'second');
fs.mkdirSync(firstDir);
fs.mkdirSync(secondDir);
firstPath = path.join(firstDir, 'Shared Episode.mkv');
secondPath = path.join(secondDir, 'shared-episode.mp4');
distinctPath = path.join(secondDir, 'different-title.mkv');
fs.writeFileSync(firstPath, Buffer.alloc(1024, 1));
fs.writeFileSync(secondPath, Buffer.alloc(1024, 2));
fs.writeFileSync(distinctPath, Buffer.alloc(1024, 3));
});
after(() => {
hosters.uploadFile = originalUploadFile;
hosters.prefetchBaseline = originalPrefetchBaseline;
delete require.cache[require.resolve('../lib/upload-manager')];
fs.rmSync(tempRoot, { recursive: true, force: true });
});
function loadManager(uploadFile = originalUploadFile) {
hosters.uploadFile = uploadFile;
hosters.prefetchBaseline = async () => new Set();
delete require.cache[require.resolve('../lib/upload-manager')];
UploadManager = require('../lib/upload-manager');
}
function settings(hoster, parallelCount) {
return {
[hoster]: {
retries: 0,
parallelCount,
maxSpeedKbs: 0,
restartBelowKbs: 0,
timeIntervalSec: 0,
maxSizeMb: 0
}
};
}
async function runBatch(manager, tasks, options) {
let summary;
manager.once('batch-done', value => {
summary = value;
});
await manager.startBatch(tasks, options);
return summary;
}
async function withUploaderMethods(Uploader, upload, operation) {
const originalLogin = Uploader.prototype.login;
const originalUpload = Uploader.prototype.upload;
Uploader.prototype.login = async function () {};
Uploader.prototype.upload = upload;
try {
return await operation();
} finally {
Uploader.prototype.login = originalLogin;
Uploader.prototype.upload = originalUpload;
}
}
function waitFor(promise, timeoutMs, message) {
let timer;
return Promise.race([
promise,
new Promise((_, reject) => {
timer = setTimeout(() => reject(new Error(message)), timeoutMs);
})
]).finally(() => clearTimeout(timer));
}
async function assertTitleWaiterLeavesSlotAvailable(hosterParallel, globalSettings = {}) {
let releaseFirst;
let markFirstStarted;
let markIndependentStarted;
const firstGate = new Promise(resolve => {
releaseFirst = resolve;
});
const firstStarted = new Promise(resolve => {
markFirstStarted = resolve;
});
const independentStarted = new Promise(resolve => {
markIndependentStarted = resolve;
});
let sequence = 0;
loadManager(async (hoster, file) => {
if (file === firstPath) {
markFirstStarted();
await firstGate;
}
if (file === distinctPath) markIndependentStarted();
sequence++;
return {
file_code: `ADMISSION_${sequence}`,
download_url: `https://byse.sx/d/ADMISSION_${sequence}`
};
});
const manager = new UploadManager(settings('byse.sx', hosterParallel), globalSettings);
const batch = runBatch(manager, [
{ jobId: 'admission-first', file: firstPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' }
]);
await waitFor(firstStarted, 500, 'First upload did not start');
const added = manager.addJobs([
{ jobId: 'admission-waiter', file: secondPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' },
{ jobId: 'admission-independent', file: distinctPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' }
]);
assert.equal(added.added, 2);
let admissionError = null;
try {
await waitFor(independentStarted, 500, 'Independent title was blocked behind a title-lock waiter');
} catch (err) {
admissionError = err;
} finally {
releaseFirst();
}
const summary = await batch;
if (admissionError) throw admissionError;
assert.equal(summary.succeeded, 3);
}
test('a batch shares recovery claims across normalized same-name jobs', async () => {
let unsafeCalls = 0;
loadManager(async (hoster, file, apiKey, onProgress, signal, throttle, options) => {
const claim = options && options.recoveryClaim;
if (claim && claim.reserve('SHARED_REMOTE_CODE')) {
return {
file_code: 'SHARED_REMOTE_CODE',
download_url: 'https://byse.sx/d/SHARED_REMOTE_CODE'
};
}
if (!claim) {
unsafeCalls++;
return {
file_code: `UNSAFE_${unsafeCalls}`,
download_url: `https://byse.sx/d/UNSAFE_${unsafeCalls}`
};
}
const error = new Error('Remote recovery candidate already claimed');
error.hosterTransient = true;
throw error;
});
const manager = new UploadManager(settings('byse.sx', 2));
const summary = await runBatch(manager, [
{ jobId: 'same-name-a', file: firstPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' },
{ jobId: 'same-name-b', file: secondPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' }
]);
assert.equal(summary.succeeded, 1);
assert.equal(summary.failed, 1);
});
test('recovery claims stay isolated between accounts', async () => {
loadManager(async (hoster, file, apiKey, onProgress, signal, throttle, options) => {
if (!options || !options.recoveryClaim) {
throw new Error('Missing recovery claim');
}
if (!options.recoveryClaim.reserve('SHARED_REMOTE_CODE')) {
const error = new Error('Remote recovery candidate already claimed');
error.hosterTransient = true;
throw error;
}
return {
file_code: 'SHARED_REMOTE_CODE',
download_url: 'https://byse.sx/d/SHARED_REMOTE_CODE'
};
});
const manager = new UploadManager(settings('byse.sx', 2));
const summary = await runBatch(manager, [
{ jobId: 'account-a', file: firstPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_A' },
{ jobId: 'account-b', file: secondPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_B' }
]);
assert.equal(summary.succeeded, 2);
assert.equal(summary.failed, 0);
});
test('normalized same-name recovery sections never overlap', async () => {
let active = 0;
let maximumActive = 0;
let sequence = 0;
loadManager(async () => {
active++;
maximumActive = Math.max(maximumActive, active);
await new Promise(resolve => setTimeout(resolve, 20));
active--;
sequence++;
return {
file_code: `SERIAL_${sequence}`,
download_url: `https://byse.sx/d/SERIAL_${sequence}`
};
});
const manager = new UploadManager(settings('byse.sx', 2));
const summary = await runBatch(manager, [
{ jobId: 'serialized-a', file: firstPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' },
{ jobId: 'serialized-b', file: secondPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' }
]);
assert.equal(summary.succeeded, 2);
assert.equal(maximumActive, 1);
});
test('a title-lock waiter does not consume a scarce upload slot', async () => {
await assertTitleWaiterLeavesSlotAvailable(2);
});
test('a title-lock waiter does not consume a scarce global upload slot', async () => {
await assertTitleWaiterLeavesSlotAvailable(3, { parallelUploadCount: 2 });
});
test('an uncertain remote commit blocks retries, account fallback, and later same-title success', async () => {
const calls = [];
let markFirstStarted;
let releaseUncertain;
const firstStarted = new Promise(resolve => {
markFirstStarted = resolve;
});
const uncertainGate = new Promise(resolve => {
releaseUncertain = resolve;
});
loadManager(async (hoster, file, apiKey) => {
calls.push({ file, apiKey });
if (file === firstPath) {
markFirstStarted();
await uncertainGate;
const error = new Error('Remote commit could not be confirmed');
error.remoteCommitUncertain = true;
throw error;
}
return {
file_code: 'LATE_REMOTE_CODE',
download_url: 'https://byse.sx/d/LATE_REMOTE_CODE'
};
});
const hosterSettings = settings('byse.sx', 2);
hosterSettings['byse.sx'].retries = 2;
const manager = new UploadManager(hosterSettings);
const fallback = { id: 'ACCOUNT_B', apiKey: 'ACCOUNT_KEY_B' };
const batch = runBatch(manager, [
{
jobId: 'uncertain-first',
file: firstPath,
hoster: 'byse.sx',
accountId: 'ACCOUNT_A',
apiKey: 'ACCOUNT_KEY_A'
}
], { primeOverrides: [['byse.sx', fallback]] });
await waitFor(firstStarted, 500, 'Uncertain predecessor did not start');
const added = manager.addJobs([
{
jobId: 'uncertain-later',
file: secondPath,
hoster: 'byse.sx',
accountId: 'ACCOUNT_A',
apiKey: 'ACCOUNT_KEY_A'
}
]);
assert.equal(added.added, 1);
releaseUncertain();
const summary = await batch;
assert.equal(summary.succeeded, 0);
assert.equal(summary.failed, 2);
assert.deepEqual(calls, [{ file: firstPath, apiKey: 'ACCOUNT_KEY_A' }]);
});
test('recovery claims do not leak into a later batch on the same manager', async () => {
loadManager(async (hoster, file, apiKey, onProgress, signal, throttle, options) => {
if (!options.recoveryClaim.reserve('REUSED_BATCH_CODE')) {
const error = new Error('Remote recovery candidate already claimed');
error.hosterTransient = true;
throw error;
}
return {
file_code: 'REUSED_BATCH_CODE',
download_url: 'https://byse.sx/d/REUSED_BATCH_CODE'
};
});
const manager = new UploadManager(settings('byse.sx', 1));
const task = { jobId: 'batch-one', file: firstPath, hoster: 'byse.sx', apiKey: 'ACCOUNT_KEY' };
const first = await runBatch(manager, [task]);
const second = await runBatch(manager, [{ ...task, jobId: 'batch-two' }]);
assert.equal(first.succeeded, 1);
assert.equal(second.succeeded, 1);
});
for (const scenario of [
{
label: 'VOE',
hoster: 'voe.sx',
Uploader: VoeUploader,
sharedCode: 'SHAREDVOE01',
distinctCodes: ['VOEDISTINCT1', 'VOEDISTINCT2'],
buildResult(uploader, code) {
return uploader._buildUrls(code);
}
},
{
label: 'Vidmoly',
hoster: 'vidmoly.me',
Uploader: VidmolyUploader,
sharedCode: 'SHAREDVID001',
distinctCodes: ['VIDDISTINCT1', 'VIDDISTINCT2'],
buildResult(uploader, code) {
return uploader._buildUrlsFromCode(code);
}
}
]) {
test(`${scenario.label} uploader instances reject a duplicate direct remote code for same-name sources`, async () => {
await withUploaderMethods(
scenario.Uploader,
async function () {
await new Promise(resolve => setImmediate(resolve));
return scenario.buildResult(this, scenario.sharedCode);
},
async () => {
loadManager();
const manager = new UploadManager(settings(scenario.hoster, 2));
const summary = await runBatch(manager, [
{
jobId: `${scenario.label}-same-name-a`,
file: firstPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
},
{
jobId: `${scenario.label}-same-name-b`,
file: secondPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
}
]);
assert.equal(summary.succeeded, 1);
assert.equal(summary.failed, 1);
}
);
});
test(`${scenario.label} uploader instances isolate direct remote code claims between accounts`, async () => {
await withUploaderMethods(
scenario.Uploader,
async function () {
return scenario.buildResult(this, scenario.sharedCode);
},
async () => {
loadManager();
const manager = new UploadManager(settings(scenario.hoster, 2));
const summary = await runBatch(manager, [
{
jobId: `${scenario.label}-account-a`,
file: firstPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT_A',
username: 'account-a@example.test',
password: 'password'
},
{
jobId: `${scenario.label}-account-b`,
file: secondPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT_B',
username: 'account-b@example.test',
password: 'password'
}
]);
assert.equal(summary.succeeded, 2);
assert.equal(summary.failed, 0);
}
);
});
test(`${scenario.label} uploader instances reject one direct remote code across different titles`, async () => {
await withUploaderMethods(
scenario.Uploader,
async function () {
await new Promise(resolve => setImmediate(resolve));
return scenario.buildResult(this, scenario.sharedCode);
},
async () => {
loadManager();
const manager = new UploadManager(settings(scenario.hoster, 2));
const summary = await runBatch(manager, [
{
jobId: `${scenario.label}-different-title-a`,
file: firstPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
},
{
jobId: `${scenario.label}-different-title-b`,
file: distinctPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
}
]);
assert.equal(summary.succeeded, 1);
assert.equal(summary.failed, 1);
}
);
});
test(`${scenario.label} uploader instances preserve parallel success for distinct remote identities`, async () => {
let active = 0;
let maximumActive = 0;
let started = 0;
let releaseBoth;
const bothStarted = new Promise(resolve => {
releaseBoth = resolve;
});
await withUploaderMethods(
scenario.Uploader,
async function (filePath) {
active++;
started++;
maximumActive = Math.max(maximumActive, active);
if (started === 2) releaseBoth();
try {
await waitFor(bothStarted, 500, 'Distinct uploads did not overlap');
const code = filePath === firstPath ? scenario.distinctCodes[0] : scenario.distinctCodes[1];
return scenario.buildResult(this, code);
} finally {
active--;
}
},
async () => {
loadManager();
const manager = new UploadManager(settings(scenario.hoster, 2));
const summary = await runBatch(manager, [
{
jobId: `${scenario.label}-distinct-a`,
file: firstPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
},
{
jobId: `${scenario.label}-distinct-b`,
file: distinctPath,
hoster: scenario.hoster,
accountId: 'LOGIN_ACCOUNT',
username: 'account@example.test',
password: 'password'
}
]);
assert.equal(summary.succeeded, 2);
assert.equal(summary.failed, 0);
assert.equal(maximumActive, 2);
}
);
});
}