path_test.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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_SanitizePath(t *testing.T) {
  28. Convey("Sanitize malicious user-defined path", t, func() {
  29. testCases := []struct {
  30. path string
  31. expect string
  32. }{
  33. {"../../../../../../../../../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", "data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8"},
  34. {"data/gogs/../../../../../../../../../data/sessions/a/9/a9f0ab6c3ef63dd8", "data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8"},
  35. {"..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", "data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8"},
  36. {"data\\gogs\\..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", "data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8"},
  37. {"data/sessions/a/9/a9f0ab6c3ef63dd8", "data/sessions/a/9/a9f0ab6c3ef63dd8"},
  38. {"data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", "data\\sessions\\a\\9\\a9f0ab6c3ef63dd8"},
  39. }
  40. for _, tc := range testCases {
  41. So(SanitizePath(tc.path), ShouldEqual, tc.expect)
  42. }
  43. })
  44. }