Browse Source

test: add unit tests for attachment apis

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/4700/head
Pranav C 2 years ago
parent
commit
0164809629
  1. 2
      packages/nocodb/tests/unit/rest/index.test.ts
  2. 188
      packages/nocodb/tests/unit/rest/tests/attachment.test.ts

2
packages/nocodb/tests/unit/rest/index.test.ts

@ -6,6 +6,7 @@ import columnTypeSpecificTests from './tests/columnTypeSpecific.test';
import tableTests from './tests/table.test'; import tableTests from './tests/table.test';
import tableRowTests from './tests/tableRow.test'; import tableRowTests from './tests/tableRow.test';
import viewRowTests from './tests/viewRow.test'; import viewRowTests from './tests/viewRow.test';
import attachmentTests from './tests/attachment.test';
function restTests() { function restTests() {
authTests(); authTests();
@ -15,6 +16,7 @@ function restTests() {
tableRowTests(); tableRowTests();
viewRowTests(); viewRowTests();
columnTypeSpecificTests(); columnTypeSpecificTests();
attachmentTests();
} }
export default function () { export default function () {

188
packages/nocodb/tests/unit/rest/tests/attachment.test.ts

@ -0,0 +1,188 @@
import { expect } from 'chai'
import fs from 'fs'
import { OrgUserRoles, ProjectRoles } from 'nocodb-sdk'
import path from 'path'
import 'mocha'
import request from 'supertest'
import { createProject } from '../../factory/project'
import init from '../../init'
const FILE_PATH = path.join(__dirname, 'test.txt')
function attachmentTests() {
let context
beforeEach(async function() {
context = await init()
fs.writeFileSync(FILE_PATH, 'test', `utf-8`)
context = await init()
})
afterEach(function() {
fs.unlinkSync(FILE_PATH)
})
it('Upload file - Super admin', async () => {
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
// .set('xc-auth', context.token)
.expect(200)
const attachments = response.body
expect(attachments).to.be.an('array')
expect(attachments[0].title).to.be.eq(path.basename(FILE_PATH))
})
it('Upload file - Without token', async () => {
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
.expect(401)
const msg = response.body.msg
expect(msg).to.be.eq('Unauthorized')
})
it('Upload file - Super admin', async () => {
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
.set('xc-auth', context.token)
.expect(200)
const attachments = response.body
expect(attachments).to.be.an('array')
expect(attachments[0].title).to.be.eq(path.basename(FILE_PATH))
})
it('Upload file - Org level viewer', async () => {
// signup a user
const args = {
email: 'dummyuser@example.com',
password: 'A1234abh2@dsad',
}
const signupResponse = await request(context.app)
.post('/api/v1/auth/user/signup')
.send(args)
.expect(200)
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
.set('xc-auth', signupResponse.body.token)
.expect(400)
const msg = response.body.msg
expect(msg).to.be.eq('Upload not allowed')
})
it('Upload file - Org level creator', async () => {
// signup a user
const args = {
email: 'dummyuser@example.com',
password: 'A1234abh2@dsad',
}
await request(context.app)
.post('/api/v1/auth/user/signup')
.send(args)
.expect(200)
// update user role to creator
const usersListResponse = await request(context.app)
.get('/api/v1/users')
.set('xc-auth', context.token)
.expect(200)
const user = usersListResponse.body.list.find(u => u.email === args.email)
expect(user).to.have.property('roles').to.be.equal(OrgUserRoles.VIEWER)
await request(context.app)
.patch('/api/v1/users/' + user.id)
.set('xc-auth', context.token)
.send({ roles: OrgUserRoles.CREATOR })
.expect(200)
const signinResponse = await request(context.app)
.post('/api/v1/auth/user/signin')
// pass empty data in await request
.send(args)
.expect(200)
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
.set('xc-auth', signinResponse.body.token)
.expect(200)
const attachments = response.body
expect(attachments).to.be.an('array')
expect(attachments[0].title).to.be.eq(path.basename(FILE_PATH))
})
it('Upload file - Org level viewer with editor role in a project', async () => {
// signup a new user
const args = {
email: 'dummyuser@example.com',
password: 'A1234abh2@dsad',
}
await request(context.app)
.post('/api/v1/auth/user/signup')
.send(args)
.expect(200)
const newProject = await createProject(context, {
title: 'NewTitle1',
})
// invite user to project with editor role
await request(context.app)
.post(`/api/v1/db/meta/projects/${newProject.id}/users`)
.set('xc-auth', context.token)
.send({
roles: ProjectRoles.EDITOR,
email: args.email,
project_id: newProject.id,
projectName: newProject.title,
})
.expect(200)
// signin to get user token
const signinResponse = await request(context.app)
.post('/api/v1/auth/user/signin')
// pass empty data in await request
.send(args)
.expect(200)
const response = await request(context.app)
.post('/api/v1/db/storage/upload')
.attach('files', FILE_PATH)
.set('xc-auth', signinResponse.body.token)
.expect(200)
const attachments = response.body
expect(attachments).to.be.an('array')
expect(attachments[0].title).to.be.eq(path.basename(FILE_PATH))
})
}
export default function() {
describe('Attachment', attachmentTests)
}
Loading…
Cancel
Save