mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Consistent license message for all the go files * Fixing the last set of unconsistencies with the license headers * Addressing PR review comments * Fixing busy.go and busy_test.go license header
102 lines
2.5 KiB
Go
102 lines
2.5 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
)
|
|
|
|
func TestGetMigrationState(t *testing.T) {
|
|
th := Setup()
|
|
defer th.TearDown()
|
|
|
|
migrationKey := model.NewId()
|
|
|
|
th.DeleteAllJobsByTypeAndMigrationKey(model.JOB_TYPE_MIGRATIONS, migrationKey)
|
|
|
|
// Test with no job yet.
|
|
state, job, err := GetMigrationState(migrationKey, th.App.Srv.Store)
|
|
assert.Nil(t, err)
|
|
assert.Nil(t, job)
|
|
assert.Equal(t, "unscheduled", state)
|
|
|
|
// Test with the system table showing the migration as done.
|
|
system := model.System{
|
|
Name: migrationKey,
|
|
Value: "true",
|
|
}
|
|
err = th.App.Srv.Store.System().Save(&system)
|
|
assert.Nil(t, err)
|
|
|
|
state, job, err = GetMigrationState(migrationKey, th.App.Srv.Store)
|
|
assert.Nil(t, err)
|
|
assert.Nil(t, job)
|
|
assert.Equal(t, "completed", state)
|
|
|
|
_, err = th.App.Srv.Store.System().PermanentDeleteByName(migrationKey)
|
|
assert.Nil(t, err)
|
|
|
|
// Test with a job scheduled in "pending" state.
|
|
j1 := &model.Job{
|
|
Id: model.NewId(),
|
|
CreateAt: model.GetMillis(),
|
|
Data: map[string]string{
|
|
JOB_DATA_KEY_MIGRATION: migrationKey,
|
|
},
|
|
Status: model.JOB_STATUS_PENDING,
|
|
Type: model.JOB_TYPE_MIGRATIONS,
|
|
}
|
|
|
|
j1, err = th.App.Srv.Store.Job().Save(j1)
|
|
require.Nil(t, err)
|
|
|
|
state, job, err = GetMigrationState(migrationKey, th.App.Srv.Store)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, j1.Id, job.Id)
|
|
assert.Equal(t, "in_progress", state)
|
|
|
|
// Test with a job scheduled in "in progress" state.
|
|
j2 := &model.Job{
|
|
Id: model.NewId(),
|
|
CreateAt: j1.CreateAt + 1,
|
|
Data: map[string]string{
|
|
JOB_DATA_KEY_MIGRATION: migrationKey,
|
|
},
|
|
Status: model.JOB_STATUS_IN_PROGRESS,
|
|
Type: model.JOB_TYPE_MIGRATIONS,
|
|
}
|
|
|
|
j2, err = th.App.Srv.Store.Job().Save(j2)
|
|
require.Nil(t, err)
|
|
|
|
state, job, err = GetMigrationState(migrationKey, th.App.Srv.Store)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, j2.Id, job.Id)
|
|
assert.Equal(t, "in_progress", state)
|
|
|
|
// Test with a job scheduled in "error" state.
|
|
j3 := &model.Job{
|
|
Id: model.NewId(),
|
|
CreateAt: j2.CreateAt + 1,
|
|
Data: map[string]string{
|
|
JOB_DATA_KEY_MIGRATION: migrationKey,
|
|
},
|
|
Status: model.JOB_STATUS_ERROR,
|
|
Type: model.JOB_TYPE_MIGRATIONS,
|
|
}
|
|
|
|
j3, err = th.App.Srv.Store.Job().Save(j3)
|
|
require.Nil(t, err)
|
|
|
|
state, job, err = GetMigrationState(migrationKey, th.App.Srv.Store)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, j3.Id, job.Id)
|
|
assert.Equal(t, "unscheduled", state)
|
|
}
|