xunlei_test.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package xunlei
  2. import (
  3. "github.com/allanpk716/ChineseSubFinder/internal/logic/file_downloader"
  4. "github.com/allanpk716/ChineseSubFinder/internal/pkg/log_helper"
  5. "github.com/allanpk716/ChineseSubFinder/internal/pkg/settings"
  6. "github.com/allanpk716/ChineseSubFinder/internal/pkg/unit_test_helper"
  7. "path/filepath"
  8. "testing"
  9. )
  10. func TestGetList(t *testing.T) {
  11. //movie1 := "X:\\电影\\The Devil All the Time (2020)\\The Devil All the Time (2020) WEBDL-1080p.mkv"
  12. //movie1 := "X:\\电影\\龙猫 (1988)\\龙猫 (1988) 1080p DTS.mkv"
  13. //movie1 := "X:\\电影\\消失爱人 (2016)\\消失爱人 (2016) 720p AAC.rmvb"
  14. //movie1 := "X:\\电影\\Spiral From the Book of Saw (2021)\\Spiral From the Book of Saw (2021) WEBDL-1080p.mkv"
  15. //movie1 := "X:\\电影\\机动战士Z高达:星之继承者 (2005)\\机动战士Z高达:星之继承者 (2005) 1080p TrueHD.mkv"
  16. //movie1 := "X:\\连续剧\\The Bad Batch\\Season 1\\The Bad Batch - S01E01 - Aftermath WEBDL-1080p.mkv"
  17. //movie1 := "X:\\连续剧\\黄石 (2018)\\Season 4\\Yellowstone (2018) - S04E05 - Under a Blanket of Red WEBDL-2160p.mkv"
  18. //movie1 := "X:\\动漫\\碧蓝之海 (2018)\\Season 1\\碧蓝之海 - S01E01 - [UHA-WINGS][Grand Blue][01][BDRIP 1920x1080 x264 FLACx2].mkv"
  19. //movie1 := "X:\\连续剧\\瑞克和莫蒂 (2013)\\Season 5\\Rick and Morty - S05E01 - Mort Dinner Rick Andre WEBDL-1080p.mkv"
  20. //movie1 := "X:\\电影\\手机 (2003)\\手机 (2003) 720p Cooker.rmvb"
  21. rootDir := unit_test_helper.GetTestDataResourceRootPath([]string{"sub_spplier"}, 5, true)
  22. rootDir = filepath.Join(rootDir, "xunlei")
  23. gVideoFPath, err := unit_test_helper.GenerateXunleiVideoFile(rootDir)
  24. if err != nil {
  25. t.Fatal(err)
  26. }
  27. xunlie := NewSupplier(file_downloader.NewFileDownloader(settings.NewSettings(), log_helper.GetLogger4Tester()))
  28. outList, err := xunlie.getSubListFromFile(gVideoFPath)
  29. if err != nil {
  30. t.Error(err)
  31. }
  32. println(outList)
  33. for i, sublist := range outList {
  34. println(i, sublist.Name, sublist.Ext, sublist.Language.String(), sublist.Score, len(sublist.Data))
  35. }
  36. alive, _ := xunlie.CheckAlive()
  37. if alive == false {
  38. t.Fatal("CheckAlive == false")
  39. }
  40. }