You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

user_heatmap_test.go 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Copyright 2018 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.package models
  4. package models
  5. import (
  6. "encoding/json"
  7. "fmt"
  8. "testing"
  9. "github.com/stretchr/testify/assert"
  10. )
  11. func TestGetUserHeatmapDataByUser(t *testing.T) {
  12. testCases := []struct {
  13. userID int64
  14. doerID int64
  15. CountResult int
  16. JSONResult string
  17. }{
  18. {2, 2, 1, `[{"timestamp":1603152000,"contributions":1}]`}, // self looks at action in private repo
  19. {2, 1, 1, `[{"timestamp":1603152000,"contributions":1}]`}, // admin looks at action in private repo
  20. {2, 3, 0, `[]`}, // other user looks at action in private repo
  21. {2, 0, 0, `[]`}, // nobody looks at action in private repo
  22. {16, 15, 1, `[{"timestamp":1603238400,"contributions":1}]`}, // collaborator looks at action in private repo
  23. {3, 3, 0, `[]`}, // no action action not performed by target user
  24. }
  25. // Prepare
  26. assert.NoError(t, PrepareTestDatabase())
  27. for i, tc := range testCases {
  28. user := AssertExistsAndLoadBean(t, &User{ID: tc.userID}).(*User)
  29. doer := &User{ID: tc.doerID}
  30. _, err := loadBeanIfExists(doer)
  31. assert.NoError(t, err)
  32. if tc.doerID == 0 {
  33. doer = nil
  34. }
  35. // get the action for comparison
  36. actions, err := GetFeeds(GetFeedsOptions{
  37. RequestedUser: user,
  38. Actor: doer,
  39. IncludePrivate: true,
  40. OnlyPerformedBy: true,
  41. IncludeDeleted: true,
  42. })
  43. assert.NoError(t, err)
  44. // Get the heatmap and compare
  45. heatmap, err := GetUserHeatmapDataByUser(user, doer)
  46. assert.NoError(t, err)
  47. assert.Equal(t, len(actions), len(heatmap), "invalid action count: did the test data became too old?")
  48. assert.Equal(t, tc.CountResult, len(heatmap), fmt.Sprintf("testcase %d", i))
  49. //Test JSON rendering
  50. jsonData, err := json.Marshal(heatmap)
  51. assert.NoError(t, err)
  52. assert.Equal(t, tc.JSONResult, string(jsonData))
  53. }
  54. }