mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
fix: init AP unit test
This commit is contained in:
parent
a8855e8157
commit
12c0f21a89
1 changed files with 70 additions and 0 deletions
70
tests/ap.test.js
Normal file
70
tests/ap.test.js
Normal file
|
@ -0,0 +1,70 @@
|
|||
const request = require('supertest')
|
||||
const dayjs = require('dayjs')
|
||||
const path = require('path')
|
||||
|
||||
const admin = { username: 'admin', password: 'test', grant_type: 'password', client_id: 'self' }
|
||||
|
||||
let token
|
||||
let app
|
||||
let places = []
|
||||
|
||||
beforeAll(async () => {
|
||||
|
||||
switch (process.env.DB) {
|
||||
case 'mariadb':
|
||||
process.env.config_path = path.resolve(__dirname, './seeds/config.mariadb.json')
|
||||
break
|
||||
case 'postgresql':
|
||||
process.env.config_path = path.resolve(__dirname, './seeds/config.postgres.json')
|
||||
break
|
||||
case 'sqlite':
|
||||
default:
|
||||
process.env.config_path = path.resolve(__dirname, './seeds/config.sqlite.json')
|
||||
}
|
||||
try {
|
||||
app = await require('../server/routes.js').main()
|
||||
const { sequelize } = require('../server/api/models/index')
|
||||
await sequelize.query('DELETE FROM settings')
|
||||
await sequelize.query('DELETE FROM events')
|
||||
await sequelize.query('DELETE FROM user_followers')
|
||||
await sequelize.query('DELETE FROM users')
|
||||
await sequelize.query('DELETE FROM ap_users')
|
||||
await sequelize.query('DELETE FROM instances')
|
||||
await sequelize.query('DELETE FROM tags')
|
||||
await sequelize.query('DELETE FROM places')
|
||||
await sequelize.query('DELETE FROM filters')
|
||||
await sequelize.query('DELETE FROM collections')
|
||||
} catch (e) {
|
||||
console.error(e)
|
||||
}
|
||||
})
|
||||
|
||||
afterAll(async () => {
|
||||
await require('../server/initialize.server.js').shutdown(false)
|
||||
})
|
||||
|
||||
describe('Nodeinfo', () => {
|
||||
test('shoud return a json content', async () => {
|
||||
const response = await request(app).get('/.well-known/nodeinfo')
|
||||
.expect('Content-Type', /application\/json/)
|
||||
.expect(200)
|
||||
|
||||
})
|
||||
|
||||
test('shoud support nodeinfo 2.0 and 2.1', async () => {
|
||||
const response = await request(app).get('/.well-known/nodeinfo')
|
||||
.expect('Content-Type', /application\/json/)
|
||||
.expect(200)
|
||||
expect(response.body.links.find(l => l.rel === 'http://nodeinfo.diaspora.software/ns/schema/2.0').href).toBe('http://localhost:13120/.well-known/nodeinfo/2.0')
|
||||
expect(response.body.links.find(l => l.rel === 'http://nodeinfo.diaspora.software/ns/schema/2.1').href).toBe('http://localhost:13120/.well-known/nodeinfo/2.1')
|
||||
})
|
||||
|
||||
test('shoud implement FEP-2677 - Application Actor', async () => {
|
||||
const response = await request(app).get('/.well-known/nodeinfo')
|
||||
.expect('Content-Type', /application\/json/)
|
||||
.expect(200)
|
||||
expect(response.body.links.find(l => l.rel === 'https://www.w3.org/ns/activitystreams#Application').href).toBe('http://localhost:13120/federation/u/relay')
|
||||
})
|
||||
|
||||
|
||||
})
|
Loading…
Reference in a new issue