169 lines
3.7 KiB
Go
169 lines
3.7 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-2021 Vikunja and contributors. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public Licensee as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public Licensee for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public Licensee
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package microsofttodo
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"code.vikunja.io/api/pkg/models"
|
|
"github.com/d4l3k/messagediff"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestConverting(t *testing.T) {
|
|
|
|
testtime := &dateTimeTimeZone{
|
|
DateTime: "2020-12-18T03:00:00.4770000",
|
|
TimeZone: "UTC",
|
|
}
|
|
|
|
testtimeTime, err := time.Parse(time.RFC3339Nano, "2020-12-18T03:00:00.4770000Z")
|
|
assert.NoError(t, err)
|
|
|
|
microsoftTodoData := []*list{
|
|
{
|
|
DisplayName: "List 1",
|
|
Tasks: []*task{
|
|
{
|
|
Title: "Task 1",
|
|
Status: "notStarted",
|
|
Body: &body{
|
|
Content: "This is a description",
|
|
ContentType: "text",
|
|
},
|
|
},
|
|
{
|
|
Title: "Task 2",
|
|
Status: "completed",
|
|
CompletedDateTime: testtime,
|
|
},
|
|
{
|
|
Title: "Task 3",
|
|
Status: "notStarted",
|
|
Importance: "low",
|
|
},
|
|
{
|
|
Title: "Task 4",
|
|
Status: "notStarted",
|
|
Importance: "high",
|
|
},
|
|
{
|
|
Title: "Task 5",
|
|
Status: "notStarted",
|
|
IsReminderOn: true,
|
|
ReminderDateTime: testtime,
|
|
},
|
|
{
|
|
Title: "Task 6",
|
|
Status: "notStarted",
|
|
DueDateTime: testtime,
|
|
},
|
|
{
|
|
Title: "Task 7",
|
|
Status: "notStarted",
|
|
DueDateTime: testtime,
|
|
Recurrence: &recurrence{
|
|
Pattern: &pattern{
|
|
// Every week
|
|
Type: "weekly",
|
|
Interval: 1,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
DisplayName: "List 2",
|
|
Tasks: []*task{
|
|
{
|
|
Title: "Task 1",
|
|
Status: "notStarted",
|
|
},
|
|
{
|
|
Title: "Task 2",
|
|
Status: "notStarted",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
expectedHierachie := []*models.NamespaceWithLists{
|
|
{
|
|
Namespace: models.Namespace{
|
|
Title: "Migrated from Microsoft Todo",
|
|
},
|
|
Lists: []*models.List{
|
|
{
|
|
Title: "List 1",
|
|
Tasks: []*models.Task{
|
|
{
|
|
Title: "Task 1",
|
|
Description: "This is a description",
|
|
},
|
|
{
|
|
Title: "Task 2",
|
|
Done: true,
|
|
DoneAt: testtimeTime,
|
|
},
|
|
{
|
|
Title: "Task 3",
|
|
Priority: 1,
|
|
},
|
|
{
|
|
Title: "Task 4",
|
|
Priority: 3,
|
|
},
|
|
{
|
|
Title: "Task 5",
|
|
Reminders: []time.Time{
|
|
testtimeTime,
|
|
},
|
|
},
|
|
{
|
|
Title: "Task 6",
|
|
DueDate: testtimeTime,
|
|
},
|
|
{
|
|
Title: "Task 7",
|
|
DueDate: testtimeTime,
|
|
RepeatAfter: 60 * 60 * 24 * 7, // The amount of seconds in a week
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Title: "List 2",
|
|
Tasks: []*models.Task{
|
|
{
|
|
Title: "Task 1",
|
|
},
|
|
{
|
|
Title: "Task 2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
hierachie, err := convertMicrosoftTodoData(microsoftTodoData)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, hierachie)
|
|
if diff, equal := messagediff.PrettyDiff(hierachie, expectedHierachie); !equal {
|
|
t.Errorf("converted microsoft todo data = %v, want %v, diff: %v", hierachie, expectedHierachie, diff)
|
|
}
|
|
}
|