mirror of
https://github.com/caprover/caprover
synced 2025-12-08 04:25:33 +00:00
101 lines
3.0 KiB
TypeScript
101 lines
3.0 KiB
TypeScript
import BackupManager from '../src/user/system/BackupManager'
|
|
import * as CaptainConstants from '../src/utils/CaptainConstants'
|
|
import {
|
|
fstat,
|
|
copy,
|
|
ensureFile,
|
|
removeSync,
|
|
ensureDir,
|
|
readJson,
|
|
} from 'fs-extra'
|
|
import Utils from '../src/utils/Utils'
|
|
import { RestoringInfo } from '../src/models/BackupMeta'
|
|
import { isDeepStrictEqual } from 'util'
|
|
const BACKUP_FILE_PATH_ABSOLUTE = '/captain/backup.tar'
|
|
|
|
function cleanup() {
|
|
return Promise.resolve()
|
|
.then(function() {
|
|
return ensureFile(BACKUP_FILE_PATH_ABSOLUTE)
|
|
})
|
|
.then(function() {
|
|
return removeSync(BACKUP_FILE_PATH_ABSOLUTE)
|
|
})
|
|
.then(function() {
|
|
return ensureDir(CaptainConstants.restoreDirectoryPath)
|
|
})
|
|
.then(function() {
|
|
return removeSync(CaptainConstants.restoreDirectoryPath)
|
|
})
|
|
}
|
|
|
|
beforeEach(() => {
|
|
return cleanup()
|
|
})
|
|
|
|
afterEach(() => {
|
|
return cleanup()
|
|
})
|
|
|
|
test('No backup file', () => {
|
|
const bk = new BackupManager()
|
|
return Promise.resolve()
|
|
.then(function() {
|
|
return bk.checkAndPrepareRestoration()
|
|
})
|
|
.then(function(data) {
|
|
expect(data).toBeFalsy()
|
|
})
|
|
})
|
|
|
|
test('Test backup file', () => {
|
|
const bk = new BackupManager()
|
|
return Promise.resolve()
|
|
.then(function() {
|
|
return copy(`${__dirname}/backup.tar`, BACKUP_FILE_PATH_ABSOLUTE)
|
|
})
|
|
.then(function() {
|
|
return bk.checkAndPrepareRestoration()
|
|
})
|
|
.then(function() {
|
|
return readJson(
|
|
CaptainConstants.restoreDirectoryPath +
|
|
'/restore-instructions.json'
|
|
)
|
|
})
|
|
.then(function(ret: RestoringInfo) {
|
|
const expectedValue = {
|
|
nodesMapping: [
|
|
{
|
|
newIp: 'CURRENT_NODE_DONT_CHANGE',
|
|
oldIp: '123.123.123.123',
|
|
privateKeyPath: '',
|
|
user: '',
|
|
},
|
|
],
|
|
oldNodesForReference: [
|
|
{
|
|
nodeData: {
|
|
nodeId: '123456789',
|
|
type: 'manager',
|
|
isLeader: true,
|
|
hostname: 'test',
|
|
architecture: 'x86_64',
|
|
operatingSystem: 'linux',
|
|
nanoCpu: 8000000000,
|
|
memoryBytes: 8241434624,
|
|
dockerEngineVersion: '18.09.2',
|
|
ip: '123.123.123.123',
|
|
state: 'ready',
|
|
status: 'active',
|
|
},
|
|
appsLockOnThisNode: ['pers1'],
|
|
},
|
|
],
|
|
}
|
|
expect(isDeepStrictEqual(ret, expectedValue)).toBe(true)
|
|
ret.nodesMapping[0].oldIp += ' '
|
|
expect(isDeepStrictEqual(ret, expectedValue)).toBe(false)
|
|
})
|
|
})
|