Skip to content

Commit

Permalink
Merge pull request #712 from nextcloud/improve-test
Browse files Browse the repository at this point in the history
Adjust storeHelper test to use actual Tasks
  • Loading branch information
raimund-schluessler committed Nov 14, 2019
2 parents 511502a + d6daa45 commit ccd078e
Showing 1 changed file with 54 additions and 20 deletions.
74 changes: 54 additions & 20 deletions tests/javascript/unit/store/storeHelper.spec.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,61 @@
import { sort } from '../../../../src/store/storeHelper'
import Task from '../../../../src/models/task'

const tasks = [
{
id: 1,
due: '20191119T183901'
},
{
id: 2,
due: '20181119T183901'
},
{
id: 3,
due: null
},
{
id: 4,
due: '20151119T183901'
},
const vCalendars = [`
BEGIN:VCALENDAR\n
VERSION:2.0\n
PRODID:-//Nextcloud Tasks 0.11.3\n
BEGIN:VTODO\n
CREATED:20170101T180000\n
DTSTAMP:20180101T180000\n
LAST-MODIFIED:20180101T180000\n
UID:task01\n
SUMMARY:Test 1\n
DUE:20191119T183901\n
END:VTODO\n
END:VCALENDAR`,
`
BEGIN:VCALENDAR\n
VERSION:2.0\n
PRODID:-//Nextcloud Tasks 0.11.3\n
BEGIN:VTODO\n
CREATED:20170101T180000\n
DTSTAMP:20180101T180000\n
LAST-MODIFIED:20180101T180000\n
UID:task02\n
SUMMARY:Test 1\n
DUE:20181119T183901\n
END:VTODO\n
END:VCALENDAR`,
`
BEGIN:VCALENDAR\n
VERSION:2.0\n
PRODID:-//Nextcloud Tasks 0.11.3\n
BEGIN:VTODO\n
CREATED:20170101T180000\n
DTSTAMP:20180101T180000\n
LAST-MODIFIED:20180101T180000\n
UID:task03\n
SUMMARY:Test 1\n
END:VTODO\n
END:VCALENDAR`,
`
BEGIN:VCALENDAR\n
VERSION:2.0\n
PRODID:-//Nextcloud Tasks 0.11.3\n
BEGIN:VTODO\n
CREATED:20170101T180000\n
DTSTAMP:20180101T180000\n
LAST-MODIFIED:20180101T180000\n
UID:task04\n
SUMMARY:Test 1\n
DUE:20151119T183901\n
END:VTODO\n
END:VCALENDAR`,
]

const tasks = vCalendars.map((vCalendar) => {new Task(vCalendar) })

describe('storeHelper', () => {
'use strict'

Expand All @@ -35,7 +72,4 @@ describe('storeHelper', () => {
const receivedTasks = sort(clonedTasks, 'due', 1)
expect(receivedTasks).toEqual(expectedTasks)
})

it("Tests if correct tasks are found for the 'current' collection.", () => {
})
})

0 comments on commit ccd078e

Please sign in to comment.