238 lines
6.2 KiB
JavaScript
238 lines
6.2 KiB
JavaScript
|
import {formatISO} from 'date-fns'
|
||
|
|
||
|
import {TaskFactory} from '../../factories/task'
|
||
|
import {ListFactory} from '../../factories/list'
|
||
|
import {TaskCommentFactory} from '../../factories/task_comment'
|
||
|
import {UserFactory} from '../../factories/user'
|
||
|
import {NamespaceFactory} from '../../factories/namespace'
|
||
|
import {UserListFactory} from '../../factories/users_list'
|
||
|
|
||
|
import '../../support/authenticateUser'
|
||
|
|
||
|
describe('Task', () => {
|
||
|
let namespaces
|
||
|
let lists
|
||
|
|
||
|
beforeEach(() => {
|
||
|
UserFactory.create(1)
|
||
|
namespaces = NamespaceFactory.create(1)
|
||
|
lists = ListFactory.create(1)
|
||
|
TaskFactory.truncate()
|
||
|
UserListFactory.truncate()
|
||
|
})
|
||
|
|
||
|
it('Should be created new', () => {
|
||
|
cy.visit('/lists/1/list')
|
||
|
cy.get('input.input[placeholder="Add a new task..."')
|
||
|
.type('New Task')
|
||
|
cy.get('button.button.is-success')
|
||
|
.contains('Add')
|
||
|
.click()
|
||
|
cy.get('.tasks .task .tasktext')
|
||
|
.first()
|
||
|
.should('contain', 'New Task')
|
||
|
})
|
||
|
|
||
|
it('Inserts new tasks at the top of the list', () => {
|
||
|
TaskFactory.create(1)
|
||
|
|
||
|
cy.visit('/lists/1/list')
|
||
|
cy.get('.list-is-empty-notice')
|
||
|
.should('not.exist')
|
||
|
cy.get('input.input[placeholder="Add a new task..."')
|
||
|
.type('New Task')
|
||
|
cy.get('button.button.is-success')
|
||
|
.contains('Add')
|
||
|
.click()
|
||
|
|
||
|
cy.wait(1000) // Wait for the request
|
||
|
cy.get('.tasks .task .tasktext')
|
||
|
.first()
|
||
|
.should('contain', 'New Task')
|
||
|
})
|
||
|
|
||
|
it('Marks a task as done', () => {
|
||
|
TaskFactory.create(1)
|
||
|
|
||
|
cy.visit('/lists/1/list')
|
||
|
cy.get('.tasks .task .fancycheckbox label.check')
|
||
|
.first()
|
||
|
.click()
|
||
|
cy.get('.global-notification')
|
||
|
.should('contain', 'Success')
|
||
|
})
|
||
|
|
||
|
it('Can add a task to favorites', () => {
|
||
|
TaskFactory.create(1)
|
||
|
|
||
|
cy.visit('/lists/1/list')
|
||
|
cy.get('.tasks .task .favorite')
|
||
|
.first()
|
||
|
.click()
|
||
|
cy.get('.menu.namespaces-lists')
|
||
|
.should('contain', 'Favorites')
|
||
|
})
|
||
|
|
||
|
describe('Task Detail View', () => {
|
||
|
beforeEach(() => {
|
||
|
TaskCommentFactory.truncate()
|
||
|
})
|
||
|
|
||
|
it('Shows all task details', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
index: 1,
|
||
|
description: 'Lorem ipsum dolor sit amet.'
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view h1.title.input')
|
||
|
.should('contain', tasks[0].title)
|
||
|
cy.get('.task-view h1.title.task-id')
|
||
|
.should('contain', '#1')
|
||
|
cy.get('.task-view h6.subtitle')
|
||
|
.should('contain', namespaces[0].title)
|
||
|
.should('contain', lists[0].title)
|
||
|
cy.get('.task-view .details.content.description')
|
||
|
.should('contain', tasks[0].description)
|
||
|
cy.get('.task-view .action-buttons p.created')
|
||
|
.should('contain', 'Created')
|
||
|
})
|
||
|
|
||
|
it('Shows a done label for done tasks', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
index: 1,
|
||
|
done: true,
|
||
|
done_at: formatISO(new Date())
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .heading .is-done')
|
||
|
.should('exist')
|
||
|
.should('contain', 'Done')
|
||
|
cy.get('.task-view .action-buttons p.created')
|
||
|
.should('contain', 'Done')
|
||
|
})
|
||
|
|
||
|
it('Can mark a task as done', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
done: false,
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .action-buttons .button')
|
||
|
.contains('Done!')
|
||
|
.click()
|
||
|
|
||
|
cy.get('.task-view .heading .is-done')
|
||
|
.should('exist')
|
||
|
.should('contain', 'Done')
|
||
|
cy.get('.global-notification')
|
||
|
.should('contain', 'Success')
|
||
|
cy.get('.task-view .action-buttons .button')
|
||
|
.should('contain', 'Mark as undone')
|
||
|
})
|
||
|
|
||
|
it('Shows a task identifier since the list has one', () => {
|
||
|
const lists = ListFactory.create(1, {
|
||
|
id: 1,
|
||
|
identifier: 'TEST',
|
||
|
})
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
list_id: lists[0].id,
|
||
|
index: 1,
|
||
|
})
|
||
|
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view h1.title.task-id')
|
||
|
.should('contain', `${lists[0].identifier}-${tasks[0].index}`)
|
||
|
})
|
||
|
|
||
|
it('Can edit the description', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
description: 'Lorem ipsum dolor sit amet.'
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .details.content.description .editor a')
|
||
|
.contains('Edit')
|
||
|
.click()
|
||
|
cy.get('.task-view .details.content.description .editor .vue-easymde .EasyMDEContainer .CodeMirror-scroll')
|
||
|
.type('{selectall}New Description')
|
||
|
cy.get('.task-view .details.content.description .editor a')
|
||
|
.contains('Preview')
|
||
|
.click()
|
||
|
|
||
|
cy.get('.task-view .details.content.description h3 span.is-small.has-text-success')
|
||
|
.contains('Saved!')
|
||
|
.should('exist')
|
||
|
})
|
||
|
|
||
|
it('Can add a new comment', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .comments .media.comment .editor .vue-easymde .EasyMDEContainer .CodeMirror-scroll')
|
||
|
.type('{selectall}New Comment')
|
||
|
cy.get('.task-view .comments .media.comment .button.is-primary')
|
||
|
.contains('Comment')
|
||
|
.click()
|
||
|
|
||
|
cy.get('.task-view .comments .media.comment .editor')
|
||
|
.should('contain', 'New Comment')
|
||
|
cy.get('.global-notification')
|
||
|
.should('contain', 'Success')
|
||
|
})
|
||
|
|
||
|
it('Can move a task to another list', () => {
|
||
|
const lists = ListFactory.create(2)
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
list_id: lists[0].id,
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .action-buttons .button')
|
||
|
.contains('Move task')
|
||
|
.click()
|
||
|
cy.get('.task-view .content.details .field .multiselect.control .multiselect__tags .multiselect__input')
|
||
|
.type(`${lists[1].title}{enter}`)
|
||
|
|
||
|
cy.get('.task-view h6.subtitle')
|
||
|
.should('contain', namespaces[0].title)
|
||
|
.should('contain', lists[1].title)
|
||
|
cy.get('.global-notification')
|
||
|
.should('contain', 'Success')
|
||
|
})
|
||
|
|
||
|
it('Can delete a task', () => {
|
||
|
const tasks = TaskFactory.create(1, {
|
||
|
id: 1,
|
||
|
list_id: 1,
|
||
|
})
|
||
|
cy.visit(`/tasks/${tasks[0].id}`)
|
||
|
|
||
|
cy.get('.task-view .action-buttons .button')
|
||
|
.contains('Delete task')
|
||
|
.click()
|
||
|
cy.get('.modal-mask .modal-container .modal-content .header')
|
||
|
.should('contain', 'Delete this task')
|
||
|
cy.get('.modal-mask .modal-container .modal-content .actions .button')
|
||
|
.contains('Do it!')
|
||
|
.click()
|
||
|
|
||
|
cy.get('.global-notification')
|
||
|
.should('contain', 'Success')
|
||
|
cy.url()
|
||
|
.should('contain', `/lists/${tasks[0].list_id}/`)
|
||
|
})
|
||
|
})
|
||
|
})
|