570 lines
17 KiB
JavaScript
570 lines
17 KiB
JavaScript
/* istanbul ignore file */
|
|
const expect = require('chai').expect
|
|
|
|
const { beforeEachContext } = require('@/test/hooks')
|
|
|
|
const { createObject } = require('../services/objects')
|
|
|
|
const {
|
|
getCommitsTotalCountByBranchName,
|
|
getCommitsByBranchName,
|
|
getCommitsByStreamId
|
|
} = require('../services/commits')
|
|
const {
|
|
createBranchAndNotifyFactory
|
|
} = require('@/modules/core/services/branch/management')
|
|
const cryptoRandomString = require('crypto-random-string')
|
|
const {
|
|
createBranchFactory,
|
|
getStreamBranchByNameFactory,
|
|
markCommitBranchUpdatedFactory,
|
|
getBranchByIdFactory
|
|
} = require('@/modules/core/repositories/branches')
|
|
const { db } = require('@/db/knex')
|
|
const {
|
|
addBranchCreatedActivity
|
|
} = require('@/modules/activitystream/services/branchActivity')
|
|
const {
|
|
getCommitFactory,
|
|
deleteCommitFactory,
|
|
createCommitFactory,
|
|
insertStreamCommitsFactory,
|
|
insertBranchCommitsFactory,
|
|
getCommitBranchFactory,
|
|
switchCommitBranchFactory,
|
|
updateCommitFactory,
|
|
getStreamCommitCountFactory,
|
|
legacyGetPaginatedUserCommitsPage
|
|
} = require('@/modules/core/repositories/commits')
|
|
const {
|
|
deleteCommitAndNotifyFactory,
|
|
createCommitByBranchIdFactory,
|
|
createCommitByBranchNameFactory,
|
|
updateCommitAndNotifyFactory
|
|
} = require('@/modules/core/services/commit/management')
|
|
const {
|
|
getStreamFactory,
|
|
getCommitStreamFactory,
|
|
createStreamFactory,
|
|
markCommitStreamUpdatedFactory
|
|
} = require('@/modules/core/repositories/streams')
|
|
const {
|
|
addCommitUpdatedActivityFactory,
|
|
addCommitDeletedActivityFactory
|
|
} = require('@/modules/activitystream/services/commitActivity')
|
|
const { VersionsEmitter } = require('@/modules/core/events/versionsEmitter')
|
|
const { getObjectFactory } = require('@/modules/core/repositories/objects')
|
|
const {
|
|
legacyCreateStreamFactory,
|
|
createStreamReturnRecordFactory
|
|
} = require('@/modules/core/services/streams/management')
|
|
const {
|
|
inviteUsersToProjectFactory
|
|
} = require('@/modules/serverinvites/services/projectInviteManagement')
|
|
const {
|
|
createAndSendInviteFactory
|
|
} = require('@/modules/serverinvites/services/creation')
|
|
const {
|
|
findUserByTargetFactory,
|
|
insertInviteAndDeleteOldFactory,
|
|
deleteServerOnlyInvitesFactory,
|
|
updateAllInviteTargetsFactory
|
|
} = require('@/modules/serverinvites/repositories/serverInvites')
|
|
const {
|
|
collectAndValidateCoreTargetsFactory
|
|
} = require('@/modules/serverinvites/services/coreResourceCollection')
|
|
const {
|
|
buildCoreInviteEmailContentsFactory
|
|
} = require('@/modules/serverinvites/services/coreEmailContents')
|
|
const { getEventBus } = require('@/modules/shared/services/eventBus')
|
|
const { ProjectsEmitter } = require('@/modules/core/events/projectsEmitter')
|
|
const {
|
|
addStreamCreatedActivityFactory
|
|
} = require('@/modules/activitystream/services/streamActivity')
|
|
const { saveActivityFactory } = require('@/modules/activitystream/repositories')
|
|
const { publish } = require('@/modules/shared/utils/subscriptions')
|
|
const {
|
|
getUsersFactory,
|
|
getUserFactory,
|
|
storeUserFactory,
|
|
countAdminUsersFactory,
|
|
storeUserAclFactory
|
|
} = require('@/modules/core/repositories/users')
|
|
const {
|
|
findEmailFactory,
|
|
createUserEmailFactory,
|
|
ensureNoPrimaryEmailForUserFactory
|
|
} = require('@/modules/core/repositories/userEmails')
|
|
const {
|
|
requestNewEmailVerificationFactory
|
|
} = require('@/modules/emails/services/verification/request')
|
|
const {
|
|
deleteOldAndInsertNewVerificationFactory
|
|
} = require('@/modules/emails/repositories')
|
|
const { renderEmail } = require('@/modules/emails/services/emailRendering')
|
|
const { sendEmail } = require('@/modules/emails/services/sending')
|
|
const { createUserFactory } = require('@/modules/core/services/users/management')
|
|
const {
|
|
validateAndCreateUserEmailFactory
|
|
} = require('@/modules/core/services/userEmails')
|
|
const {
|
|
finalizeInvitedServerRegistrationFactory
|
|
} = require('@/modules/serverinvites/services/processing')
|
|
const { UsersEmitter } = require('@/modules/core/events/usersEmitter')
|
|
const { getServerInfoFactory } = require('@/modules/core/repositories/server')
|
|
|
|
const getServerInfo = getServerInfoFactory({ db })
|
|
const getUser = getUserFactory({ db })
|
|
const getUsers = getUsersFactory({ db })
|
|
const markCommitStreamUpdated = markCommitStreamUpdatedFactory({ db })
|
|
const getCommitStream = getCommitStreamFactory({ db })
|
|
const getStream = getStreamFactory({ db })
|
|
const createBranch = createBranchFactory({ db })
|
|
const createBranchAndNotify = createBranchAndNotifyFactory({
|
|
createBranch,
|
|
getStreamBranchByName: getStreamBranchByNameFactory({ db }),
|
|
addBranchCreatedActivity
|
|
})
|
|
const getCommit = getCommitFactory({ db })
|
|
const deleteCommitAndNotify = deleteCommitAndNotifyFactory({
|
|
getCommit,
|
|
markCommitStreamUpdated,
|
|
markCommitBranchUpdated: markCommitBranchUpdatedFactory({ db }),
|
|
deleteCommit: deleteCommitFactory({ db }),
|
|
addCommitDeletedActivity: addCommitDeletedActivityFactory({
|
|
saveActivity: saveActivityFactory({ db }),
|
|
publish
|
|
})
|
|
})
|
|
|
|
const getObject = getObjectFactory({ db })
|
|
const createCommitByBranchId = createCommitByBranchIdFactory({
|
|
createCommit: createCommitFactory({ db }),
|
|
getObject,
|
|
getBranchById: getBranchByIdFactory({ db }),
|
|
insertStreamCommits: insertStreamCommitsFactory({ db }),
|
|
insertBranchCommits: insertBranchCommitsFactory({ db }),
|
|
markCommitStreamUpdated,
|
|
markCommitBranchUpdated: markCommitBranchUpdatedFactory({ db }),
|
|
versionsEventEmitter: VersionsEmitter.emit,
|
|
addCommitCreatedActivity: addStreamCreatedActivityFactory({
|
|
saveActivity: saveActivityFactory({ db }),
|
|
publish
|
|
})
|
|
})
|
|
|
|
const createCommitByBranchName = createCommitByBranchNameFactory({
|
|
createCommitByBranchId,
|
|
getStreamBranchByName: getStreamBranchByNameFactory({ db }),
|
|
getBranchById: getBranchByIdFactory({ db })
|
|
})
|
|
|
|
const updateCommitAndNotify = updateCommitAndNotifyFactory({
|
|
getCommit: getCommitFactory({ db }),
|
|
getStream,
|
|
getCommitStream,
|
|
getStreamBranchByName: getStreamBranchByNameFactory({ db }),
|
|
getCommitBranch: getCommitBranchFactory({ db }),
|
|
switchCommitBranch: switchCommitBranchFactory({ db }),
|
|
updateCommit: updateCommitFactory({ db }),
|
|
addCommitUpdatedActivity: addCommitUpdatedActivityFactory({
|
|
saveActivity: saveActivityFactory({ db }),
|
|
publish
|
|
}),
|
|
markCommitStreamUpdated,
|
|
markCommitBranchUpdated: markCommitBranchUpdatedFactory({ db })
|
|
})
|
|
const getStreamCommitCount = getStreamCommitCountFactory({ db })
|
|
|
|
const addStreamCreatedActivity = addStreamCreatedActivityFactory({
|
|
saveActivity: saveActivityFactory({ db }),
|
|
publish
|
|
})
|
|
const createStream = legacyCreateStreamFactory({
|
|
createStreamReturnRecord: createStreamReturnRecordFactory({
|
|
inviteUsersToProject: inviteUsersToProjectFactory({
|
|
createAndSendInvite: createAndSendInviteFactory({
|
|
findUserByTarget: findUserByTargetFactory({ db }),
|
|
insertInviteAndDeleteOld: insertInviteAndDeleteOldFactory({ db }),
|
|
collectAndValidateResourceTargets: collectAndValidateCoreTargetsFactory({
|
|
getStream
|
|
}),
|
|
buildInviteEmailContents: buildCoreInviteEmailContentsFactory({
|
|
getStream
|
|
}),
|
|
emitEvent: ({ eventName, payload }) =>
|
|
getEventBus().emit({
|
|
eventName,
|
|
payload
|
|
}),
|
|
getUser,
|
|
getServerInfo
|
|
}),
|
|
getUsers
|
|
}),
|
|
createStream: createStreamFactory({ db }),
|
|
createBranch: createBranchFactory({ db }),
|
|
addStreamCreatedActivity,
|
|
projectsEventsEmitter: ProjectsEmitter.emit
|
|
})
|
|
})
|
|
|
|
const findEmail = findEmailFactory({ db })
|
|
const requestNewEmailVerification = requestNewEmailVerificationFactory({
|
|
findEmail,
|
|
getUser: getUserFactory({ db }),
|
|
getServerInfo,
|
|
deleteOldAndInsertNewVerification: deleteOldAndInsertNewVerificationFactory({ db }),
|
|
renderEmail,
|
|
sendEmail
|
|
})
|
|
const createUser = createUserFactory({
|
|
getServerInfo,
|
|
findEmail,
|
|
storeUser: storeUserFactory({ db }),
|
|
countAdminUsers: countAdminUsersFactory({ db }),
|
|
storeUserAcl: storeUserAclFactory({ db }),
|
|
validateAndCreateUserEmail: validateAndCreateUserEmailFactory({
|
|
createUserEmail: createUserEmailFactory({ db }),
|
|
ensureNoPrimaryEmailForUser: ensureNoPrimaryEmailForUserFactory({ db }),
|
|
findEmail,
|
|
updateEmailInvites: finalizeInvitedServerRegistrationFactory({
|
|
deleteServerOnlyInvites: deleteServerOnlyInvitesFactory({ db }),
|
|
updateAllInviteTargets: updateAllInviteTargetsFactory({ db })
|
|
}),
|
|
requestNewEmailVerification
|
|
}),
|
|
usersEventsEmitter: UsersEmitter.emit
|
|
})
|
|
const getCommitsByUserId = legacyGetPaginatedUserCommitsPage({ db })
|
|
|
|
describe('Commits @core-commits', () => {
|
|
const user = {
|
|
name: 'Dimitrie Stefanescu',
|
|
email: 'didimitrie4342@gmail.com',
|
|
password: 'sn3aky-1337-b1m'
|
|
}
|
|
|
|
const stream = {
|
|
name: 'Test Stream References',
|
|
description: 'Whatever goes in here usually...'
|
|
}
|
|
|
|
const testObject = {
|
|
foo: 'bar',
|
|
baz: 'qux'
|
|
}
|
|
|
|
const testObject2 = {
|
|
foo: 'bar3',
|
|
baz: 'qux3'
|
|
}
|
|
|
|
const testObject3 = {
|
|
foo: 'bar4',
|
|
baz: 'qux5'
|
|
}
|
|
|
|
const generateObject = async (streamId = stream.id, object = testObject) =>
|
|
await createObject({ streamId, object })
|
|
const generateStream = async (streamBase = stream, ownerId = user.id) =>
|
|
await createStream({ ...streamBase, ownerId })
|
|
|
|
let commitId1, commitId2, commitId3
|
|
|
|
before(async () => {
|
|
await beforeEachContext()
|
|
|
|
user.id = await createUser(user)
|
|
stream.id = await createStream({ ...stream, ownerId: user.id })
|
|
|
|
const testObjectId = await createObject({ streamId: stream.id, object: testObject })
|
|
const testObject2Id = await createObject({
|
|
streamId: stream.id,
|
|
object: testObject2
|
|
})
|
|
const testObject3Id = await createObject({
|
|
streamId: stream.id,
|
|
object: testObject3
|
|
})
|
|
|
|
commitId1 = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'first commit',
|
|
sourceApplication: 'tests',
|
|
objectId: testObjectId,
|
|
authorId: user.id
|
|
})
|
|
).id
|
|
|
|
commitId2 = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'second commit',
|
|
sourceApplication: 'tests',
|
|
objectId: testObject2Id,
|
|
authorId: user.id,
|
|
parents: [commitId1]
|
|
})
|
|
).id
|
|
|
|
commitId3 = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'third commit',
|
|
sourceApplication: 'tests',
|
|
objectId: testObject3Id,
|
|
authorId: user.id,
|
|
parents: [commitId1, commitId2]
|
|
})
|
|
).id
|
|
})
|
|
|
|
it('Should create a commit by branch name', async () => {
|
|
const objectId = await generateObject()
|
|
const id = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'first commit',
|
|
sourceApplication: 'tests',
|
|
objectId,
|
|
authorId: user.id
|
|
})
|
|
).id
|
|
expect(id).to.be.a.string
|
|
})
|
|
|
|
// support SKDs not being able to handle the fe1 - fe2 link transition
|
|
it('Should create a commit by branch id', async () => {
|
|
const objectId = await generateObject()
|
|
const branch = await createBranchAndNotify(
|
|
{ name: 'foobar', projectId: stream.id },
|
|
user.id
|
|
)
|
|
const id = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: branch.id,
|
|
message: 'first commit',
|
|
sourceApplication: 'tests',
|
|
objectId,
|
|
authorId: user.id
|
|
})
|
|
).id
|
|
expect(id).to.be.a.string
|
|
})
|
|
|
|
it('Should fail to create a commit if the branch is not a valid name or id', async () => {
|
|
const objectId = await generateObject()
|
|
try {
|
|
const id = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: cryptoRandomString({ length: 10 }),
|
|
message: 'first commit',
|
|
sourceApplication: 'tests',
|
|
objectId,
|
|
authorId: user.id
|
|
})
|
|
).id
|
|
expect(id).null
|
|
} catch (error) {
|
|
expect(error.message).contains('Failed to find branch with name or id')
|
|
}
|
|
})
|
|
|
|
it('Should create a commit with a previous commit id', async () => {
|
|
const objectId = await generateObject()
|
|
const objectId2 = await generateObject()
|
|
|
|
const id = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'second commit',
|
|
sourceApplication: 'tests',
|
|
objectId,
|
|
authorId: user.id,
|
|
parents: [commitId1]
|
|
})
|
|
).id
|
|
expect(id).to.be.a.string
|
|
|
|
const id2 = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'third commit',
|
|
sourceApplication: 'tests',
|
|
objectId: objectId2,
|
|
authorId: user.id,
|
|
parents: [commitId1, commitId2]
|
|
})
|
|
).id
|
|
|
|
expect(id2).to.be.a.string
|
|
})
|
|
|
|
it('Should update a commit', async () => {
|
|
const res = await updateCommitAndNotify(
|
|
{
|
|
id: commitId1,
|
|
message: 'FIRST COMMIT YOOOOOO',
|
|
streamId: stream.id
|
|
},
|
|
user.id
|
|
)
|
|
expect(res).to.be.ok
|
|
})
|
|
|
|
it('Should delete a commit', async () => {
|
|
const objectId = await generateObject()
|
|
const tempCommitId = (
|
|
await createCommitByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
message: 'temp commit',
|
|
sourceApplication: 'tests',
|
|
objectId,
|
|
authorId: user.id
|
|
})
|
|
).id
|
|
|
|
const res = await deleteCommitAndNotify(tempCommitId, stream.id, user.id)
|
|
expect(res).to.be.ok
|
|
})
|
|
|
|
it('Should get a commit by id', async () => {
|
|
const cm = await getCommit(commitId1, { streamId: stream.id })
|
|
expect(cm.message).to.equal('FIRST COMMIT YOOOOOO')
|
|
expect(cm.author).to.equal(user.id)
|
|
})
|
|
|
|
it('Should get the commits and their total count from a branch', async () => {
|
|
const streamId = await generateStream()
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
const t = { qux: i }
|
|
t.id = await createObject({ streamId, object: t })
|
|
await createCommitByBranchName({
|
|
streamId,
|
|
branchName: 'main',
|
|
message: `commit # ${i + 3}`,
|
|
sourceApplication: 'tests',
|
|
objectId: t.id,
|
|
authorId: user.id
|
|
})
|
|
}
|
|
|
|
const { commits, cursor } = await getCommitsByBranchName({
|
|
streamId,
|
|
branchName: 'main',
|
|
limit: 2
|
|
})
|
|
expect(commits).to.be.an('array')
|
|
expect(commits.length).to.equal(2)
|
|
|
|
const { commits: commits2 } = await getCommitsByBranchName({
|
|
streamId,
|
|
branchName: 'main',
|
|
limit: 5,
|
|
cursor
|
|
})
|
|
expect(commits2.length).to.equal(5)
|
|
|
|
const c = await getCommitsTotalCountByBranchName({
|
|
streamId,
|
|
branchName: 'main'
|
|
})
|
|
expect(c).to.equal(10)
|
|
})
|
|
|
|
it('Should get the commits and their total count from a stream', async () => {
|
|
const streamId = await generateStream()
|
|
await createBranch({ name: 'dim/dev', streamId, authorId: user.id })
|
|
|
|
for (let i = 0; i < 15; i++) {
|
|
const t = { thud: i }
|
|
t.id = await createObject({ streamId, object: t })
|
|
await createCommitByBranchName({
|
|
streamId,
|
|
branchName: 'dim/dev',
|
|
message: `pushed something # ${i + 3}`,
|
|
sourceApplication: 'tests',
|
|
objectId: t.id,
|
|
authorId: user.id
|
|
})
|
|
}
|
|
|
|
const { commits, cursor } = await getCommitsByStreamId({
|
|
streamId,
|
|
limit: 10
|
|
})
|
|
const { commits: commits2 } = await getCommitsByStreamId({
|
|
streamId,
|
|
limit: 20,
|
|
cursor
|
|
})
|
|
|
|
expect(commits.length).to.equal(10)
|
|
expect(commits2.length).to.equal(5)
|
|
|
|
const c = await getStreamCommitCount(streamId)
|
|
expect(c).to.equal(15)
|
|
})
|
|
|
|
it('Commits should have source, total count, branch name and parents fields', async () => {
|
|
const { commits: userCommits } = await getCommitsByUserId({
|
|
userId: user.id,
|
|
limit: 1000
|
|
})
|
|
const userCommit = userCommits[0]
|
|
|
|
const { commits: streamCommits } = await getCommitsByStreamId({
|
|
streamId: stream.id,
|
|
limit: 10
|
|
})
|
|
const serverCommit = streamCommits[0]
|
|
|
|
const { commits: branchCommits } = await getCommitsByBranchName({
|
|
streamId: stream.id,
|
|
branchName: 'main',
|
|
limit: 2
|
|
})
|
|
const branchCommit = branchCommits[0]
|
|
|
|
const idCommit = await getCommit(commitId3, { streamId: stream.id })
|
|
|
|
for (const commit of [userCommit, serverCommit, branchCommit, idCommit]) {
|
|
expect(commit).to.have.property('sourceApplication')
|
|
expect(commit.sourceApplication).to.be.a('string')
|
|
|
|
expect(commit).to.have.property('totalChildrenCount')
|
|
expect(commit.totalChildrenCount).to.be.a('number')
|
|
|
|
expect(commit).to.have.property('parents')
|
|
}
|
|
|
|
expect(idCommit.parents).to.be.a('array')
|
|
expect(idCommit.parents.length).to.equal(2)
|
|
})
|
|
|
|
it('Should have an array of parents', async () => {
|
|
const commits = [
|
|
await getCommit(commitId3, { streamId: stream.id }),
|
|
await getCommit(commitId2, { streamId: stream.id })
|
|
]
|
|
|
|
for (const commit of commits) {
|
|
expect(commit).to.have.property('parents')
|
|
expect(commit.parents).to.be.a('array')
|
|
expect(commit.parents.length).to.greaterThan(0)
|
|
}
|
|
})
|
|
})
|