mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
102 lines
3.2 KiB
TypeScript
102 lines
3.2 KiB
TypeScript
import {Config} from '../../../../src/common/config/private/Config';
|
|
import {Server} from '../../../../src/backend/server';
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import {expect} from 'chai';
|
|
import {SuperAgentStatic} from 'superagent';
|
|
import {ProjectPath} from '../../../../src/backend/ProjectPath';
|
|
import {DBTestHelper} from '../../DBTestHelper';
|
|
import {ServerConfig} from '../../../../src/common/config/private/PrivateConfig';
|
|
import ReIndexingSensitivity = ServerConfig.ReIndexingSensitivity;
|
|
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
const chai: any = require('chai');
|
|
const chaiHttp = require('chai-http');
|
|
const should = chai.should();
|
|
chai.use(chaiHttp);
|
|
|
|
// to help WebStorm to handle the test cases
|
|
declare let describe: any;
|
|
declare const after: any;
|
|
declare const it: any;
|
|
const tmpDescribe = describe;
|
|
describe = DBTestHelper.describe({memory: true});
|
|
|
|
describe('GalleryRouter', (sqlHelper: DBTestHelper) => {
|
|
describe = tmpDescribe;
|
|
|
|
const tempDir = path.join(__dirname, '../../tmp');
|
|
let server: Server;
|
|
const setUp = async () => {
|
|
await sqlHelper.initDB();
|
|
await fs.promises.rmdir(tempDir, {recursive: true});
|
|
Config.Client.authenticationRequired = false;
|
|
Config.Server.Threading.enabled = false;
|
|
Config.Client.Media.Video.enabled = true;
|
|
Config.Server.Media.folder = path.join(__dirname, '../../assets');
|
|
Config.Server.Media.tempFolder = path.join(__dirname, '../../tmp');
|
|
ProjectPath.reset();
|
|
// ProjectPath.ImageFolder = path.join(__dirname, '../../assets');
|
|
// ProjectPath.TempFolder = tempDir;
|
|
|
|
server = new Server();
|
|
await server.onStarted.wait();
|
|
|
|
};
|
|
const tearDown = async () => {
|
|
await sqlHelper.clearDB();
|
|
};
|
|
|
|
|
|
describe('/GET /api/gallery/content/', async () => {
|
|
|
|
beforeEach(setUp);
|
|
afterEach(tearDown);
|
|
|
|
it('should load gallery', async () => {
|
|
const result = await (chai.request(server.App) as SuperAgentStatic)
|
|
.get('/api/gallery/content/');
|
|
|
|
(result.should as any).have.status(200);
|
|
expect(result.body.error).to.be.equal(null);
|
|
expect(result.body.result).to.not.be.equal(null);
|
|
expect(result.body.result.directory).to.not.be.equal(null);
|
|
});
|
|
|
|
it('should load gallery twice (to force loading form db)', async () => {
|
|
Config.Server.Indexing.reIndexingSensitivity = ReIndexingSensitivity.low;
|
|
const _ = await (chai.request(server.App) as SuperAgentStatic)
|
|
.get('/api/gallery/content/orientation');
|
|
|
|
const result = await (chai.request(server.App) as SuperAgentStatic)
|
|
.get('/api/gallery/content/orientation');
|
|
|
|
(result.should as any).have.status(200);
|
|
expect(result.body.error).to.be.equal(null);
|
|
expect(result.body.result).to.not.be.equal(null);
|
|
expect(result.body.result.directory).to.not.be.equal(null);
|
|
});
|
|
|
|
|
|
});
|
|
|
|
describe('/GET /api/gallery/content/video.mp4/bestFit', async () => {
|
|
|
|
beforeEach(setUp);
|
|
afterEach(tearDown);
|
|
|
|
it('should get video without transcoding', async () => {
|
|
const result = await (chai.request(server.App) as SuperAgentStatic)
|
|
.get('/api/gallery/content/video.mp4/bestFit');
|
|
|
|
(result.should as any).have.status(200);
|
|
expect(result.body).to.be.instanceof(Buffer);
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|