mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
bd35e6917a
* Chore: Exclude integration tests from running on test-backend step * Remove -v from go test command * Add check to skip integration tests before each integration test * Try to restart pipeline * Retrying to make pipeline run
121 lines
3.6 KiB
Go
121 lines
3.6 KiB
Go
package queryhistory
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestIntegrationMigrateQueriesToQueryHistory(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping integration test")
|
|
}
|
|
testScenario(t, "When users tries to migrate 1 query in query history it should succeed",
|
|
func(t *testing.T, sc scenarioContext) {
|
|
command := MigrateQueriesToQueryHistoryCommand{
|
|
Queries: []QueryToMigrate{
|
|
{
|
|
DatasourceUID: "NCzh67i",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test",
|
|
}),
|
|
Comment: "",
|
|
Starred: false,
|
|
CreatedAt: time.Now().Unix(),
|
|
},
|
|
},
|
|
}
|
|
sc.reqContext.Req.Body = mockRequestBody(command)
|
|
resp := sc.service.migrateHandler(sc.reqContext)
|
|
var response QueryHistoryMigrationResponse
|
|
err := json.Unmarshal(resp.Body(), &response)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 200, resp.Status())
|
|
require.Equal(t, "Query history successfully migrated", response.Message)
|
|
require.Equal(t, 1, response.TotalCount)
|
|
require.Equal(t, 0, response.StarredCount)
|
|
})
|
|
|
|
testScenario(t, "When users tries to migrate multiple queries in query history it should succeed",
|
|
func(t *testing.T, sc scenarioContext) {
|
|
command := MigrateQueriesToQueryHistoryCommand{
|
|
Queries: []QueryToMigrate{
|
|
{
|
|
DatasourceUID: "NCzh67i",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test1",
|
|
}),
|
|
Comment: "",
|
|
Starred: false,
|
|
CreatedAt: time.Now().Unix(),
|
|
},
|
|
{
|
|
DatasourceUID: "NCzh67i",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test2",
|
|
}),
|
|
Comment: "",
|
|
Starred: false,
|
|
CreatedAt: time.Now().Unix() - int64(100),
|
|
},
|
|
{
|
|
DatasourceUID: "ABch68f",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test3",
|
|
}),
|
|
Comment: "",
|
|
Starred: false,
|
|
CreatedAt: time.Now().Unix() - int64(1000),
|
|
},
|
|
},
|
|
}
|
|
sc.reqContext.Req.Body = mockRequestBody(command)
|
|
resp := sc.service.migrateHandler(sc.reqContext)
|
|
var response QueryHistoryMigrationResponse
|
|
err := json.Unmarshal(resp.Body(), &response)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 200, resp.Status())
|
|
require.Equal(t, "Query history successfully migrated", response.Message)
|
|
require.Equal(t, 3, response.TotalCount)
|
|
require.Equal(t, 0, response.StarredCount)
|
|
})
|
|
|
|
testScenario(t, "When users tries to migrate starred and not starred query in query history it should succeed",
|
|
func(t *testing.T, sc scenarioContext) {
|
|
command := MigrateQueriesToQueryHistoryCommand{
|
|
Queries: []QueryToMigrate{
|
|
{
|
|
DatasourceUID: "NCzh67i",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test1",
|
|
}),
|
|
Comment: "",
|
|
Starred: true,
|
|
CreatedAt: time.Now().Unix(),
|
|
},
|
|
{
|
|
DatasourceUID: "NCzh67i",
|
|
Queries: simplejson.NewFromAny(map[string]interface{}{
|
|
"expr": "test2",
|
|
}),
|
|
Comment: "",
|
|
Starred: false,
|
|
CreatedAt: time.Now().Unix() - int64(100),
|
|
},
|
|
},
|
|
}
|
|
sc.reqContext.Req.Body = mockRequestBody(command)
|
|
resp := sc.service.migrateHandler(sc.reqContext)
|
|
var response QueryHistoryMigrationResponse
|
|
err := json.Unmarshal(resp.Body(), &response)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 200, resp.Status())
|
|
require.Equal(t, "Query history successfully migrated", response.Message)
|
|
require.Equal(t, 2, response.TotalCount)
|
|
require.Equal(t, 1, response.StarredCount)
|
|
})
|
|
}
|