Skip to main content
Glama
grafana

Grafana

Official
by grafana
oncall_cloud_test.go11 kB
//go:build cloud // +build cloud // This file contains cloud integration tests that run against a dedicated test instance // at mcptests.grafana-dev.net. This instance is configured with a minimal setup on the OnCall side: // - One team // - Two schedules (only one has a team assigned) // - One shift in the schedule with a team assigned // - One user // These tests expect this configuration to exist and will skip if the required // environment variables (GRAFANA_URL, GRAFANA_SERVICE_ACCOUNT_TOKEN or GRAFANA_API_KEY) are not set. // The GRAFANA_API_KEY variable is deprecated. package tools import ( "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestCloudOnCallSchedules(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") // Test listing all schedules t.Run("list all schedules", func(t *testing.T) { result, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{}) require.NoError(t, err, "Should not error when listing schedules") assert.NotNil(t, result, "Result should not be nil") }) // Test pagination t.Run("list schedules with pagination", func(t *testing.T) { // Get first page page1, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{Page: 1}) require.NoError(t, err, "Should not error when listing schedules page 1") assert.NotNil(t, page1, "Page 1 should not be nil") // Get second page page2, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{Page: 2}) require.NoError(t, err, "Should not error when listing schedules page 2") assert.NotNil(t, page2, "Page 2 should not be nil") }) // Get a team ID from an existing schedule to test filtering schedules, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{}) require.NoError(t, err, "Should not error when listing schedules") if len(schedules) > 0 && schedules[0].TeamID != "" { teamID := schedules[0].TeamID // Test filtering by team ID t.Run("list schedules by team ID", func(t *testing.T) { result, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{ TeamID: teamID, }) require.NoError(t, err, "Should not error when listing schedules by team") assert.NotEmpty(t, result, "Should return at least one schedule") for _, schedule := range result { assert.Equal(t, teamID, schedule.TeamID, "All schedules should belong to the specified team") } }) } // Test getting a specific schedule if len(schedules) > 0 { scheduleID := schedules[0].ID t.Run("get specific schedule", func(t *testing.T) { result, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{ ScheduleID: scheduleID, }) require.NoError(t, err, "Should not error when getting specific schedule") assert.Len(t, result, 1, "Should return exactly one schedule") assert.Equal(t, scheduleID, result[0].ID, "Should return the correct schedule") // Verify all summary fields are present schedule := result[0] assert.NotEmpty(t, schedule.Name, "Schedule should have a name") assert.NotEmpty(t, schedule.Timezone, "Schedule should have a timezone") assert.NotNil(t, schedule.Shifts, "Schedule should have a shifts field") }) } } func TestCloudOnCallShift(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") // First get a schedule to find a valid shift schedules, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{}) require.NoError(t, err, "Should not error when listing schedules") require.NotEmpty(t, schedules, "Should have at least one schedule to test with") require.NotEmpty(t, schedules[0].Shifts, "Schedule should have at least one shift") shifts := schedules[0].Shifts shiftID := shifts[0] // Test getting shift details with valid ID t.Run("get shift details", func(t *testing.T) { result, err := getOnCallShift(ctx, GetOnCallShiftParams{ ShiftID: shiftID, }) require.NoError(t, err, "Should not error when getting shift details") assert.NotNil(t, result, "Result should not be nil") assert.Equal(t, shiftID, result.ID, "Should return the correct shift") }) t.Run("get shift with invalid ID", func(t *testing.T) { _, err := getOnCallShift(ctx, GetOnCallShiftParams{ ShiftID: "invalid-shift-id", }) assert.Error(t, err, "Should error when getting shift with invalid ID") }) } func TestCloudGetCurrentOnCallUsers(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") // First get a schedule to use for testing schedules, err := listOnCallSchedules(ctx, ListOnCallSchedulesParams{}) require.NoError(t, err, "Should not error when listing schedules") require.NotEmpty(t, schedules, "Should have at least one schedule to test with") scheduleID := schedules[0].ID // Test getting current on-call users t.Run("get current on-call users", func(t *testing.T) { result, err := getCurrentOnCallUsers(ctx, GetCurrentOnCallUsersParams{ ScheduleID: scheduleID, }) require.NoError(t, err, "Should not error when getting current on-call users") assert.NotNil(t, result, "Result should not be nil") assert.Equal(t, scheduleID, result.ScheduleID, "Should return the correct schedule") assert.NotEmpty(t, result.ScheduleName, "Schedule should have a name") assert.NotNil(t, result.Users, "Users field should be present") // Assert that Users is of type []*aapi.User if len(result.Users) > 0 { user := result.Users[0] assert.NotEmpty(t, user.ID, "User should have an ID") assert.NotEmpty(t, user.Username, "User should have a username") } }) t.Run("get current on-call users with invalid schedule ID", func(t *testing.T) { _, err := getCurrentOnCallUsers(ctx, GetCurrentOnCallUsersParams{ ScheduleID: "invalid-schedule-id", }) assert.Error(t, err, "Should error when getting current on-call users with invalid schedule ID") }) } func TestCloudOnCallTeams(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") t.Run("list teams", func(t *testing.T) { result, err := listOnCallTeams(ctx, ListOnCallTeamsParams{}) require.NoError(t, err, "Should not error when listing teams") assert.NotNil(t, result, "Result should not be nil") if len(result) > 0 { team := result[0] assert.NotEmpty(t, team.ID, "Team should have an ID") assert.NotEmpty(t, team.Name, "Team should have a name") } }) // Test pagination t.Run("list teams with pagination", func(t *testing.T) { // Get first page page1, err := listOnCallTeams(ctx, ListOnCallTeamsParams{Page: 1}) require.NoError(t, err, "Should not error when listing teams page 1") assert.NotNil(t, page1, "Page 1 should not be nil") // Get second page page2, err := listOnCallTeams(ctx, ListOnCallTeamsParams{Page: 2}) require.NoError(t, err, "Should not error when listing teams page 2") assert.NotNil(t, page2, "Page 2 should not be nil") }) } func TestCloudOnCallUsers(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") t.Run("list all users", func(t *testing.T) { result, err := listOnCallUsers(ctx, ListOnCallUsersParams{}) require.NoError(t, err, "Should not error when listing users") assert.NotNil(t, result, "Result should not be nil") if len(result) > 0 { user := result[0] assert.NotEmpty(t, user.ID, "User should have an ID") assert.NotEmpty(t, user.Username, "User should have a username") } }) // Test pagination t.Run("list users with pagination", func(t *testing.T) { // Get first page page1, err := listOnCallUsers(ctx, ListOnCallUsersParams{Page: 1}) require.NoError(t, err, "Should not error when listing users page 1") assert.NotNil(t, page1, "Page 1 should not be nil") // Get second page page2, err := listOnCallUsers(ctx, ListOnCallUsersParams{Page: 2}) require.NoError(t, err, "Should not error when listing users page 2") assert.NotNil(t, page2, "Page 2 should not be nil") }) // Get a user ID and username from the list to test filtering users, err := listOnCallUsers(ctx, ListOnCallUsersParams{}) require.NoError(t, err, "Should not error when listing users") require.NotEmpty(t, users, "Should have at least one user to test with") userID := users[0].ID username := users[0].Username t.Run("get user by ID", func(t *testing.T) { result, err := listOnCallUsers(ctx, ListOnCallUsersParams{ UserID: userID, }) require.NoError(t, err, "Should not error when getting user by ID") assert.NotNil(t, result, "Result should not be nil") assert.Len(t, result, 1, "Should return exactly one user") assert.Equal(t, userID, result[0].ID, "Should return the correct user") assert.NotEmpty(t, result[0].Username, "User should have a username") }) t.Run("get user by username", func(t *testing.T) { result, err := listOnCallUsers(ctx, ListOnCallUsersParams{ Username: username, }) require.NoError(t, err, "Should not error when getting user by username") assert.NotNil(t, result, "Result should not be nil") assert.Len(t, result, 1, "Should return exactly one user") assert.Equal(t, username, result[0].Username, "Should return the correct user") assert.NotEmpty(t, result[0].ID, "User should have an ID") }) t.Run("get user with invalid ID", func(t *testing.T) { _, err := listOnCallUsers(ctx, ListOnCallUsersParams{ UserID: "invalid-user-id", }) assert.Error(t, err, "Should error when getting user with invalid ID") }) t.Run("get user with invalid username", func(t *testing.T) { result, err := listOnCallUsers(ctx, ListOnCallUsersParams{ Username: "invalid-username", }) require.NoError(t, err, "Should not error when getting user with invalid username") assert.Empty(t, result, "Should return empty result set for invalid username") }) } func TestCloudGetAlertGroup(t *testing.T) { ctx := createCloudTestContext(t, "OnCall", "GRAFANA_URL", "GRAFANA_API_KEY") // First, get a list of alert groups to find a valid ID to test with alertGroups, err := listAlertGroups(ctx, ListAlertGroupsParams{}) require.NoError(t, err, "Should not error when listing alert groups") require.NotEmpty(t, alertGroups, "Should have at least one alert group to test with") alertGroupID := alertGroups[0].ID t.Run("get alert group by ID", func(t *testing.T) { result, err := getAlertGroup(ctx, GetAlertGroupParams{ AlertGroupID: alertGroupID, }) require.NoError(t, err, "Should not error when getting alert group by ID") assert.NotNil(t, result, "Result should not be nil") assert.Equal(t, alertGroupID, result.ID, "Should return the correct alert group") assert.NotEmpty(t, result.Title, "Alert group should have a title") assert.NotEmpty(t, result.State, "Alert group should have a state") }) t.Run("get alert group with invalid ID", func(t *testing.T) { _, err := getAlertGroup(ctx, GetAlertGroupParams{ AlertGroupID: "invalid-alert-group-id", }) assert.Error(t, err, "Should error when getting alert group with invalid ID") }) }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/grafana/mcp-grafana'

If you have feedback or need assistance with the MCP directory API, please join our Discord server