Dashboards: Prevent saving to a non-existent folder (#103503)

This commit is contained in:
Stephanie Hingtgen
2025-04-07 09:02:20 +03:00
committed by GitHub
parent ed9b649ed6
commit 8cd6f837a5
4 changed files with 14 additions and 3 deletions
@@ -189,6 +189,15 @@ func runDashboardValidationTests(t *testing.T, ctx TestContext) {
})
})
t.Run("Dashboard folder validations", func(t *testing.T) {
// Test non-existent folder UID
t.Run("reject dashboard with non-existent folder UID", func(t *testing.T) {
nonExistentFolderUID := "non-existent-folder-uid"
_, err := createDashboard(t, adminClient, "Dashboard in Non-existent Folder", &nonExistentFolderUID, nil)
require.Error(t, err)
})
})
t.Run("Dashboard schema validations", func(t *testing.T) {
// Test invalid dashboard schema
t.Run("reject dashboard with invalid schema", func(t *testing.T) {