mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add plugin API tests
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { QueryTypes, Sequelize } from 'sequelize'
|
||||
import { ServerInfo } from '../server/servers'
|
||||
import { PluginType } from '../../models/plugins/plugin.type'
|
||||
|
||||
let sequelizes: { [ id: number ]: Sequelize } = {}
|
||||
|
||||
@@ -72,10 +73,19 @@ async function closeAllSequelize (servers: ServerInfo[]) {
|
||||
}
|
||||
}
|
||||
|
||||
function setPluginVersion (internalServerNumber: number, pluginName: string, newVersion: string) {
|
||||
const seq = getSequelize(internalServerNumber)
|
||||
|
||||
const options = { type: QueryTypes.UPDATE }
|
||||
|
||||
return seq.query(`UPDATE "plugin" SET "version" = '${newVersion}' WHERE "name" = '${pluginName}'`, options)
|
||||
}
|
||||
|
||||
export {
|
||||
setVideoField,
|
||||
setPlaylistField,
|
||||
setActorField,
|
||||
countVideoViewsOf,
|
||||
setPluginVersion,
|
||||
closeAllSequelize
|
||||
}
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
import { makeGetRequest, makePostBodyRequest } from '../requests/requests'
|
||||
import { makeGetRequest, makePostBodyRequest, makePutBodyRequest } from '../requests/requests'
|
||||
import { PluginType } from '../../models/plugins/plugin.type'
|
||||
import { PeertubePluginIndexList } from '../../models/plugins/peertube-plugin-index-list.model'
|
||||
import { readJSON, writeJSON } from 'fs-extra'
|
||||
import { ServerInfo } from './servers'
|
||||
import { root } from '../miscs/miscs'
|
||||
import { join } from 'path'
|
||||
|
||||
function listPlugins (parameters: {
|
||||
url: string,
|
||||
@@ -7,10 +12,11 @@ function listPlugins (parameters: {
|
||||
start?: number,
|
||||
count?: number,
|
||||
sort?: string,
|
||||
type?: PluginType,
|
||||
pluginType?: PluginType,
|
||||
uninstalled?: boolean,
|
||||
expectedStatus?: number
|
||||
}) {
|
||||
const { url, accessToken, start, count, sort, type, expectedStatus = 200 } = parameters
|
||||
const { url, accessToken, start, count, sort, pluginType, uninstalled, expectedStatus = 200 } = parameters
|
||||
const path = '/api/v1/plugins'
|
||||
|
||||
return makeGetRequest({
|
||||
@@ -21,12 +27,45 @@ function listPlugins (parameters: {
|
||||
start,
|
||||
count,
|
||||
sort,
|
||||
type
|
||||
pluginType,
|
||||
uninstalled
|
||||
},
|
||||
statusCodeExpected: expectedStatus
|
||||
})
|
||||
}
|
||||
|
||||
function listAvailablePlugins (parameters: {
|
||||
url: string,
|
||||
accessToken: string,
|
||||
start?: number,
|
||||
count?: number,
|
||||
sort?: string,
|
||||
pluginType?: PluginType,
|
||||
currentPeerTubeEngine?: string,
|
||||
search?: string
|
||||
expectedStatus?: number
|
||||
}) {
|
||||
const { url, accessToken, start, count, sort, pluginType, search, currentPeerTubeEngine, expectedStatus = 200 } = parameters
|
||||
const path = '/api/v1/plugins/available'
|
||||
|
||||
const query: PeertubePluginIndexList = {
|
||||
start,
|
||||
count,
|
||||
sort,
|
||||
pluginType,
|
||||
currentPeerTubeEngine,
|
||||
search
|
||||
}
|
||||
|
||||
return makeGetRequest({
|
||||
url,
|
||||
path,
|
||||
token: accessToken,
|
||||
query,
|
||||
statusCodeExpected: expectedStatus
|
||||
})
|
||||
}
|
||||
|
||||
function getPlugin (parameters: {
|
||||
url: string,
|
||||
accessToken: string,
|
||||
@@ -44,19 +83,21 @@ function getPlugin (parameters: {
|
||||
})
|
||||
}
|
||||
|
||||
function getPluginSettings (parameters: {
|
||||
function updatePluginSettings (parameters: {
|
||||
url: string,
|
||||
accessToken: string,
|
||||
npmName: string,
|
||||
settings: any,
|
||||
expectedStatus?: number
|
||||
}) {
|
||||
const { url, accessToken, npmName, expectedStatus = 200 } = parameters
|
||||
const { url, accessToken, npmName, settings, expectedStatus = 204 } = parameters
|
||||
const path = '/api/v1/plugins/' + npmName + '/settings'
|
||||
|
||||
return makeGetRequest({
|
||||
return makePutBodyRequest({
|
||||
url,
|
||||
path,
|
||||
token: accessToken,
|
||||
fields: { settings },
|
||||
statusCodeExpected: expectedStatus
|
||||
})
|
||||
}
|
||||
@@ -134,12 +175,43 @@ function uninstallPlugin (parameters: {
|
||||
})
|
||||
}
|
||||
|
||||
function getPluginsCSS (url: string) {
|
||||
const path = '/plugins/global.css'
|
||||
|
||||
return makeGetRequest({
|
||||
url,
|
||||
path,
|
||||
statusCodeExpected: 200
|
||||
})
|
||||
}
|
||||
|
||||
function getPackageJSONPath (server: ServerInfo, npmName: string) {
|
||||
return join(root(), 'test' + server.internalServerNumber, 'plugins', 'node_modules', npmName, 'package.json')
|
||||
}
|
||||
|
||||
function updatePluginPackageJSON (server: ServerInfo, npmName: string, json: any) {
|
||||
const path = getPackageJSONPath(server, npmName)
|
||||
|
||||
return writeJSON(path, json)
|
||||
}
|
||||
|
||||
function getPluginPackageJSON (server: ServerInfo, npmName: string) {
|
||||
const path = getPackageJSONPath(server, npmName)
|
||||
|
||||
return readJSON(path)
|
||||
}
|
||||
|
||||
export {
|
||||
listPlugins,
|
||||
listAvailablePlugins,
|
||||
installPlugin,
|
||||
getPluginsCSS,
|
||||
updatePlugin,
|
||||
getPlugin,
|
||||
uninstallPlugin,
|
||||
getPluginSettings,
|
||||
getPluginRegisteredSettings
|
||||
updatePluginSettings,
|
||||
getPluginRegisteredSettings,
|
||||
getPackageJSONPath,
|
||||
updatePluginPackageJSON,
|
||||
getPluginPackageJSON
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user