path_test.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Copyright 2018 The Gogs 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.
  4. package tool
  5. import (
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func Test_IsSameSiteURLPath(t *testing.T) {
  10. Convey("Check if a path belongs to the same site", t, func() {
  11. testCases := []struct {
  12. url string
  13. expect bool
  14. }{
  15. {"//github.com", false},
  16. {"http://github.com", false},
  17. {"https://github.com", false},
  18. {"/\\github.com", false},
  19. {"/admin", true},
  20. {"/user/repo", true},
  21. }
  22. for _, tc := range testCases {
  23. So(IsSameSiteURLPath(tc.url), ShouldEqual, tc.expect)
  24. }
  25. })
  26. }
  27. func Test_IsMaliciousPath(t *testing.T) {
  28. Convey("Detects malicious path", t, func() {
  29. testCases := []struct {
  30. path string
  31. expect bool
  32. }{
  33. {"../../../../../../../../../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", true},
  34. {"..\\/..\\/../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", true},
  35. {"data/gogs/../../../../../../../../../data/sessions/a/9/a9f0ab6c3ef63dd8", true},
  36. {"..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", true},
  37. {"data\\gogs\\..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", true},
  38. {"data/sessions/a/9/a9f0ab6c3ef63dd8", false},
  39. {"data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", false},
  40. }
  41. for _, tc := range testCases {
  42. So(IsMaliciousPath(tc.path), ShouldEqual, tc.expect)
  43. }
  44. })
  45. }